Update README and announcement for 3.0.2 release.

Fill in the release date (2014-10-06) and update the changes list.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@77955 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-10-05 14:18:27 +00:00
parent 8a35babbbf
commit 2d853161ef
4 changed files with 81 additions and 72 deletions

View File

@@ -574,7 +574,7 @@ Major new features in this release
3.0.2: (released 2014-xx-xx) 3.0.2: (released 2014-10-06)
---------------------------- ----------------------------
All: All:

View File

@@ -14,7 +14,7 @@
@author Julian Smart, Vadim Zeitlin, Robin Dunn, Stefan Csomor, @author Julian Smart, Vadim Zeitlin, Robin Dunn, Stefan Csomor,
Bryan Petty, Francesco Montorsi, Robert Roebling et al Bryan Petty, Francesco Montorsi, Robert Roebling et al
@date June 15, 2014 @date October 6, 2014
@n @n

View File

@@ -1,15 +1,15 @@
June 15, 2014 -- The wxWidgets team is pleased to announce a October 6, 2014 -- The wxWidgets team is pleased to announce a
major new release of our open source framework for the development major new release of our open source framework for the development
of native cross-platform applications in C++. of native cross-platform applications in C++.
wxWidgets 3.0.1 is a stable bug fix release in 3.0 branch and is wxWidgets 3.0.2 is a stable bug fix release in 3.0 branch and is
available at available at
https://sourceforge.net/downloads/wxwindows/3.0.1/ https://sourceforge.net/downloads/wxwindows/3.0.2/
and at our FTP mirror at and at our FTP mirror at
ftp://ftp.wxwidgets.org/pub/3.0.1/ ftp://ftp.wxwidgets.org/pub/3.0.2/
Please choose the archive format suitable for your platform, i.e. 7z Please choose the archive format suitable for your platform, i.e. 7z
or ZIP for Windows platforms and tar.bz2 for the Unix systems or ZIP for Windows platforms and tar.bz2 for the Unix systems
@@ -22,61 +22,64 @@ as only sources, not binaries, are installed.
We also provide the pre-built versions of wxMSW libraries for the We also provide the pre-built versions of wxMSW libraries for the
selected compilers at selected compilers at
https://sourceforge.net/downloads/wxwindows/3.0.1/binaries/ https://sourceforge.net/downloads/wxwindows/3.0.2/binaries/
Please see the README file there for the descriptions of the Please see the README file there for the descriptions of the
individual files. individual files.
This release is perfectly compatible with 3.0.0 at both the source This is a bug fix release with no significant new features compared to
(API) and binary (ABI) level and upgrading to it is strongly the previous 3.0.x releases and compatible with them at both the API
recommended for all users of wxWidgets 3.0.0 as it contains more than and the ABI level (i.e. all applications linked against earlier 3.0.x
a hundred important bug fixes since it. DLLs or shared libraries will continue to work when using 3.0.2
libraries).
The most important user-visible changes are: Some of the changes:
* In all ports:
- wxHTML displays tables much faster now.
- Double clicking wxGrid columns doesn't make them too small any more.
- Fix bugs when dragging columns in wxGrid with hidden columns.
- Loading ICO files with PNG data is now supported.
* In wxGTK: * In wxGTK:
- Mouse wheel scrolling in wxListCtrl works again. - Fix wxSearchCtrl layout.
- wxStaticBoxSizer contents is not truncated any more. - Fix mouse handling in wxListCtrl and wxTreeCtrl inside wxNotebook.
- AUI panels may now be re-docked after floating them. - Avoid some GTK+ warnings.
* In wxMSW: * In wxMSW:
- wxBitmapComboBox works again and doesn't just remain blank. - Cygwin 1.7 and MinGW 4.8 build fixes.
- Checkboxes in wxDataViewCtrl work again too now. - Fix parallel build in MSVS 2010+ solutions.
- wxCheckListBox appears correctly when using large fonts. - Add x64 configurations to MSVS 2005/2008 projects too.
- Fix using Esc as accelerator in the menus.
- Fix wxRadioBox, wxSlider, wxToggleButton with non-default colours.
- RTL support fixes for wxDC and wxGrid.
* In wxOSX: * In wxOSX:
- Cancelling choice selection in wxDataViewCtrl doesn't crash any more. - Avoid compilation warnings when using 10.10 SDK.
- ShowModal() doesn't use quite as much CPU now. - Enhancements to retina support.
There are also many other bug fixes, including many improvements to Despite of the focus on bug fixes, a few new features have
alpha transparency handling in different places (mostly in wxMSW, but nevertheless made it into this release as well:
also in wxGTK) and resource/memory leak fixes in all ports.
Finally, this release includes Visual Studio 2012 and 2013 projects for - Add support for "%V", "%G" and "%g" to wxDateTime::Format().
building wxWidgets, in addition to the project files for the previous - Added an XRC handler for wxSimplebook.
versions already provided in 3.0.0 release. - Allow to specify the "variant" window property in XRC.
- Add wxGenericListCtrl::EndEditLabel().
Please see the changes.txt file in the "docs" subdirectory of Other changes in this release are described in the file
wxWidgets distribution or also available online at docs/changes.txt available online at
https://sourceforge.net/projects/wxwindows/files/3.0.1/changes.txt
for more details and please read the "INCOMPATIBLE CHANGES" section https://sourceforge.net/projects/wxwindows/files/3.0.2/changes.txt
in its beginning for a brief description of changes if you are
upgrading from wxWidgets 2.8. For more details, please see This file also contains information about the changes in 3.0 compared
http://docs.wxwidgets.org/3.0.0/overview_changes_since28.html to earlier versions of wxWidgets, please read it, and especially its
"INCOMPATIBLE CHANGES" section, if you are upgrading from wxWidgets
2.8 or earlier. And for even more details, please see
http://docs.wxwidgets.org/3.0.0/overview_changes_since28.html
We recommend that you upgrade to wxWidgets 3.0.1 if you already use
wxWidgets 3.0.0, the upgrade is completely transparent and doesn't We recommend that you upgrade to wxWidgets 3.0.2 if you already use an
require any changes in the existing code. If you are still using earlier wxWidgets 3.0.x release, the upgrade is completely transparent
wxWidgets 2.8 or earlier, please consider updating to wxWidgets 3.0 and doesn't require any changes in the existing code. If you are still
to profit from all the new functionality. using wxWidgets 2.8 or earlier, please consider updating to wxWidgets
3.0 to profit from all the new functionality.
We hope that you will enjoy using the new release! We hope that you will enjoy using the new release!

View File

@@ -39,43 +39,49 @@ Changes in this release
----------------------- -----------------------
This is a bug fix release with no significant new features compared to This is a bug fix release with no significant new features compared to
3.0.0 and compatible with it at both the API and the ABI level (i.e. the previous 3.0.x releases and compatible with them at both the API
all applications linked against 3.0.0 DLLs or shared libraries will and the ABI level (i.e. all applications linked against earlier 3.0.x
continue to work when using 3.0.1 libraries). DLLs or shared libraries will continue to work when using 3.0.2
libraries).
There were more than a hundred bug fixes, please see docs/changes.txt Some of the changes:
for more details. The most important user-visible changes are:
* In all ports:
- wxHTML displays tables much faster now.
- Double clicking wxGrid columns doesn't make them too small any more.
- Fix bugs when dragging columns in wxGrid with hidden columns.
- Loading ICO files with PNG data is now supported.
* In wxGTK: * In wxGTK:
- Mouse wheel scrolling in wxListCtrl works again. - Fix wxSearchCtrl layout.
- wxStaticBoxSizer contents is not truncated any more. - Fix mouse handling in wxListCtrl and wxTreeCtrl inside wxNotebook.
- AUI panels may now be re-docked after floating them. - Avoid some GTK+ warnings.
* In wxMSW: * In wxMSW:
- wxBitmapComboBox works again and doesn't just remain blank. - Cygwin 1.7 and MinGW 4.8 build fixes.
- Checkboxes in wxDataViewCtrl work again too now. - Fix parallel build in MSVS 2010+ solutions.
- wxCheckListBox appears correctly when using large fonts. - Add x64 configurations to MSVS 2005/2008 projects too.
- Fix using Esc as accelerator in the menus.
- Fix wxRadioBox, wxSlider, wxToggleButton with non-default colours.
- RTL support fixes for wxDC and wxGrid.
* In wxOSX: * In wxOSX:
- Cancelling choice selection in wxDataViewCtrl doesn't crash any more. - Avoid compilation warnings when using 10.10 SDK.
- ShowModal() doesn't use quite as much CPU now. - Enhancements to retina support.
There are also many other bug fixes, including many improvements to Despite of the focus on bug fixes, a few new features have
alpha transparency handling in different places (mostly in wxMSW, but nevertheless made it into this release as well:
also in wxGTK) and resource/memory leak fixes in all ports.
Finally, this release includes Visual Studio 2012 and 2013 projects for - Add support for "%V", "%G" and "%g" to wxDateTime::Format().
building wxWidgets, in addition to the project files for the previous - Added an XRC handler for wxSimplebook.
versions already provided in 3.0.0 release. - Allow to specify the "variant" window property in XRC.
- Add wxGenericListCtrl::EndEditLabel().
Please make sure to read the section "Incompatible changes since 2.8" Other changes in this release are described in the file
in docs/changes.txt if you are upgrading from wxWidgets 2.8 or earlier. docs/changes.txt available online at
https://sourceforge.net/projects/wxwindows/files/3.0.2/changes.txt
This file also contains information about the changes in 3.0 compared
to earlier versions of wxWidgets, please read it, and especially its
"INCOMPATIBLE CHANGES" section, if you are upgrading from wxWidgets
2.8 or earlier. And for even more details, please see
http://docs.wxwidgets.org/3.0.0/overview_changes_since28.html
Platforms supported Platforms supported
@@ -209,4 +215,4 @@ If you are looking for support, you can get it from
Have fun! Have fun!
The wxWidgets Team, July 2014 The wxWidgets Team, October 2014