dabo Commit Revision 7307 Date: 2013-01-03 20:08:59 -0800 (Thu, 03 Jan 2013) Author: Paul Trac: http://trac.dabodev.com/changeset/7307
Changed: U trunk/ChangeLog Log: Some changes to the ChangeLog, including recommended Python. Diff: Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2013-01-04 01:53:24 UTC (rev 7306) +++ trunk/ChangeLog 2013-01-04 04:08:59 UTC (rev 7307) @@ -1,14 +1,14 @@ See the Subversion log for all the details. -(Pending) Dabo 0.9.5 (2012-01-03) Revision 7306): +(Pending) Dabo 0.9.5 (2012-01-04) Revision 7307): =============================================================================== This is the final entry to this ChangeLog. After this, we will be migrating to GitHub and starting a new RELEASENOTES.md to note the changes. Once on GitHub, we'll be making the point releases much more frequently, with only a handful of changes in each usually. -Recommended Python: 2.6.5 or 2.7.3 (only use 2.7 with recommended wxPython) -Recommended wxPython: 2.8.12.1 +Recommended Python: 2.7.3 (3.x not supported in wxPython) +Recommended wxPython: 2.8.12.1 (if using 2.8.11 or older, stick with Python 2.6) We are looking forward to the next stable wxPython which looks like it'll be a 3.0 release and should support Python 3. @@ -17,13 +17,26 @@ incremental improvements, including: DOCUMENTATION: - + Thanks to Werner Bruin for converting the API docs to Sphinx + + Thanks to Werner Bruin for converting the API docs to Sphinx. You can find + them at http://docs.dabodev.com and the old 'dabodoc' api docs will stop + working in the near future. DEPRECATIONS: + doDefault() + in dabo.lib.reportUtils, printPDF() and previewPDF() are renamed to printReport() and previewReport() + + In the future, Dabo won't implicitly import subpackages anymore. Instead of: + import dabo + app = dabo.dApp() + Please start doing: + from dabo.dApp import dApp + app = dApp() + For now, the classic behavior is still there but you can get the new + behavior by making a settings_override.py in the dabo package directory + with a line that reads: + implicitImports = False + DB: + BLOB fields in SQLite now work 2-way. + Improved Many:Many functionality. _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[email protected]
