diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b37f5443..974cc8f40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### v2.6.2 +*2013-11-27* + ### v2.6.1 *2013-11-27* diff --git a/LICENSE b/LICENSE index 4bf884c2f..81e0978c0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* appchan x - Version 2.6.1 - 2013-11-27 +* appchan x - Version 2.6.2 - 2013-11-27 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE diff --git a/builds/appchan-x.meta.js b/builds/appchan-x.meta.js index 371cde470..296da13c8 100644 --- a/builds/appchan-x.meta.js +++ b/builds/appchan-x.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name appchan x -// @version 2.6.1 +// @version 2.6.2 // @minGMVer 1.12 // @minFFVer 22 // @namespace zixaphir diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 58c7b5c7f..8f338da31 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -1,7 +1,7 @@ // Generated by CoffeeScript // ==UserScript== // @name appchan x -// @version 2.6.1 +// @version 2.6.2 // @minGMVer 1.12 // @minFFVer 22 // @namespace zixaphir @@ -22,7 +22,7 @@ // ==/UserScript== /* -* appchan x - Version 2.6.1 - 2013-11-27 +* appchan x - Version 2.6.2 - 2013-11-27 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -444,7 +444,7 @@ doc = d.documentElement; g = { - VERSION: '2.6.1', + VERSION: '2.6.2', NAMESPACE: 'appchan_x.', TYPE: 'sfw', boards: {}, @@ -8114,7 +8114,7 @@ return; } sc = $.el('a', { - className: "qr-shortcut icon " + (!Conf['Persistent QR'] ? 'disabled' : ''), + className: "qr-shortcut fa " + (!Conf['Persistent QR'] ? 'disabled' : ''), textContent: '\uf075', title: 'Quick Reply', href: 'javascript:;' @@ -8133,7 +8133,7 @@ return Header.addShortcut(sc, true); } $.addClass(sc, 'on-page'); - $.rmClass(sc, 'icon'); + $.rmClass(sc, 'fa'); sc.textContent = g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread'; con = $.el('div', { className: 'center' diff --git a/builds/appchan-x.zip b/builds/appchan-x.zip index 4d535e5e0..8776993ff 100644 Binary files a/builds/appchan-x.zip and b/builds/appchan-x.zip differ diff --git a/builds/crx/manifest.json b/builds/crx/manifest.json index 917cdca86..4f05c165a 100644 --- a/builds/crx/manifest.json +++ b/builds/crx/manifest.json @@ -1,6 +1,6 @@ { "name": "appchan x", - "version": "2.6.1", + "version": "2.6.2", "manifest_version": 2, "description": "The most comprehensive 4chan userscript.", "icons": { diff --git a/builds/crx/script.js b/builds/crx/script.js index 798d6c131..1d6d19cb6 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* appchan x - Version 2.6.1 - 2013-11-27 +* appchan x - Version 2.6.2 - 2013-11-27 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -423,7 +423,7 @@ doc = d.documentElement; g = { - VERSION: '2.6.1', + VERSION: '2.6.2', NAMESPACE: 'appchan_x.', TYPE: 'sfw', boards: {}, @@ -8120,7 +8120,7 @@ return; } sc = $.el('a', { - className: "qr-shortcut icon " + (!Conf['Persistent QR'] ? 'disabled' : ''), + className: "qr-shortcut fa " + (!Conf['Persistent QR'] ? 'disabled' : ''), textContent: '\uf075', title: 'Quick Reply', href: 'javascript:;' @@ -8139,7 +8139,7 @@ return Header.addShortcut(sc, true); } $.addClass(sc, 'on-page'); - $.rmClass(sc, 'icon'); + $.rmClass(sc, 'fa'); sc.textContent = g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread'; con = $.el('div', { className: 'center' diff --git a/latest.js b/latest.js index 49581629c..697656391 100644 --- a/latest.js +++ b/latest.js @@ -1 +1 @@ -postMessage({version:'2.6.1'},'*') +postMessage({version:'2.6.2'},'*') diff --git a/package.json b/package.json index 5d4913eb7..02a5bed6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "appchan-x", - "version": "2.6.1", + "version": "2.6.2", "description": "The most comprehensive 4chan userscript.", "meta": { "name": "appchan x", diff --git a/src/Posting/QuickReply.coffee b/src/Posting/QuickReply.coffee index b9164da7b..8d9417088 100644 --- a/src/Posting/QuickReply.coffee +++ b/src/Posting/QuickReply.coffee @@ -17,7 +17,7 @@ QR = return unless Conf['Header Shortcut'] or Conf['Page Shortcut'] sc = $.el 'a', - className: "qr-shortcut icon #{unless Conf['Persistent QR'] then 'disabled' else ''}" + className: "qr-shortcut fa #{unless Conf['Persistent QR'] then 'disabled' else ''}" textContent: '\uf075' title: 'Quick Reply' href: 'javascript:;' @@ -34,7 +34,7 @@ QR = return Header.addShortcut sc, true if Conf['Header Shortcut'] $.addClass sc, 'on-page' - $.rmClass sc, 'icon' + $.rmClass sc, 'fa' sc.textContent = if g.VIEW is 'thread' then 'Reply to Thread' else 'Start a Thread' con = $.el 'div', className: 'center'