-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
83 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
--- | ||
title: "wxWidgets 3.2.6 Released" | ||
date: 2024-09-09 | ||
comments: true | ||
--- | ||
|
||
This is the latest maintenance release in the stable 3.2 series and is now | ||
[available on GitHub][release], from where you can download archives with the | ||
library sources and documentation as well as binaries for the selected Windows | ||
compilers such as [Microsoft Visual C++][msvc], [MinGW-w64][mingw64] and | ||
[TDM-GCC][tdmgcc]. You can also read the [updated documentation] for this | ||
version online and, in particular, if you're new to wxWidgets, you may find | ||
the [installation guide] a good starting point. | ||
|
||
[msvc]: https://visualstudio.microsoft.com/ | ||
[mingw64]: https://mingw-w64.org/ | ||
[tdmgcc]: https://jmeubank.github.io/tdm-gcc/ | ||
[release]: https://github.com/wxWidgets/wxWidgets/releases/tag/v3.2.6 | ||
[updated documentation]: https://docs.wxwidgets.org/3.2.6/ | ||
[installation guide]: https://docs.wxwidgets.org/3.2.6/overview_install.html | ||
|
||
### Changes since 3.2.5 | ||
|
||
This release contains relatively few changes compared to the previous one, | ||
but they include important bug fixes, such as: | ||
|
||
- Fix resource leak in `wxBitmapBundle` in some circumstances ([#24703]). | ||
- Fix crash when using static wx libraries in a Windows DLL ([#24730]). | ||
- Fix possible crash during drag-and-drop in wxGTK ([#24677]). | ||
- Fix `wxDatePickerCtrl` being unusable in some locales in wxGTK ([#24533]). | ||
- Fix regression in focus handling under macOS 14+ ([#24605], [#24667]). | ||
- Fix regression in wxTranslations introduced in 3.2.3 ([#24297]). | ||
|
||
Other changes include: | ||
|
||
- High DPI fixes for `wxBitmapComboBox` ([#24563]), `wxDataViewCtrl` ([#24648]), | ||
`wxNotebook` ([#24606]), `wxPropertyGrid` ([#24607]), `wxWizard` ([#24743]). | ||
- Improve `wxSlider` appearance under macOS ([#24532], [#24539]). | ||
- Correctly use current keyboard layout in key events in wxGTK ([#24772]). | ||
- Fix handling of ligatures in `wxStyledTextCtrl` in wxGTK ([#13168]). | ||
|
||
Please see the full [change log] for more details. | ||
|
||
[#13168]: https://github.com/wxWidgets/wxWidgets/issues/13168 | ||
[#24297]: https://github.com/wxWidgets/wxWidgets/issues/24297 | ||
[#24532]: https://github.com/wxWidgets/wxWidgets/issues/24532 | ||
[#24533]: https://github.com/wxWidgets/wxWidgets/issues/24533 | ||
[#24539]: https://github.com/wxWidgets/wxWidgets/issues/24539 | ||
[#24563]: https://github.com/wxWidgets/wxWidgets/issues/24563 | ||
[#24605]: https://github.com/wxWidgets/wxWidgets/issues/24605 | ||
[#24607]: https://github.com/wxWidgets/wxWidgets/issues/24607 | ||
[#24648]: https://github.com/wxWidgets/wxWidgets/issues/24648 | ||
[#24667]: https://github.com/wxWidgets/wxWidgets/issues/24667 | ||
[#24677]: https://github.com/wxWidgets/wxWidgets/issues/24677 | ||
[#24703]: https://github.com/wxWidgets/wxWidgets/issues/24703 | ||
[#24730]: https://github.com/wxWidgets/wxWidgets/issues/24730 | ||
[#24743]: https://github.com/wxWidgets/wxWidgets/issues/24743 | ||
[#24772]: https://github.com/wxWidgets/wxWidgets/issues/24772 | ||
|
||
[change log]: https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.2.6/docs/changes.txt | ||
|
||
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. | ||
|
||
|
||
### Feedback | ||
|
||
Please let us know about your experience with this release via any of the | ||
following channels: | ||
|
||
* [Mailing lists](https://www.wxwidgets.org/support/mailing-lists/) | ||
* [Discussion forums](https://forums.wxwidgets.org/) | ||
* [#wxwidgets IRC Channel](https://www.wxwidgets.org/support/irc/) | ||
* [Stack Overflow](https://stackoverflow.com/questions/tagged/wxwidgets) | ||
|
||
or by commenting under this post. | ||
|
||
Thanks to all contributors to this release and we hope that you will enjoy | ||
working with it! |