Merge branch 'bstable'

This commit is contained in:
ccd0 2016-02-16 20:40:44 -08:00
commit c9ede60796
2 changed files with 6 additions and 1 deletions

View File

@ -21,6 +21,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.25
**v1.11.25.5** *(2016-02-16)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.5/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.5/builds/4chan-X-noupdate.crx "Chromium version")]
- Fix regression from v1.11.24.0 causing replies to you not to change thread watcher color on native catalog and archive pages.
**v1.11.25.4** *(2016-02-13)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.4/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.25.4/builds/4chan-X-noupdate.crx "Chromium version")]
- (Bui, anounyym1) Update archive list: Remove 4ch.be and remove /w/ from RBT.

View File

@ -1,6 +1,6 @@
QuoteYou =
init: ->
return unless g.VIEW in ['index', 'thread'] and Conf['Remember Your Posts']
return unless Conf['Remember Your Posts']
@db = new DataBoard 'yourPosts'
$.sync 'Remember Your Posts', (enabled) -> Conf['Remember Your Posts'] = enabled
@ -10,6 +10,8 @@ QuoteYou =
{boardID, threadID, postID} = e.detail
QuoteYou.db.set {boardID, threadID, postID, val: true}
return unless g.VIEW in ['index', 'thread']
if Conf['Highlight Own Posts']
$.addClass doc, 'highlight-own'