Release appchan x v2.6.2.
This commit is contained in:
parent
33c8bdc32d
commit
12adc14ea0
@ -1,3 +1,6 @@
|
||||
### v2.6.2
|
||||
*2013-11-27*
|
||||
|
||||
### v2.6.1
|
||||
*2013-11-27*
|
||||
|
||||
|
||||
2
LICENSE
2
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
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name appchan x
|
||||
// @version 2.6.1
|
||||
// @version 2.6.2
|
||||
// @minGMVer 1.12
|
||||
// @minFFVer 22
|
||||
// @namespace zixaphir
|
||||
|
||||
@ -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'
|
||||
|
||||
Binary file not shown.
@ -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": {
|
||||
|
||||
@ -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'
|
||||
|
||||
@ -1 +1 @@
|
||||
postMessage({version:'2.6.1'},'*')
|
||||
postMessage({version:'2.6.2'},'*')
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user