diff --git a/wxPython/config.py b/wxPython/config.py index a9f0954aaf..464330c008 100644 --- a/wxPython/config.py +++ b/wxPython/config.py @@ -40,7 +40,7 @@ VER_MAJOR = 2 # The first three must match wxWidgets VER_MINOR = 6 VER_RELEASE = 1 VER_SUBREL = 0 # wxPython release num for x.y.z release of wxWidgets -VER_FLAGS = "pre" # release flags, such as prerelease or RC num, etc. +VER_FLAGS = "" # release flags, such as prerelease or RC num, etc. DESCRIPTION = "Cross platform GUI toolkit for Python" AUTHOR = "Robin Dunn" @@ -752,6 +752,7 @@ elif os.name == 'posix': # uncomment this block to add the right flags to the link step and build # again. ## if os.uname()[0] == 'SunOS': + ## import commands ## libs.append('gcc') ## libdirs.append(commands.getoutput("gcc -print-search-dirs | grep '^install' | awk '{print $2}'")[:-1]) diff --git a/wxPython/distrib/all/build-osx b/wxPython/distrib/all/build-osx index eb4dae3f61..c7c6fa2c91 100755 --- a/wxPython/distrib/all/build-osx +++ b/wxPython/distrib/all/build-osx @@ -37,5 +37,8 @@ if [ $skiposx != yes ]; then echo "Fetching the results..." scp "root@$host:$OSX_BUILD/wxPython*-osx*" $STAGING_DIR ssh root@$host "rm $OSX_BUILD/wxPython*-osx*" + + echo "Done!" + sleep 1 fi diff --git a/wxPython/distrib/all/build-rpm b/wxPython/distrib/all/build-rpm index e95431c255..4c371a8682 100755 --- a/wxPython/distrib/all/build-rpm +++ b/wxPython/distrib/all/build-rpm @@ -95,6 +95,8 @@ if [ $skiplinux != yes ]; then ssh root@$host "/sbin/halt" sleep 10 fi + sleep 30 + + echo "Done!" fi -sleep 30 diff --git a/wxPython/distrib/all/build-windows b/wxPython/distrib/all/build-windows index 989e4e2eba..95a946b1a3 100755 --- a/wxPython/distrib/all/build-windows +++ b/wxPython/distrib/all/build-windows @@ -30,4 +30,6 @@ if [ $skipwin != yes ]; then echo "Fetching the results..." scp "$WIN_HOST:$WIN_BUILD/wxPython*-win32*" $STAGING_DIR ssh $WIN_HOST "rm $WIN_BUILD/wxPython*-win32*" + + echo "Done!" fi \ No newline at end of file diff --git a/wxPython/distrib/make_installer.py b/wxPython/distrib/make_installer.py index 558cce640f..ad17b9d7a0 100644 --- a/wxPython/distrib/make_installer.py +++ b/wxPython/distrib/make_installer.py @@ -514,6 +514,20 @@ Type: files; Name: "{app}\samples\wx_examples\hello\*.pyo"; Type: files; Name: "{app}\samples\wxProject\*.pyc"; Type: files; Name: "{app}\samples\wxProject\*.pyo"; +Type: files; Name: "{app}\samples\ide\*.pyc"; +Type: files; Name: "{app}\samples\ide\activegrid\*.pyc"; +Type: files; Name: "{app}\samples\ide\activegrid\tool\*.pyc"; +Type: files; Name: "{app}\samples\ide\activegrid\util\*.pyc"; +Type: files; Name: "{app}\samples\ide\*.pyo"; +Type: files; Name: "{app}\samples\ide\activegrid\*.pyo"; +Type: files; Name: "{app}\samples\ide\activegrid\tool\*.pyo"; +Type: files; Name: "{app}\samples\ide\activegrid\util\*.pyo"; + +Type: files; Name: "{app}\samples\docview\*.pyc"; +Type: files; Name: "{app}\samples\pydocview\*.pyc"; +Type: files; Name: "{app}\samples\docview\*.pyo"; +Type: files; Name: "{app}\samples\pydocview\*.pyo"; + ''' diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html index e48a9979bd..653b3bf064 100644 --- a/wxPython/docs/CHANGES.html +++ b/wxPython/docs/CHANGES.html @@ -11,7 +11,35 @@
wx.ListCtrl: patch #1210352, fixes editing in generic wx.ListCtrl with +wx.LC_EDIT_LABELS.
+Applied patch #208286, MediaCtrl DirectShow rewrite.
+DocView patches from Morgan Hua: bug fixes, and additional SVN +commands, also added a default template that uses the text editor for +any unknown file type.
+wxMSW: Use the system IDC_HAND cursor for wx.CURSOR_HAND and only fallback +to the strange wxWidgets version if the system one is not available.
+wx.grid.Grid: Merge the cell size attribute the same way that other +attributes are merged, e.g., if it is already set to a non-default +value in the current GridCellAttr object then don't merge from the +other.
+wx.lib.evtmgr: Fixed to use wx._core._wxPyDeadObject
+wx.lib.gridmovers: Don't scroll when the mouse is dragged outside of +the grid, unless the mouse is kept in motion.
+wxMSW: Applied patch #1213290 incorrect logic in +wx.TopLevelWindow.ShowFullScreen.
+Applied patch #1213066 correct device names for Joystick in Linux.
+wxGTK: Applied patch #1207162 wx.TextCtrl.SetStyle fix for overlapping +calls.
+wx.FileConfig: fixed DeleteEntry to set the dirty flag properly so the +change will get written at the next flush.
+Added the ActiveGrid IDE as a sample application.
wxPython on OSX can now be built in Unicode mode, can support multiple version installs, and comes with an uninstaller script.
Floats are allowed again as function parameters where ints are expected.
Added wxMaskedNumCtrl.
Added Chris Barker's FloatCanvas.
Added wxCursorFromBits.
Updated pycolourchooser.
Updated to 0.9b of PyCrust.
Fixed typemaps for wxGridCellCoordsArray.
Updated to the 0.9a version of PyCrust
Added wxIntCtrl from Will Sadkin.
Added wxPyColourChooser by Michael Gilfix.
Added function wrappers for the common dialogs from Kevin Altis. See wxPython/lib/dialogs.py for more details.
Added wxPython.lib.mixins.rubberband module from Robb Shecter.
Added wxTimeCtrl from Will Sadkin.
Added some patches from library contributors.
Fixed img2py to work correctly with Python 2.1.
Added enhanced wxVTKRenderWindow by Prabhu Ramachandran
No changes happened in the Python wrappers for this release, only changes and fixes in the wxWindows library.