Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
SachaG committed Jan 14, 2015
1 parent 83cd0d5 commit 2c83ec1
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 4 deletions.
12 changes: 10 additions & 2 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## v0.12.1

## v0.13.0 “ComponentScope”

* Tweaked comments layout in Hubbble theme.
* Added Bulgarian translation (thanks @toome123!).
* Cleaned up permission functions (thanks @anthonymayer!).
* Various fixes (thanks @comerc and @Kikobeats!).
* Stopped synced-cron message logging.
* Limit all posts lists to 200 posts.
* Refactored posts lists to use the template-level subscription pattern when appropriate.
* Refactored `single day` and `daily` packages.
* Footer field now accepts Markdown instead of HTML.

## v0.12.0 “DummyScope”
Expand Down
2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
telescopeVersion = "0.12.0";
telescopeVersion = "0.13.0";
3 changes: 2 additions & 1 deletion packages/telescope-releases/lib/server/import_releases.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ Meteor.startup(function () {
importRelease('0.11.0');
importRelease('0.11.1');
importRelease('0.12.0');

importRelease('0.13.0');

// if this is before the first run, mark all release notes as read to avoid showing them
if (!Events.findOne({name: 'firstRun'})) {
var r = Releases.update({}, {$set: {read: true}}, {multi: true});
Expand Down
1 change: 1 addition & 0 deletions packages/telescope-releases/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Package.onUse(function (api) {
api.addFiles('releases/0.11.0.md', 'server', { isAsset: true });
api.addFiles('releases/0.11.1.md', 'server', { isAsset: true });
api.addFiles('releases/0.12.0.md', 'server', { isAsset: true });
api.addFiles('releases/0.13.0.md', 'server', { isAsset: true });

// i18n languages (must come last)

Expand Down
11 changes: 11 additions & 0 deletions packages/telescope-releases/releases/0.13.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### v0.13.0 “ComponentScope”

* Tweaked comments layout in Hubbble theme.
* Added Bulgarian translation (thanks @toome123!).
* Cleaned up permission functions (thanks @anthonymayer!).
* Various fixes (thanks @comerc and @Kikobeats!).
* Stopped synced-cron message logging.
* Limit all posts lists to 200 posts.
* Refactored posts lists to use the template-level subscription pattern when appropriate.
* Refactored `single day` and `daily` packages.
* Footer field now accepts Markdown instead of HTML.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@
margin-bottom:10px;
@include cf;
font-size: 14px;
@include small{
padding-left: 15px;
}
.user-avatar, .comment-username, .comment-time, .comment-permalink{
display:inline-block;
margin-right:6px;
Expand Down

0 comments on commit 2c83ec1

Please sign in to comment.