diff --git a/CHANGELOG.md b/CHANGELOG.md index 163095c25..29450dcde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/src/Quotelinks/QuoteYou.coffee b/src/Quotelinks/QuoteYou.coffee index 3838b0def..9370b22aa 100644 --- a/src/Quotelinks/QuoteYou.coffee +++ b/src/Quotelinks/QuoteYou.coffee @@ -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'