This commit is contained in:
Sacha Greif 2015-06-25 11:50:42 +09:00
parent 18d8a962ac
commit 6d4c5dedcf
5 changed files with 25 additions and 4 deletions

View file

@ -1,8 +1,18 @@
## v0.21 “SlugScope”
* Added URL slugs for posts (i.e. `/posts/xyz/my-post-slug`).
* i18n files clean-up.
* Added post downvote setting.
* Refactored notifications code.
* Added `kadira-debug` package.
* Fixed avatar bug.
* Fixed screen refresh bug on post page.
## v0.20.6 “AutoScope”
* Add Extra CSS field (thanks @johnthepink!)
* Fix security issue with Settings (thanks @jshimko!)
* Add automatic template replacement
* Added Extra CSS field (thanks @johnthepink!).
* Fixed security issue with Settings (thanks @jshimko!).
* Added automatic template replacement.
## v0.20.5 “MinorScope”

View file

@ -5,4 +5,4 @@
Telescope = {};
Telescope.VERSION = '0.20.6';
Telescope.VERSION = '0.21';

View file

@ -33,6 +33,7 @@ Meteor.startup(function () {
importRelease('0.20.4');
importRelease('0.20.5');
importRelease('0.20.6');
importRelease('0.21');
// if this is before the first run, mark all release notes as read to avoid showing them
if (!Events.findOne({name: 'firstRun'})) {

View file

@ -54,6 +54,7 @@ Package.onUse(function (api) {
api.addFiles('releases/0.20.4.md', 'server', { isAsset: true });
api.addFiles('releases/0.20.5.md', 'server', { isAsset: true });
api.addFiles('releases/0.20.6.md', 'server', { isAsset: true });
api.addFiles('releases/0.21.md', 'server', { isAsset: true });
// i18n languages (must come last)

View file

@ -0,0 +1,9 @@
### v0.21 “SlugScope”
* Added URL slugs for posts (i.e. `/posts/xyz/my-post-slug`).
* i18n files clean-up.
* Added post downvote setting.
* Refactored notifications code.
* Added `kadira-debug` package.
* Fixed avatar bug.
* Fixed screen refresh bug on post page.