From bc244c92183f2efe9d3e81d882457d5b63c3f9bc Mon Sep 17 00:00:00 2001 From: Martin Zimmermann Date: Tue, 20 Sep 2016 22:25:00 +0200 Subject: [PATCH] add changelog for 0.10.5 --- CHANGES.rst | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 88a5d7c..ec4995b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,14 +4,35 @@ Changelog for Isso 0.10.5 (unreleased) ------------------- -- Nothing changed yet. +- add support for different vote levels, #260 + + List of vote levels used to customize comment appearance based on score. + Provide a comma-separated values (eg. `"0,5,10,25,100"`) or a JSON array (eg. + `"[-5,5,15]"`). + + For example, the value `"-5,5"` will cause each `isso-comment` to be given + one of these 3 classes: + + - `isso-vote-level-0` for scores lower than `-5` + - `isso-vote-level-1` for scores between `-5` and `4` + - `isso-vote-level-2` for scores of `5` and greater + + These classes can then be used to customize the appearance of comments (eg. + put a star on popular comments). + +- add new post preview API endpoint, #254 + +- add an option for mandatory author, #257 + +- clients can now use `data-title` to get the HTML title for a new page, #252 + +- add finish translation and other minor bugfixes 0.10.4 (2016-04-12) ------------------- - fix wrapper attribute when using data-isso-require-mail="true", #238 - - fix reponse for OPTIONS response on Python 3, #242