Skip to content

Commit

Permalink
Updates for 3.2.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vadz committed Sep 9, 2024
1 parent 01a17e0 commit 8fe89ce
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _data/releases.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- version: 3.2.5
- version: 3.2.6
description: Latest Stable
channel: stable
released: May 14, 2024
released: September 9th, 2024
stable_api_since: July 7, 2022
bin_url_debian: https://docs.codelite.org/wxWidgets/repo320/#ubuntu-and-debian
bin_url_fedora: https://docs.codelite.org/wxWidgets/repo320/#fedora-and-opensuse
Expand Down
81 changes: 81 additions & 0 deletions _posts/2024-09-09-wxwidgets-3.2.6-released.md
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!

0 comments on commit 8fe89ce

Please sign in to comment.