Release 4chan X v1.11.20.3.

This commit is contained in:
ccd0 2015-12-11 00:29:39 -08:00
parent e7aea6131a
commit 7be30e2c7b
13 changed files with 60 additions and 21 deletions

View File

@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.20
**v1.11.20.3** *(2015-12-11)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.20.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.20.3/builds/4chan-X-noupdate.crx "Chromium version")]
- Turn `Pass Link` off and `Inline Cross-thread Quotes Only` on in new installs.
**v1.11.20.2** *(2015-12-08)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.20.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.20.2/builds/4chan-X-noupdate.crx "Chromium version")]
- Possible fix for errors on index page in Safari.

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.11.20.2
// @version 1.11.20.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X beta
// @version 1.11.20.2
// @version 1.11.20.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -248,13 +248,13 @@
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha where possible.'],
'Use Recaptcha v2 in Reports': [false, 'Use the image selection captcha in the report window.'],
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
'Pass Link': [true, 'Add a 4chan Pass login link to the bottom of the page.']
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
},
'Quote Links': {
'Quote Backlinks': [true, 'Add quote backlinks.'],
'OP Backlinks': [true, 'Add backlinks to the OP.', 1],
'Quote Inlining': [true, 'Inline quoted post on click.'],
'Inline Cross-thread Quotes Only': [false, 'Only inline quote links when the posts are on another thread or board, or fetched from the archive.', 1],
'Inline Cross-thread Quotes Only': [true, 'Only inline quote links when the posts are on another thread or board, or fetched from the archive.', 1],
'Quote Hash Navigation': [false, 'Include an extra link after quotes for autoscrolling to quoted posts.', 1],
'Forward Hiding': [true, 'Hide original posts of inlined backlinks.', 1],
'Quote Previewing': [true, 'Show quoted post on hover.'],
@ -433,7 +433,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.20.2',
VERSION: '1.11.20.3',
NAMESPACE: '4chan X.',
boards: {}
};
@ -17152,7 +17152,7 @@
}
},
upgrade: function(data, version) {
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, rice, type, uids;
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, rice, type, uids, value;
changes = {};
compareString = version.replace(/\d+/g, function(x) {
return ('0000' + x).slice(-5);
@ -17221,6 +17221,18 @@
});
});
}
if (compareString < '00001.00011.00020.00003') {
ref4 = {
'Inline Cross-thread Quotes Only': false,
'Pass Link': true
};
for (key in ref4) {
value = ref4[key];
if (data[key] == null) {
changes[key] = value;
}
}
}
return changes;
},
loadSettings: function(data, cb) {

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.11.20.2
// @version 1.11.20.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -248,13 +248,13 @@
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha where possible.'],
'Use Recaptcha v2 in Reports': [false, 'Use the image selection captcha in the report window.'],
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
'Pass Link': [true, 'Add a 4chan Pass login link to the bottom of the page.']
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
},
'Quote Links': {
'Quote Backlinks': [true, 'Add quote backlinks.'],
'OP Backlinks': [true, 'Add backlinks to the OP.', 1],
'Quote Inlining': [true, 'Inline quoted post on click.'],
'Inline Cross-thread Quotes Only': [false, 'Only inline quote links when the posts are on another thread or board, or fetched from the archive.', 1],
'Inline Cross-thread Quotes Only': [true, 'Only inline quote links when the posts are on another thread or board, or fetched from the archive.', 1],
'Quote Hash Navigation': [false, 'Include an extra link after quotes for autoscrolling to quoted posts.', 1],
'Forward Hiding': [true, 'Hide original posts of inlined backlinks.', 1],
'Quote Previewing': [true, 'Show quoted post on hover.'],
@ -433,7 +433,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.20.2',
VERSION: '1.11.20.3',
NAMESPACE: '4chan X.',
boards: {}
};
@ -17152,7 +17152,7 @@
}
},
upgrade: function(data, version) {
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, rice, type, uids;
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, rice, type, uids, value;
changes = {};
compareString = version.replace(/\d+/g, function(x) {
return ('0000' + x).slice(-5);
@ -17221,6 +17221,18 @@
});
});
}
if (compareString < '00001.00011.00020.00003') {
ref4 = {
'Inline Cross-thread Quotes Only': false,
'Pass Link': true
};
for (key in ref4) {
value = ref4[key];
if (data[key] == null) {
changes[key] = value;
}
}
}
return changes;
},
loadSettings: function(data, cb) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.11.20.2
// @version 1.11.20.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.11.20.2
// @version 1.11.20.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -248,13 +248,13 @@
'Use Recaptcha v1': [false, 'Use the old text version of Recaptcha where possible.'],
'Use Recaptcha v2 in Reports': [false, 'Use the image selection captcha in the report window.'],
'Force Noscript Captcha': [false, 'Use the non-Javascript fallback captcha even if Javascript is enabled (Recaptcha v2 only).'],
'Pass Link': [true, 'Add a 4chan Pass login link to the bottom of the page.']
'Pass Link': [false, 'Add a 4chan Pass login link to the bottom of the page.']
},
'Quote Links': {
'Quote Backlinks': [true, 'Add quote backlinks.'],
'OP Backlinks': [true, 'Add backlinks to the OP.', 1],
'Quote Inlining': [true, 'Inline quoted post on click.'],
'Inline Cross-thread Quotes Only': [false, 'Only inline quote links when the posts are on another thread or board, or fetched from the archive.', 1],
'Inline Cross-thread Quotes Only': [true, 'Only inline quote links when the posts are on another thread or board, or fetched from the archive.', 1],
'Quote Hash Navigation': [false, 'Include an extra link after quotes for autoscrolling to quoted posts.', 1],
'Forward Hiding': [true, 'Hide original posts of inlined backlinks.', 1],
'Quote Previewing': [true, 'Show quoted post on hover.'],
@ -433,7 +433,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.20.2',
VERSION: '1.11.20.3',
NAMESPACE: '4chan X.',
boards: {}
};
@ -17152,7 +17152,7 @@
}
},
upgrade: function(data, version) {
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, rice, type, uids;
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, rice, type, uids, value;
changes = {};
compareString = version.replace(/\d+/g, function(x) {
return ('0000' + x).slice(-5);
@ -17221,6 +17221,18 @@
});
});
}
if (compareString < '00001.00011.00020.00003') {
ref4 = {
'Inline Cross-thread Quotes Only': false,
'Pass Link': true
};
for (key in ref4) {
value = ref4[key];
if (data[key] == null) {
changes[key] = value;
}
}
}
return changes;
},
loadSettings: function(data, cb) {

Binary file not shown.

View File

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.20.2' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.20.3' />
</app>
</gupdate>

View File

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.20.2' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.20.3' />
</app>
</gupdate>

View File

@ -1,4 +1,4 @@
{
"version": "1.11.20.2",
"date": "2015-12-08T21:29:57.132Z"
"version": "1.11.20.3",
"date": "2015-12-11T08:28:46.605Z"
}