Release 4chan X v1.14.15.3.

This commit is contained in:
ccd0 2019-12-29 20:17:47 -08:00
parent 2e0ae4bc8d
commit 452d6c6fe8
15 changed files with 40 additions and 22 deletions

View File

@ -4,6 +4,9 @@
### v1.14.15
**v1.14.15.3** *(2019-12-30)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.3/builds/4chan-X-noupdate.crx)]
- Update location of archive list. #2520
**v1.14.15.2** *(2019-12-20)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.15.2/builds/4chan-X-noupdate.crx)]
- Display message when noscript captcha is disabled, and link to open list of alternate imageboards. #1539 #2500

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.14.15.2
// @version 1.14.15.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -76,7 +76,7 @@
// @connect 4chan.org
// @connect 4channel.org
// @connect 4cdn.org
// @connect mayhemydg.github.io
// @connect nstepien.github.io
// @connect archive.4plebs.org
// @connect archive.nyafuu.org
// @connect archive.rebeccablacktech.com

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.14.15.2
// @version 1.14.15.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -76,7 +76,7 @@
// @connect 4chan.org
// @connect 4channel.org
// @connect 4cdn.org
// @connect mayhemydg.github.io
// @connect nstepien.github.io
// @connect archive.4plebs.org
// @connect archive.nyafuu.org
// @connect archive.rebeccablacktech.com
@ -214,7 +214,7 @@ docSet = function() {
};
g = {
VERSION: '1.14.15.2',
VERSION: '1.14.15.3',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@ -481,7 +481,7 @@ Config = (function() {
'Custom Board Navigation': true
},
archives: {
archiveLists: 'https://mayhemydg.github.io/archives.json/archives.json',
archiveLists: 'https://nstepien.github.io/archives.json/archives.json',
lastarchivecheck: 0,
archiveAutoUpdate: true
},
@ -13418,6 +13418,11 @@ Settings = (function() {
set('boardnav', "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\n[external-text:\"FAQ\",\"https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions\"]");
}
}
if (compareString < '00001.00014.00015.00003') {
if (data['archiveLists'] != null) {
set('archiveLists', data['archiveLists'].replace('https://mayhemydg.github.io/archives.json/archives.json', 'https://nstepien.github.io/archives.json/archives.json'));
}
}
return changes;
},
loadSettings: function(data, cb) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.14.15.2
// @version 1.14.15.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -76,7 +76,7 @@
// @connect 4chan.org
// @connect 4channel.org
// @connect 4cdn.org
// @connect mayhemydg.github.io
// @connect nstepien.github.io
// @connect archive.4plebs.org
// @connect archive.nyafuu.org
// @connect archive.rebeccablacktech.com
@ -214,7 +214,7 @@ docSet = function() {
};
g = {
VERSION: '1.14.15.2',
VERSION: '1.14.15.3',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@ -481,7 +481,7 @@ Config = (function() {
'Custom Board Navigation': true
},
archives: {
archiveLists: 'https://mayhemydg.github.io/archives.json/archives.json',
archiveLists: 'https://nstepien.github.io/archives.json/archives.json',
lastarchivecheck: 0,
archiveAutoUpdate: true
},
@ -13418,6 +13418,11 @@ Settings = (function() {
set('boardnav', "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\n[external-text:\"FAQ\",\"https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions\"]");
}
}
if (compareString < '00001.00014.00015.00003') {
if (data['archiveLists'] != null) {
set('archiveLists', data['archiveLists'].replace('https://mayhemydg.github.io/archives.json/archives.json', 'https://nstepien.github.io/archives.json/archives.json'));
}
}
return changes;
},
loadSettings: function(data, cb) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.14.15.2
// @version 1.14.15.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -76,7 +76,7 @@
// @connect 4chan.org
// @connect 4channel.org
// @connect 4cdn.org
// @connect mayhemydg.github.io
// @connect nstepien.github.io
// @connect archive.4plebs.org
// @connect archive.nyafuu.org
// @connect archive.rebeccablacktech.com

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.14.15.2
// @version 1.14.15.3
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -76,7 +76,7 @@
// @connect 4chan.org
// @connect 4channel.org
// @connect 4cdn.org
// @connect mayhemydg.github.io
// @connect nstepien.github.io
// @connect archive.4plebs.org
// @connect archive.nyafuu.org
// @connect archive.rebeccablacktech.com
@ -214,7 +214,7 @@ docSet = function() {
};
g = {
VERSION: '1.14.15.2',
VERSION: '1.14.15.3',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@ -481,7 +481,7 @@ Config = (function() {
'Custom Board Navigation': true
},
archives: {
archiveLists: 'https://mayhemydg.github.io/archives.json/archives.json',
archiveLists: 'https://nstepien.github.io/archives.json/archives.json',
lastarchivecheck: 0,
archiveAutoUpdate: true
},
@ -13418,6 +13418,11 @@ Settings = (function() {
set('boardnav', "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\n[external-text:\"FAQ\",\"https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions\"]");
}
}
if (compareString < '00001.00014.00015.00003') {
if (data['archiveLists'] != null) {
set('archiveLists', data['archiveLists'].replace('https://mayhemydg.github.io/archives.json/archives.json', 'https://nstepien.github.io/archives.json/archives.json'));
}
}
return changes;
},
loadSettings: function(data, cb) {

Binary file not shown.

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": {
"updates": [
{
"version": "1.14.15.2",
"version": "1.14.15.3",
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
}
]

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.14.15.2' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.15.3' />
</app>
</gupdate>

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": {
"updates": [
{
"version": "1.14.15.2",
"version": "1.14.15.3",
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
}
]

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.14.15.2' />
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.15.3' />
</app>
</gupdate>

View File

@ -1,4 +1,4 @@
{
"version": "1.14.15.2",
"date": "2019-12-20T10:16:14.905Z"
"version": "1.14.15.3",
"date": "2019-12-30T04:06:03.675Z"
}