mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
history
This commit is contained in:
parent
18d8a962ac
commit
6d4c5dedcf
5 changed files with 25 additions and 4 deletions
16
History.md
16
History.md
|
@ -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”
|
||||
|
||||
|
|
|
@ -5,4 +5,4 @@
|
|||
|
||||
Telescope = {};
|
||||
|
||||
Telescope.VERSION = '0.20.6';
|
||||
Telescope.VERSION = '0.21';
|
|
@ -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'})) {
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
9
packages/telescope-releases/releases/0.21.md
Normal file
9
packages/telescope-releases/releases/0.21.md
Normal 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.
|
Loading…
Add table
Reference in a new issue