Skip to content

Commit

Permalink
history update; various tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
SachaG committed Aug 3, 2015
1 parent 72bcdfd commit 089706d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
15 changes: 15 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## v0.23

* Template modules now take `only` and `except` options to only display on specific routes.
* Now only caching first 15 days of `posts_daily` view.
* Added `okgrow:iron-router-autoscroll` package.
* Small tweaks to search UX.
* [BREAKING] Use collection helpers instead of `postLink` and `target` in `post_title` and `post_thumbnail`.
* [BREAKING] Use collection helpers instead of `pathFor` in `post_comments_link` and `post_discuss`.
* Added new i18n strings.
* Modified custom template prefix system to accept multiple prefixes.
* [BREAKING] Changed `Telescope.config.customPrefix = "foo"` to `Telescope.config.addCustomPrefix("foo")`.
* Added new `facebookPage` setting.
* Added category description to category menu, when it exists.
* Fixed post category and post thumbnail CSS classes.

## v0.22.2

* Made `approvePost` and `unapprovePost` methods take `postId` instead of `post` as argument and fixed approve/unapprove bug.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<div class="footer-code">
{{#if footerCode}}
{{#markdown}}{{footerCode}}{{/markdown}}
{{else}}
<a href="http://telescopeapp.org" target="_blank">{{_ "powered_by_telescope"}}</a>
{{/if}}
</div>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
margin-right:6px;
vertical-align: middle;
}
color:$light-text;
// color:$light-text;
.user-avatar{
border-radius: 100px;
.avatar{
Expand All @@ -187,7 +187,7 @@
}
.comment-permalink{
font-weight: normal;
color: $light-text;
// color: $light-text;
}
}
.comment-actions{
Expand Down Expand Up @@ -243,7 +243,7 @@
}
.downvoted .upvote, .upvoted .downvote{
cursor:default;
color:$light-text;
// color:$light-text;
}
}
.comment-new{
Expand Down Expand Up @@ -281,7 +281,7 @@
border-radius: 3px;
margin-bottom: 10px;
padding: 10px 15px;
color: $light-text;
// color: $light-text;
}
#comment{
font-size: 16px;
Expand Down

0 comments on commit 089706d

Please sign in to comment.