Merge branch 'bstable'
This commit is contained in:
commit
c9ede60796
@ -21,6 +21,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.25
|
### 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")]
|
**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.
|
- (Bui, anounyym1) Update archive list: Remove 4ch.be and remove /w/ from RBT.
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
QuoteYou =
|
QuoteYou =
|
||||||
init: ->
|
init: ->
|
||||||
return unless g.VIEW in ['index', 'thread'] and Conf['Remember Your Posts']
|
return unless Conf['Remember Your Posts']
|
||||||
|
|
||||||
@db = new DataBoard 'yourPosts'
|
@db = new DataBoard 'yourPosts'
|
||||||
$.sync 'Remember Your Posts', (enabled) -> Conf['Remember Your Posts'] = enabled
|
$.sync 'Remember Your Posts', (enabled) -> Conf['Remember Your Posts'] = enabled
|
||||||
@ -10,6 +10,8 @@ QuoteYou =
|
|||||||
{boardID, threadID, postID} = e.detail
|
{boardID, threadID, postID} = e.detail
|
||||||
QuoteYou.db.set {boardID, threadID, postID, val: true}
|
QuoteYou.db.set {boardID, threadID, postID, val: true}
|
||||||
|
|
||||||
|
return unless g.VIEW in ['index', 'thread']
|
||||||
|
|
||||||
if Conf['Highlight Own Posts']
|
if Conf['Highlight Own Posts']
|
||||||
$.addClass doc, 'highlight-own'
|
$.addClass doc, 'highlight-own'
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user