From 741647f0769b31d010b424f07ac83b5d42baea8b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 27 Jun 2022 17:09:21 +0200 Subject: [PATCH] Add more changes since v3.1.7 to the change log --- docs/changes.txt | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/changes.txt b/docs/changes.txt index 934dd35838..13d4dfc8a0 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -235,19 +235,34 @@ Changes in behaviour which may result in build errors 3.2.0: (released 2022-07-07) ---------------------------- +All: + +- Build fixes for Unix systems using older Cairo or glibc versions. +- Fix wxFileName::ReplaceHomeDir() when HOME=="/". +- Fix wxLocale::IsAvailable(wxLANGUAGE_DEFAULT) regression. +- Provide CMake config file for the library. + All (GUI): - Make loading bitmaps using BI_BITFIELDS work again. - Fix wxGenericListCtrl::GetColumnCount() for wxLC_LIST (Kvaz1r). - Fix refresh after calling wxGenericListCtrl::EnsureVisible() (taler21). +- Add wxMenuItem::GetBitmapBundle(). +- Support additional wxWizard properties in XRC (Randalphwa). wxGTK: +- Fix wxDC::Blit() and wxBitmap::GetSubBitmap() with HiDPI bitmaps. - Fix TAB navigation in wxSimplebook (Adrian Lopez). +- Support wxINVERT logical operation on wxDC with white source colour. +- Don't assert in wxGtkImage (used in e.g. wxToolBar) when bitmap is missing. wxMSW: -- Fix wxDC::DrawRoundedRectangle() regression. +- Fix wxDC::DrawRoundedRectangle() and wxImageList::Draw() regressions. +- Fix wrong results of wxWebResponse::GetHeader() and GetURL(). +- Fix creating wxBitmap of depth 32 but without real alpha. +- Improve top level window resizing on DPI change and allow overriding it. wxOSX: