From 5f50673d3d250ac20d2b1e037f34678885c799e3 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sun, 24 Jun 2018 21:01:00 -0700 Subject: [PATCH] Add changelog --- CHANGES.rst | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index bedb2fe0..b07f323f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -20,7 +20,7 @@ Pip: ``pip install wxPython==4.0.3`` Changes in this release include the following: * Fixed a linking problem on macOS. The new waf added an explicit link to the - Python shared library which menat that it would try to load it at runtime, + Python shared library which meant that it would try to load it at runtime, even if a different Python (such as Anaconda, EDM or Homebrew) was used to import wxPython. This, of course, caused runtime errors. (#892) @@ -30,6 +30,14 @@ Changes in this release include the following: * Added Vagrant configuration for Fedora-28. Removed Fedora-23 (#884) +* Added wrappers for the wx.WindowIDRef class and added the wx.NewIdRef + function. These will make it possible to create reserved Window IDs using the + same mechanism which is used when passing wx.ID_ANY to a widget constructor. + The object returned by wx.NewIdRef will automatically convert to an int when + passing it to a window constructor, and can also be used as the source in a + Bind(). + + 4.0.2 "Cute as a June bug!" ---------------------------