Update release documents for 3.2.2
Fix the release date and summarize the changes since 3.2.1.
This commit is contained in:
parent
5b89b4ae7a
commit
01bda9242f
@ -232,7 +232,7 @@ Changes in behaviour which may result in build errors
|
||||
minimum required version is now 2005.
|
||||
|
||||
|
||||
3.2.2: (released 202?-??-??)
|
||||
3.2.2: (released 2023-02-08)
|
||||
----------------------------
|
||||
|
||||
All:
|
||||
@ -291,7 +291,7 @@ wxMSW:
|
||||
- Fix scaling of standard MSW icons in high DPI (#23031).
|
||||
- Fix menu items with custom font in high DPI (#22957).
|
||||
- Remove "Printing" from title when printing to PDF (Blake-Madden, #22836).
|
||||
- Fix sometimes missing overvwrite prompt in "Save" file dialog (#22898).
|
||||
- Fix sometimes missing overwrite prompt in "Save" file dialog (#22898).
|
||||
- Set wxUSE_TASKBARBUTTON correctly when building using configure (#22900).
|
||||
- Queue wxWebViewEdge events to avoid hangs (Tobias Taschner, #23025).
|
||||
- Fix getting printer information in the print dialog (Stefan Ziegler, #23068).
|
||||
|
@ -14,7 +14,7 @@
|
||||
@author Julian Smart, Vadim Zeitlin, Robin Dunn, Stefan Csomor,
|
||||
Bryan Petty, Francesco Montorsi, Robert Roebling et al
|
||||
|
||||
@date September 09, 2022
|
||||
@date February 08, 2023
|
||||
|
||||
Welcome to wxWidgets, a stable and powerful open source framework for
|
||||
developing native cross-platform GUI applications in C++!
|
||||
|
@ -17,7 +17,7 @@ Getting the files
|
||||
-----------------
|
||||
|
||||
First, you need to get the correct files. You will always need the
|
||||
`wxWidgets-3.2.1-headers.7z` one but the rest depends on your compiler version
|
||||
`wxWidgets-3.2.2-headers.7z` one but the rest depends on your compiler version
|
||||
and architecture: as different versions of MSVC compiler are not binary
|
||||
compatible, you should select the files with the correct
|
||||
`vc80`, `vc90`, `vc100`, `vc110`, `vc120`, or `vc14x`
|
||||
@ -28,14 +28,14 @@ or the ones without this suffix for the still more common 32-bit builds. After
|
||||
determining the combination of suffixes you need, you should download the
|
||||
"Dev" and the "ReleaseDLL" files in addition to the "Headers" one above,
|
||||
e.g. for 32-bit MSVS 2017 development you need
|
||||
`wxMSW-3.2.1_vc14x_Dev.7z` and `wxMSW-3.2.1_vc14x_ReleaseDLL.7z`.
|
||||
`wxMSW-3.2.2_vc14x_Dev.7z` and `wxMSW-3.2.2_vc14x_ReleaseDLL.7z`.
|
||||
|
||||
All binaries are available at:
|
||||
|
||||
https://www.wxwidgets.org/downloads#v3.2.1_msw
|
||||
https://www.wxwidgets.org/downloads#v3.2.2_msw
|
||||
|
||||
Once you have the files you need, unzip all of them into the same directory, for
|
||||
example `c:\wx\3.2.1`. You should have only include and lib subdirectories under
|
||||
example `c:\wx\3.2.2`. You should have only include and lib subdirectories under
|
||||
it, nothing else. To avoid hard-coding this path into your projects, define
|
||||
`wxwin` environment variable containing it: although it's a little known fact,
|
||||
all versions of MSVC support environment variable expansion in the C++ projects
|
||||
|
@ -1,37 +1,60 @@
|
||||
September 09, 2022 -- The wxWidgets team is pleased to announce a new
|
||||
major release of our open source framework for the development of native
|
||||
February 08, 2023 -- The wxWidgets team is pleased to announce a new
|
||||
stable release of our open source framework for the development of native
|
||||
cross-platform applications in C++.
|
||||
|
||||
wxWidgets 3.2.1 is part of the API and ABI-stable 3.2.x release series and is
|
||||
wxWidgets 3.2.2 is part of the API and ABI-stable 3.2.x release series and is
|
||||
now available from
|
||||
|
||||
https://www.wxwidgets.org/downloads/
|
||||
|
||||
and
|
||||
|
||||
https://github.com/wxWidgets/wxWidgets/releases/v3.2.1
|
||||
https://github.com/wxWidgets/wxWidgets/releases/v3.2.2
|
||||
|
||||
Coming soon after 3.2.0, this is mostly a bug fix release, with just one
|
||||
noteworthy new feature: the addition of wxFileDialog::AddShortcut() function.
|
||||
However it fixes some important regressions and other problems:
|
||||
This release comes only a few months after the previous 3.2.1, but contains
|
||||
an important number of bug fixes and enhancements, further improving high DPI
|
||||
support, including:
|
||||
|
||||
- Fix crash in applications calling g_log_set_writer_func() with recent glib.
|
||||
- Several fixes to alpha channel handling in wxMSW bitmaps.
|
||||
- Generate key and focus events for wxSearchCtrl in wxOSX.
|
||||
- Fix creating wxRadioBox without any items in wxOSX.
|
||||
- Fix regression with AUI floating pane positioning.
|
||||
- Avoid new warnings given by gcc 12.
|
||||
- Fix building with MSVS 2022 standard-conforming preprocessor.
|
||||
- Work around MSVS 2022 optimizer bug that broke wxImage resizing.
|
||||
- NetBSD build fixes.
|
||||
- Better window resizing on DPI change in wxMSW.
|
||||
- Fix using native icons returned by wxArtProvider.
|
||||
- Fix menu items using custom font in high DPI.
|
||||
- High resolution icons support in wxGenericTreeCtrl and wxGenericListCtrl.
|
||||
|
||||
Please see the full change log for more details:
|
||||
and also improving locale-related code under Mac and Unix systems:
|
||||
|
||||
https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.1/docs/changes.txt
|
||||
- wxUILocale::UseDefault() works for locales using different language and
|
||||
region under Mac and fails when used for unsupported locale under Unix.
|
||||
- New wxUILocale::GetSystemLocaleId() allows to retrive such locales IDs.
|
||||
- wxUILocale::GetCurrent() works currently for "C" locale under Mac.
|
||||
|
||||
This release is API and ABI-compatible with 3.2.0, so the existing
|
||||
applications don't even need to be rebuilt to profit from all the fixes
|
||||
above if they use shared/dynamic libraries. And if they do need to be
|
||||
Some other user-visible enhancements made in this release:
|
||||
|
||||
- Allow selecting and copying text in wxMessageDialog in wxGTK.
|
||||
- Improve size and behaviour of in-place editor in wxGenericTreeCtrl.
|
||||
- Fix sometimes missing overwrite prompt in "Save" file dialog in wxMSW.
|
||||
- Fix glitch in drawing wxStaticBox with a control as label in wxMSW.
|
||||
|
||||
There are also some important bug fixes:
|
||||
|
||||
- Fix regression in saving TIFF images that could end up truncated.
|
||||
- Fix long standing bug in parsing wxHTTP responses.
|
||||
- Fix data race when processing events generated in a worker thread.
|
||||
- Avoid appending extraneous NUL bytes to wxTextDataObject text in wxMSW.
|
||||
- Fix handling of fonts with fractional sizes in wxOSX.
|
||||
- Fix resizing wxGLCanvas with EGL and Wayland in wxGTK.
|
||||
- Fix display artefacts when using AUI without compositor under X11.
|
||||
- Work around crashes when using wxTextCtrl with MinGW TDM 64.
|
||||
- Fix for a possible crash when handling menu events under Mac.
|
||||
- Third-party libraries have been updated to the latest versions.
|
||||
|
||||
All in all, this release includes ~150 fixes from 27 unique contributors,
|
||||
please see the full change log for more details:
|
||||
|
||||
https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.2/docs/changes.txt
|
||||
|
||||
This release is API and ABI-compatible with the previous 3.2.x, so
|
||||
the existing applications don't even need to be rebuilt to profit from all the
|
||||
fixes above if they use shared/dynamic libraries. And if they do need to be
|
||||
recompiled, this can be done without any changes to the code.
|
||||
|
||||
We hope that you will enjoy using the new release!
|
||||
|
@ -32,30 +32,53 @@ installation instructions.
|
||||
|
||||
|
||||
|
||||
Changes since 3.2.0
|
||||
Changes since 3.2.1
|
||||
-------------------
|
||||
|
||||
Coming soon after 3.2.0, this is mostly a bug fix release, with just one
|
||||
noteworthy new feature: the addition of wxFileDialog::AddShortcut() function.
|
||||
However it fixes some important regressions and other problems:
|
||||
This release comes only a few months after the previous 3.2.1, but contains
|
||||
an important number of bug fixes and enhancements, further improving high DPI
|
||||
support, including:
|
||||
|
||||
- Fix crash in applications calling g_log_set_writer_func() with recent glib.
|
||||
- Several fixes to alpha channel handling in wxMSW bitmaps.
|
||||
- Generate key and focus events for wxSearchCtrl in wxOSX.
|
||||
- Fix creating wxRadioBox without any items in wxOSX.
|
||||
- Fix regression with AUI floating pane positioning.
|
||||
- Avoid new warnings given by gcc 12.
|
||||
- Fix building with MSVS 2022 standard-conforming preprocessor.
|
||||
- Work around MSVS 2022 optimizer bug that broke wxImage resizing.
|
||||
- NetBSD build fixes.
|
||||
- Better window resizing on DPI change in wxMSW.
|
||||
- Fix using native icons returned by wxArtProvider.
|
||||
- Fix menu items using custom font in high DPI.
|
||||
- High resolution icons support in wxGenericTreeCtrl and wxGenericListCtrl.
|
||||
|
||||
Please see the full change log for more details:
|
||||
and also improving locale-related code under Mac and Unix systems:
|
||||
|
||||
- wxUILocale::UseDefault() works for locales using different language and
|
||||
region under Mac and fails when used for unsupported locale under Unix.
|
||||
- New wxUILocale::GetSystemLocaleId() allows to retrive such locales IDs.
|
||||
- wxUILocale::GetCurrent() works currently for "C" locale under Mac.
|
||||
|
||||
Some other user-visible enhancements made in this release:
|
||||
|
||||
- Allow selecting and copying text in wxMessageDialog in wxGTK.
|
||||
- Improve size and behaviour of in-place editor in wxGenericTreeCtrl.
|
||||
- Fix sometimes missing overwrite prompt in "Save" file dialog in wxMSW.
|
||||
- Fix glitch in drawing wxStaticBox with a control as label in wxMSW.
|
||||
|
||||
There are also some important bug fixes:
|
||||
|
||||
- Fix regression in saving TIFF images that could end up truncated.
|
||||
- Fix long standing bug in parsing wxHTTP responses.
|
||||
- Fix data race when processing events generated in a worker thread.
|
||||
- Avoid appending extraneous NUL bytes to wxTextDataObject text in wxMSW.
|
||||
- Fix handling of fonts with fractional sizes in wxOSX.
|
||||
- Fix resizing wxGLCanvas with EGL and Wayland in wxGTK.
|
||||
- Fix display artefacts when using AUI without compositor under X11.
|
||||
- Work around crashes when using wxTextCtrl with MinGW TDM 64.
|
||||
- Fix for a possible crash when handling menu events under Mac.
|
||||
- Third-party libraries have been updated to the latest versions.
|
||||
|
||||
All in all, this release includes ~150 fixes from 27 unique contributors,
|
||||
please see the full change log for more details:
|
||||
|
||||
https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.2/docs/changes.txt
|
||||
|
||||
This release is API and ABI-compatible with 3.2.0, so the existing
|
||||
applications don't even need to be rebuilt to profit from all the fixes
|
||||
above if they use shared/dynamic libraries. And if they do need to be
|
||||
This release is API and ABI-compatible with the previous 3.2.x releases, so
|
||||
the existing applications don't even need to be rebuilt to profit from all the
|
||||
fixes above if they use shared/dynamic libraries. And if they do need to be
|
||||
recompiled, this can be done without any changes to the code.
|
||||
|
||||
|
||||
@ -151,4 +174,4 @@ developed by its users and your contributions to it are always welcome!
|
||||
|
||||
Have fun!
|
||||
|
||||
The wxWidgets Team, September 2022
|
||||
The wxWidgets Team, February 2023
|
||||
|
124
docs/release.md
124
docs/release.md
@ -1,32 +1,32 @@
|
||||
Welcome to wxWidgets, a free and open source cross-platform C++ framework for writing advanced GUI applications using native controls.
|
||||
|
||||
wxWidgets 3.2.1 is part of 3.2 stable branch. This means that it is API _and_ ABI-compatible with 3.2.0 release, i.e. the applications previously built using 3.2.0 shared libraries will continue working with this release even without recompiling when using shared libraries and can be rebuilt without any changes to the code otherwise.
|
||||
wxWidgets 3.2.2 is part of 3.2 stable branch. This means that it is API _and_ ABI-compatible with the previous 3.2.x releases, i.e. the applications previously built using 3.2.0 or 3.2.1 shared libraries will continue working with this release even without recompiling when using shared libraries and can be rebuilt without any changes to the code otherwise.
|
||||
|
||||
We recommend using this version for any new wxWidgets applications. Existing applications using wxWidgets 3.0 or 3.1 shouldn't require any special effort to upgrade to this version too, so please try upgrading them to it.
|
||||
|
||||
Please see [**README**](https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.1/docs/readme.txt) for more information about this release and the [change log](https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.1/docs/changes.txt) for more details of the changes in it.
|
||||
Please see [**README**](https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.2/docs/readme.txt) for more information about this release and the [change log](https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.2/docs/changes.txt) for more details of the changes in it.
|
||||
|
||||
|
||||
## Source Files and Documentation
|
||||
|
||||
If you intend to build wxWidgets from sources (which is recommended), please do **NOT** download the files using the "Source code" links just above, which are automatically generated by GitHub and don't contain the submodules sources which are necessary for building wxWidgets.
|
||||
|
||||
Instead, download one of [wxWidgets-3.2.1.zip](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxWidgets-3.2.1.zip) or [wxWidgets-3.2.1.7z](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxWidgets-3.2.1.7z), for much smaller size, for Microsoft Windows systems or [wxWidgets-3.2.1.tar.bz2](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxWidgets-3.2.1.tar.bz2) for Unix ones, including macOS. These archives have exactly the same contents, but use the line endings appropriate for the corresponding platform.
|
||||
Instead, download one of [wxWidgets-3.2.2.zip](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.2/wxWidgets-3.2.2.zip) or [wxWidgets-3.2.2.7z](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.2/wxWidgets-3.2.2.7z), for much smaller size, for Microsoft Windows systems or [wxWidgets-3.2.2.tar.bz2](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.2/wxWidgets-3.2.2.tar.bz2) for Unix ones, including macOS. These archives have exactly the same contents, but use the line endings appropriate for the corresponding platform.
|
||||
|
||||
In addition, we provide archives containing the documentation in either HTML or Microsoft CHM formats. Notice that the documentation is also [available online](https://docs.wxwidgets.org/3.2.1).
|
||||
In addition, we provide archives containing the documentation in either HTML or Microsoft CHM formats. Notice that the documentation is also [available online](https://docs.wxwidgets.org/3.2.2).
|
||||
|
||||
Finally, Microsoft Windows users may download [Setup.exe file](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxMSW-3.2.1-Setup.exe) containing both sources and documentation, however please note that this file does _not_ contain any binaries, please see below for those.
|
||||
Finally, Microsoft Windows users may download [Setup.exe file](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.2/wxMSW-3.2.2-Setup.exe) containing both sources and documentation, however please note that this file does _not_ contain any binaries, please see below for those.
|
||||
|
||||
To verify your download please use the following SHA-1 checksums:
|
||||
|
||||
92d4d9b5d028bb1e1c0925e64f849ad3c0bf7cb2 wxMSW-3.2.1-Setup.exe
|
||||
48d8036c8afa000153b8de96c148c2dbd2fe4ba0 wxWidgets-3.2.1-docs-chm.zip
|
||||
45c7ca8b8cada802c7388a6598d219295563bf10 wxWidgets-3.2.1-docs-html.tar.bz2
|
||||
4ac40221eff511cf9ec61cb8f1f27b467fc3276c wxWidgets-3.2.1-docs-html.zip
|
||||
1e058b575de80bdf3163d0643df4fbb776565b3b wxWidgets-3.2.1-headers.7z
|
||||
0855c720fd1093c14df8249f17eb02b4de7bd464 wxWidgets-3.2.1.7z
|
||||
b5299275abddc7cb5fa92f75c17475ade3bc0532 wxWidgets-3.2.1.tar.bz2
|
||||
b0323a4771415faf1488d284079bdfc56a3586c2 wxWidgets-3.2.1.zip
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2-Setup.exe
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.2-docs-chm.zip
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.2-docs-html.tar.bz2
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.2-docs-html.zip
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.2-headers.7z
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.2.7z
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.2.tar.bz2
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.2.zip
|
||||
|
||||
## Binaries
|
||||
|
||||
@ -39,7 +39,7 @@ We provide pre-built binary files for the following compilers:
|
||||
|
||||
### For Developers
|
||||
|
||||
For developing applications with wxWidgets you need to download the compiler-independent `wxWidgets-3.2.1_Headers.7z` file and one of `wxMSW-3.2.1-vcXXX_Dev.7z` or `wxMSW-3.2.1_gccXXX_Dev.7z` files depending on your compiler, its version and the target architecture (x86 if not specified or x64).
|
||||
For developing applications with wxWidgets you need to download the compiler-independent `wxWidgets-3.2.2_Headers.7z` file and one of `wxMSW-3.2.2-vcXXX_Dev.7z` or `wxMSW-3.2.2_gccXXX_Dev.7z` files depending on your compiler, its version and the target architecture (x86 if not specified or x64).
|
||||
|
||||
Unpack both files into the same directory so that `include` and `lib` directories are at the same level after unpacking. You should be able to compile and link applications using wxWidgets in both debug and release modes but the debug symbols are provided only for debug libraries in this archive, see below for the release build debug symbols.
|
||||
|
||||
@ -47,63 +47,63 @@ Note that if you're setting up a new project using these binaries, the simplest
|
||||
|
||||
### For End Users
|
||||
|
||||
End users may download one of `wxMSW-3.2.1_vcXXX_ReleaseDLL.7z` or `wxMSW-3.2.1_gccXXX_ReleaseDLL.7z` files to get just the DLLs required for running the applications using wxWidgets.
|
||||
End users may download one of `wxMSW-3.2.2_vcXXX_ReleaseDLL.7z` or `wxMSW-3.2.2_gccXXX_ReleaseDLL.7z` files to get just the DLLs required for running the applications using wxWidgets.
|
||||
|
||||
### For Debugging
|
||||
|
||||
* Microsoft Visual C++ users: Files `wxMSW-3.2.1_vcXXX_ReleasePDB.7z` contain the debug symbols for the release build of the DLLs. Download them if you want to debug your own applications in release build or if you want to get meaningful information from mini-dumps retrieved from your users machines.
|
||||
* Microsoft Visual C++ users: Files `wxMSW-3.2.2_vcXXX_ReleasePDB.7z` contain the debug symbols for the release build of the DLLs. Download them if you want to debug your own applications in release build or if you want to get meaningful information from mini-dumps retrieved from your users machines.
|
||||
* MinGW-TDM users: Currently the debug symbols are not available for the release build of the DLLs (only the debug versions of the DLLs contains the debug symbols).
|
||||
|
||||
### Binary File Download Verification
|
||||
|
||||
To verify your download please use the following SHA-1 checksums:
|
||||
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc730_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc730_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc730_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc730_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc810_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc810_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc810_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc810_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc1030TDM_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc1030TDM_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc1030TDM_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc1030TDM_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc1220_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc1220_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc1220_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_gcc1220_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc90_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc90_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc90_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc90_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc90_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc90_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc100_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc100_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc100_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc100_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc100_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc100_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc110_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc110_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc110_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc110_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc110_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc110_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc120_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc120_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc120_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc120_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc120_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc120_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc14x_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc14x_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc14x_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc14x_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc14x_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.1_vc14x_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc730_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc730_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc730_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc730_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc810_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc810_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc810_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc810_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc1030TDM_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc1030TDM_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc1030TDM_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc1030TDM_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc1220_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc1220_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc1220_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_gcc1220_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc90_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc90_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc90_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc90_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc90_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc90_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc100_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc100_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc100_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc100_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc100_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc100_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc110_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc110_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc110_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc110_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc110_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc110_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc120_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc120_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc120_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc120_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc120_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc120_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc14x_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc14x_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc14x_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc14x_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc14x_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.2_vc14x_x64_ReleasePDB.7z
|
||||
|
||||
## Reporting Problems
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user