Update changelog.

This commit is contained in:
Lance Edgar 2015-08-19 22:15:44 -05:00
parent 73939b825e
commit 0cbf860ab6
3 changed files with 37 additions and 2 deletions

View file

@ -1,5 +1,39 @@
.. -*- coding: utf-8 -*- .. -*- coding: utf-8 -*-
0.4.20
------
* Add ``CurrencyFieldRenderer``.
* Add basic checkbox support to new grids.
* Add 'Default Filters' and 'Clear Filters' buttons to new grid filters form.
* Add "Save Defaults" button so user can save personal defaults for any new grid.
* Fix bug when rendering hidden field in FA fieldset.
* Remove some unused styles.
* Various tweaks to support "late login" idea when uploading new batch.
* Hard-code old grid pagecount settings, to avoid ``edbob.config``.
* Refactor app configuration to use ``rattail.config.make_config()``.
* Tweak label formatter instantiation, per rattail changes.
* Various tweaks to base batch views.
* Add ``CustomFieldRenderer`` and ``DateFieldRenderer``.
* Add ``configure_fieldset()`` stub for master view.
* Add progress indicator to batch execution.
* Add ability to download batch row data as CSV.
0.4.19 0.4.19
------ ------

View file

@ -75,6 +75,7 @@ requires = [
# deprecated 'paster create' (and friends). # deprecated 'paster create' (and friends).
'pyramid>=1.3a1', # 1.3b2 1.4.5 'pyramid>=1.3a1', # 1.3b2 1.4.5
'edbob', # 1.1.2
'humanize', # 0.5.1 'humanize', # 0.5.1
'Mako', # 0.6.2 'Mako', # 0.6.2
'pyramid_beaker>=0.6', # 0.6.1 'pyramid_beaker>=0.6', # 0.6.1
@ -82,7 +83,7 @@ requires = [
'pyramid_exclog', # 0.6 'pyramid_exclog', # 0.6
'pyramid_simpleform', # 0.6.1 'pyramid_simpleform', # 0.6.1
'pyramid_tm', # 0.3 'pyramid_tm', # 0.3
'rattail[auth,db]>=0.4.6', # 0.4.6 'rattail[auth,db]>=0.5.0', # 0.5.0
'transaction', # 1.2.0 'transaction', # 1.2.0
'waitress', # 0.8.1 'waitress', # 0.8.1
'WebHelpers', # 1.3 'WebHelpers', # 1.3

View file

@ -1,3 +1,3 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__version__ = u'0.4.19' __version__ = u'0.4.20'