Update changelog.
This commit is contained in:
parent
73939b825e
commit
0cbf860ab6
34
CHANGES.rst
34
CHANGES.rst
|
@ -1,5 +1,39 @@
|
|||
.. -*- 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
|
||||
------
|
||||
|
||||
|
|
3
setup.py
3
setup.py
|
@ -75,6 +75,7 @@ requires = [
|
|||
# deprecated 'paster create' (and friends).
|
||||
'pyramid>=1.3a1', # 1.3b2 1.4.5
|
||||
|
||||
'edbob', # 1.1.2
|
||||
'humanize', # 0.5.1
|
||||
'Mako', # 0.6.2
|
||||
'pyramid_beaker>=0.6', # 0.6.1
|
||||
|
@ -82,7 +83,7 @@ requires = [
|
|||
'pyramid_exclog', # 0.6
|
||||
'pyramid_simpleform', # 0.6.1
|
||||
'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
|
||||
'waitress', # 0.8.1
|
||||
'WebHelpers', # 1.3
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
__version__ = u'0.4.19'
|
||||
__version__ = u'0.4.20'
|
||||
|
|
Loading…
Reference in a new issue