mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-09-24 15:45:11 +08:00
Update release files for 3.3.0
Remove mentions of 32-bit binaries and outdated compilers.
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
@author Julian Smart, Vadim Zeitlin, Robin Dunn, Stefan Csomor,
|
||||
Bryan Petty, Francesco Montorsi, Robert Roebling et al
|
||||
|
||||
@date July 07, 2022
|
||||
@date May 22, 2025
|
||||
|
||||
Welcome to wxWidgets, a stable and powerful open source framework for
|
||||
developing native cross-platform GUI applications in C++!
|
||||
|
||||
+7
-10
@@ -5,26 +5,23 @@ How to use wxMSW binaries {#plat_msw_binaries}
|
||||
|
||||
Supported Compilers
|
||||
-------------------
|
||||
We provide pre-built binary files for the following compilers:
|
||||
|
||||
We provide pre-built binary files for x86-64 Windows for the following compilers:
|
||||
|
||||
* Microsoft Visual C++ compiler versions 14.0, 14.1, 14.2 and 14.3
|
||||
(corresponding to marketing product names of Microsoft Visual Studio 2015, 2017, 2019 and 2022 respectively).
|
||||
Please note that MSVC 14.x versions are ABI-compatible and the same set of binaries is used for all of them.
|
||||
* MinGW-w64 versions 7.3 and 8.1 (32-bit binaries use SJLJ exceptions, 64-bit ones use SEH, and all binaries use Win32 threads).
|
||||
* [TDM-GCC](https://jmeubank.github.io/tdm-gcc/) 10.3.0.
|
||||
* [MSYS2](https://www.msys2.org/) MinGW 12.2.0 and 13.2.0.
|
||||
* gcc 15.1 provided by [MSYS2](https://www.msys2.org/) MINGW64 environment.
|
||||
|
||||
Getting the files
|
||||
-----------------
|
||||
|
||||
First, you need to get the correct files. You will always need the
|
||||
`wxWidgets-3.3.0-headers.7z` one but the "Dev" and the "ReleaseDLL"
|
||||
files depend on your compiler and CPU architecture.
|
||||
For example, for MSVS 2015/2017/2019/2022 and 64-bit (x86_64) architecture
|
||||
you will need `wxMSW-3.3.0_vc14x_x64_Dev.7z` and `wxMSW-3.3.0_vc14x_x64_ReleaseDLL.7z`.
|
||||
If you are using MinGW-w64 v8.1 and 32-bit (x86) architecture, you will need
|
||||
`wxMSW-3.3.0_gcc810_Dev.7z` and `wxMSW-3.3.0_gcc810_ReleaseDLL.7z` (32-bit
|
||||
packages do not include the architecture suffix in their file name).
|
||||
files depend on your compiler: for example, for MSVS you will need
|
||||
`wxMSW-3.3.0_vc14x_x64_Dev.7z` and `wxMSW-3.3.0_vc14x_x64_ReleaseDLL.7z`, but
|
||||
if you are using gcc, you will need `wxMSW-3.3.0_gcc1510_x64_Dev.7z` and
|
||||
`wxMSW-3.3.0_gcc1510_x64_ReleaseDLL.7z`.
|
||||
|
||||
All binaries are available at:
|
||||
|
||||
|
||||
+22
-46
@@ -1,8 +1,8 @@
|
||||
July 07, 2022 -- The wxWidgets team is pleased to announce a new
|
||||
major release of our open source framework for the development of native
|
||||
May 22, 2025 -- The wxWidgets team is pleased to announce the first new
|
||||
development release of our open source framework for the development of native
|
||||
cross-platform applications in C++.
|
||||
|
||||
wxWidgets 3.2.0 is the first release in the new 3.2.x series and is
|
||||
wxWidgets 3.3.0 is the first release in the new 3.3.x development series and is
|
||||
available now from
|
||||
|
||||
https://www.wxwidgets.org/downloads/
|
||||
@@ -11,54 +11,30 @@ Compared to the stable 3.0.x series, this version brings too many
|
||||
improvements and even more bug fixes to list all of them here, please
|
||||
see the change log
|
||||
|
||||
https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.0/docs/changes.txt
|
||||
https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.3.0/docs/changes.txt
|
||||
|
||||
for the incomplete list of the most important ones and here is the
|
||||
maximally condensed summary of the changes compared to 3.0:
|
||||
for the list of the most important ones and here is the maximally condensed
|
||||
summary of the major changes compared to 3.2:
|
||||
|
||||
- Build system improvements: support for new compilers (up to MSVS 2022,
|
||||
g++ 12, clang 14) with an even simpler way of using wxWidgets from
|
||||
MSVS, with wxwidgets.props file, and OS versions as well as an
|
||||
entirely new CMake build system.
|
||||
- Support for native dark mode under macOS 10.14 and later, support for
|
||||
ARM hardware and macOS versions up to 13.
|
||||
- High DPI support with the new, but almost perfectly backwards-
|
||||
compatible, API based on wxBitmapBundle, including per-monitor DPI and
|
||||
dynamic DPI changes.
|
||||
- New features: HTTPS and HTTP/2 support with wxWebRequest and friends;
|
||||
support for freezing rows/columns in wxGrid; mouse gesture events
|
||||
(GSoC 2017 project); non-integer font sizes and arbitrary font weights
|
||||
in wxFont; fractional pen widths in wxGraphicsContext; arbitrary label
|
||||
windows in wxStaticBox; markup in wxDataViewCtrl items text; support
|
||||
for ZIP 64 files; LZMA compression; much improved accessibility
|
||||
support under MSW; new Edge-based wxWebView implementation.
|
||||
- New classes: wxActivityIndicator, wxAddRemoveCtrl, wxAppProgressIndicator,
|
||||
wxBitmapBundle, wxNativeWindow, wxPersistentComboBox,
|
||||
wxPowerResourceBlocker, wxSecretStore, wxTempFFile and many new
|
||||
features in the existing classes.
|
||||
- New XRC handlers for all the new and some of the existing classes.
|
||||
- Significant improvements to: wxBusyInfo, wxDataViewCtrl, wxDirDialog, wxGrid,
|
||||
wxNotificationMessage, wxSpinCtrl, wxStaticBox, wxStyledTextCtrl,
|
||||
wxUIActionSimulator.
|
||||
- Improvements to compile-time safety with the possibility to disable dangerous
|
||||
implicit conversions between wxString and "char*" strings.
|
||||
- Latest versions of all bundled 3rd party libraries, including all the
|
||||
security fixes and support for WebKit 2 and GStreamer 1.7 under Unix.
|
||||
- Revamped OpenGL support better suited to modern OpenGL (3.2+).
|
||||
- Further C++11 and later support improvements, wxWidgets can be built using
|
||||
C++20 compilers.
|
||||
- New experimental wxQt port.
|
||||
- Many, many bug fixes.
|
||||
- Support for dark mode in wxMSW under Windows 10 and later.
|
||||
- New Chrome-based wxWebView backend and many other wxWebView improvements.
|
||||
- Many improvements to wxAUI, including support for pinned and multiline tabs.
|
||||
- Support for WebP format in wxImage.
|
||||
- Support for high DPI cursors and animations.
|
||||
- Latest versions of 3rd party libraries.
|
||||
- Support for latest compilers (gcc 15, clang 19/Xcode 16) and C++ standards.
|
||||
|
||||
|
||||
This release is the start of a new "stable" release series, meaning that
|
||||
it provides an ABI stability guarantee and that applications using it
|
||||
will keep working even without recompiling with any of the subsequent
|
||||
3.2.x releases.
|
||||
This release is the start of a new "development" release series, but these
|
||||
development releases are suitable for production use: the only difference
|
||||
between them and "stable" releases is that neither ABI nor API stability is
|
||||
guaranteed in 3.3.x. However we strive to minimize API-incompatible changes
|
||||
even so and, in spite of a huge number of changes in it, this release remains
|
||||
almost fully API-compatible with wxWidgets 3.2 and updating the existing
|
||||
applications to use it should be straightforward. However please make sure to
|
||||
read the "INCOMPATIBLE CHANGES" section in the change log to be aware of the
|
||||
breaking changes in it.
|
||||
|
||||
In spite of a huge number of changes, this release remains almost fully
|
||||
API-compatible with the previous 3.0.x releases and 3.1.7 and updating
|
||||
the existing applications to use it should be straightforward.
|
||||
|
||||
We hope that you will enjoy using the new release!
|
||||
|
||||
|
||||
+18
-3
@@ -35,11 +35,26 @@ installation instructions.
|
||||
Changes since 3.2
|
||||
-----------------
|
||||
|
||||
- TODO
|
||||
With more than 5300 commits since the last release, there are too many changes
|
||||
to list them all here, but here is just a summary of the most important ones:
|
||||
|
||||
- Support for dark mode in wxMSW under Windows 10 and later.
|
||||
- New Chrome-based wxWebView backend and many other wxWebView improvements.
|
||||
- Many improvements to wxAUI, including support for pinned and multiline tabs.
|
||||
- Support for WebP format in wxImage.
|
||||
- Support for high DPI cursors and animations.
|
||||
- Latest versions of 3rd party libraries.
|
||||
- Support for latest compilers (gcc 15, clang 19/Xcode 16) and C++ standards.
|
||||
|
||||
Please see the change log for the more complete list of various improvements:
|
||||
|
||||
https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.3.0/docs/changes.txt
|
||||
|
||||
Note that in spite of all these changes, wxWidgets 3.3 is almost fully
|
||||
compatible with wxWidgets 3.2 and updating the existing applications to
|
||||
use it shouldn't require much effort.
|
||||
use it shouldn't require much effort. However please make sure to read the
|
||||
"INCOMPATIBLE CHANGES" section of the change log above when upgrading to be
|
||||
aware of the breaking changes in it.
|
||||
|
||||
|
||||
Supported Platforms
|
||||
@@ -132,4 +147,4 @@ developed by its users and your contributions to it are always welcome!
|
||||
|
||||
Have fun!
|
||||
|
||||
The wxWidgets Team, July 2022
|
||||
The wxWidgets Team, May 2025
|
||||
|
||||
+27
-69
@@ -1,44 +1,43 @@
|
||||
Welcome to wxWidgets, a free and open source cross-platform C++ framework for writing advanced GUI applications using native controls.
|
||||
|
||||
wxWidgets 3.2.0 is the first release in the 3.2 stable branch. This means that it will remain ABI-compatible with all the 3.2.x releases in the future, i.e. the applications using it will continue to work with the future releases in this series even without recompiling.
|
||||
wxWidgets 3.3.0 is the first release in the 3.3 development branch, bringing many new features and improvements compared to the stable 3.2 branch while remaining mostly API-compatible with it.
|
||||
|
||||
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 note that even this is not a "stable" release, it is still considered to be suitable to be used in production, the only difference with the stable releases is that API and ABI compatibility are not guaranteed for the releases in this series. In practice, however, backwards-incompatible API changes are expected to be rare.
|
||||
|
||||
Please see [**README**](https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.0/docs/readme.txt) for more information about this release and the [change log](https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.0/docs/changes.txt) for more details of the changes in it.
|
||||
Please see [**README**](https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.3.0/docs/readme.txt) for more information about this release and the [change log](https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.3.0/docs/changes.txt) for more details of the changes in it. In particular, please read the "INCOMPATIBLE CHANGES" section in the change log if you are upgrading from a previous version of wxWidgets.
|
||||
|
||||
|
||||
## 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.0.zip](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.0/wxWidgets-3.2.0.zip) or [wxWidgets-3.2.0.7z](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.0/wxWidgets-3.2.0.7z), for much smaller size, for Microsoft Windows systems or [wxWidgets-3.2.0.tar.bz2](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.0/wxWidgets-3.2.0.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.3.0.zip](https://github.com/wxWidgets/wxWidgets/releases/download/v3.3.0/wxWidgets-3.3.0.zip) or [wxWidgets-3.3.0.7z](https://github.com/wxWidgets/wxWidgets/releases/download/v3.3.0/wxWidgets-3.3.0.7z), for much smaller size, for Microsoft Windows systems or [wxWidgets-3.3.0.tar.bz2](https://github.com/wxWidgets/wxWidgets/releases/download/v3.3.0/wxWidgets-3.3.0.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.0).
|
||||
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.3.0).
|
||||
|
||||
Finally, Microsoft Windows users may download [Setup.exe file](https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.0/wxMSW-3.2.0-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.3.0/wxMSW-3.3.0-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:
|
||||
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0-Setup.exe
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.0-docs-chm.zip
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.0-docs-html.tar.bz2
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.0-docs-html.zip
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.0-headers.7z
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.0.7z
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.0.tar.bz2
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.2.0.zip
|
||||
0000000000000000000000000000000000000000 wxMSW-3.3.0-Setup.exe
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.3.0-docs-chm.zip
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.3.0-docs-html.tar.bz2
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.3.0-docs-html.zip
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.3.0-headers.7z
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.3.0.7z
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.3.0.tar.bz2
|
||||
0000000000000000000000000000000000000000 wxWidgets-3.3.0.zip
|
||||
|
||||
## Binaries
|
||||
|
||||
We provide pre-built binary files for the following compilers:
|
||||
We provide pre-built binary files for x86-64 Windows for the following compilers:
|
||||
|
||||
* Microsoft Visual C++ compiler versions 9.0, 10.0, 11.0, 12.0, 14.0, 14.1, 14.2 and 14.3 (corresponding to marketing product names of Microsoft Visual Studio 2008, 2010, 2012, 2013, 2015, 2017, 2019 and 2022 respectively). Please note that MSVC 14.x versions are ABI-compatible and the same set of binaries is used for all of them.
|
||||
* MinGW-w64 versions 7.3 and 8.1 (32-bit binaries use SJLJ exceptions, 64-bit ones use SEH, and all binaries use Win32 threads).
|
||||
* [TDM-GCC](https://jmeubank.github.io/tdm-gcc/) 9.2.0.
|
||||
* Microsoft Visual C++ compiler versions 14.0, 14.1, 14.2 and 14.3 (corresponding to marketing product names of Microsoft Visual Studio 2015, 2017, 2019 and 2022 respectively). Please note that MSVC 14.x versions are ABI-compatible and the same set of binaries is used for all of them.
|
||||
* gcc 15.1 provided by [MSYS2](https://www.msys2.org/) MINGW64 environment.
|
||||
|
||||
### For Developers
|
||||
|
||||
For developing applications with wxWidgets you need to download the compiler-independent `wxWidgets-3.2.0_Headers.7z` file and one of `wxMSW-3.2.0-vcXXX_Dev.7z` or `wxMSW-3.2.0_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.3.0_Headers.7z` file and one of `wxMSW-3.3.0-vc14x_x64_Dev.7z` or `wxMSW-3.3.0_gcc1510_x64_Dev.7z` files depending on your compiler.
|
||||
|
||||
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.
|
||||
|
||||
@@ -48,67 +47,26 @@ way to do it is to use the provided `wxwidgets.props` file: for this, open the
|
||||
Sheet..." from the project context menu and browse to this file in the file
|
||||
open dialog.
|
||||
|
||||
Please see the [instructions in the manual](https://docs.wxwidgets.org/3.2.0/plat_msw_binaries.html) for more details.
|
||||
Please see the [instructions in the manual](https://docs.wxwidgets.org/3.3.0/plat_msw_binaries.html) for more details.
|
||||
|
||||
### For End Users
|
||||
|
||||
End users may download one of `wxMSW-3.2.0_vcXXX_ReleaseDLL.7z` or `wxMSW-3.2.0_gccXXX_ReleaseDLL.7z` files to get just the DLLs required for running the applications using wxWidgets.
|
||||
End users may download one of `wxMSW-3.3.0_vc14x_x64_ReleaseDLL.7z` or `wxMSW-3.3.0_gcc1510_x64_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.0_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).
|
||||
* Microsoft Visual C++ users: Files `wxMSW-3.3.0_vc14x_x64_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.
|
||||
* gcc 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.0_gcc730_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc730_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc730_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc730_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc810_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc810_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc810_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc810_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc920TDM_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc920TDM_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc920TDM_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc920TDM_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc1020_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc1020_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc1020_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_gcc1020_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc90_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc90_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc90_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc90_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc90_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc90_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc100_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc100_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc100_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc100_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc100_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc100_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc110_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc110_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc110_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc110_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc110_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc110_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc120_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc120_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc120_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc120_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc120_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc120_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc14x_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc14x_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc14x_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc14x_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc14x_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.2.0_vc14x_x64_ReleasePDB.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.3.0_gcc1510_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.3.0_gcc1510_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.3.0_vc14x_x64_Dev.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.3.0_vc14x_x64_ReleaseDLL.7z
|
||||
0000000000000000000000000000000000000000 wxMSW-3.3.0_vc14x_x64_ReleasePDB.7z
|
||||
|
||||
|
||||
## Reporting Problems
|
||||
|
||||
Reference in New Issue
Block a user