Release Notes¶
0.2.1 (not yet started)¶
- Improve pagination.
- Add support for images.
- Find a way to test South migrations with tox.
0.2.0¶
- Add settings for allowed tags (
TINYBLOG_ALLOWED_TAGS) and allowed attributes (TINYBLOG_ALLOWED_ATTRIBUTES) in bleach. - Added a setting for not bleaching content at all
(
TINYBLOG_NO_BLEACH). - Default to allowing the
ptag through.
0.1.9¶
If you’re using South, and have an existing installation of 0.1.8 you’ll need to run after installing, otherwise future migrations will fail:
python manage.py migrate tinyblog --fake
- Added initial documentation.
- Set up Travis CI integration for continuous integration testing.
- Removed dependence on sites framework by introducing two settings
TINYBLOG_SITE_NAMEandTINYBLOG_SITE_DOMAIN. These settings are only required if you do not havedjango.contrib.sitesin yourINSTALLED_APPS. - Re-added South migrations (removed before first publicly released version).
- Added support for bleach (if you have overriden tinyblog templates,
you may wish to access
bleached_teaser,bleached_textandbleached_full_text, rather thanteaser_html,text_htmlandfull_textrespectively). Text is stored as input (i.e. with any bad tags or attributes), and cleaned on output.
0.1.8¶
- First version with fairly comprehensive tests.