Release 4chan X v1.11.21.2.
This commit is contained in:
parent
d0ce1ccdbf
commit
45dac609db
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.21
|
### v1.11.21
|
||||||
|
|
||||||
|
**v1.11.21.2** *(2015-12-15)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.21.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.21.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Fix minor bugs in migration of old sauce settings.
|
||||||
|
|
||||||
**v1.11.21.1** *(2015-12-15)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.21.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.21.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.21.1** *(2015-12-15)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.21.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.21.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Merge v1.11.20.4: Make Google search for full images work again.
|
- Merge v1.11.20.4: Make Google search for full images work again.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.21.1
|
// @version 1.11.21.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.21.1
|
// @version 1.11.21.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.21.1',
|
VERSION: '1.11.21.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -17154,7 +17154,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
upgrade: function(data, version) {
|
upgrade: function(data, version) {
|
||||||
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, rice, type, uids, value;
|
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, ref5, rice, type, uids, value;
|
||||||
changes = {};
|
changes = {};
|
||||||
compareString = version.replace(/\d+/g, function(x) {
|
compareString = version.replace(/\d+/g, function(x) {
|
||||||
return ('0000' + x).slice(-5);
|
return ('0000' + x).slice(-5);
|
||||||
@ -17213,7 +17213,7 @@
|
|||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00017.00006') {
|
if (compareString < '00001.00011.00017.00006') {
|
||||||
if (data['sauces'] != null) {
|
if (data['sauces'] != null) {
|
||||||
changes['sauces'] = data['sauces'].replace(/(#?\s*)http:\/\/iqdb\.org\//g, '$1//iqdb.org/');
|
changes['sauces'] = data['sauces'].replace(/^(#?\s*)http:\/\/iqdb\.org\//mg, '$1//iqdb.org/');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00019.00003' && !Settings.overlay) {
|
if (compareString < '00001.00011.00019.00003' && !Settings.overlay) {
|
||||||
@ -17237,7 +17237,7 @@
|
|||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00020.00004' || compareString === '00001.00011.00021.00000') {
|
if (compareString < '00001.00011.00020.00004' || compareString === '00001.00011.00021.00000') {
|
||||||
if (data['sauces'] != null) {
|
if (data['sauces'] != null) {
|
||||||
changes['sauces'] = data['sauces'].replace(/^#?\s*https:\/\/www\.google\.com\/searchbyimage\?image_url=%(?:IMG|URL)(?=$|;)/mg, '$&%3Fs.jpg');
|
changes['sauces'] = ((ref5 = changes['sauces']) != null ? ref5 : data['sauces']).replace(/^#?\s*https:\/\/www\.google\.com\/searchbyimage\?image_url=%(?:IMG|URL)(?=$|;)/mg, '$&%3Fs.jpg');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return changes;
|
return changes;
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.21.1
|
// @version 1.11.21.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.21.1',
|
VERSION: '1.11.21.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -17154,7 +17154,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
upgrade: function(data, version) {
|
upgrade: function(data, version) {
|
||||||
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, rice, type, uids, value;
|
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, ref5, rice, type, uids, value;
|
||||||
changes = {};
|
changes = {};
|
||||||
compareString = version.replace(/\d+/g, function(x) {
|
compareString = version.replace(/\d+/g, function(x) {
|
||||||
return ('0000' + x).slice(-5);
|
return ('0000' + x).slice(-5);
|
||||||
@ -17213,7 +17213,7 @@
|
|||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00017.00006') {
|
if (compareString < '00001.00011.00017.00006') {
|
||||||
if (data['sauces'] != null) {
|
if (data['sauces'] != null) {
|
||||||
changes['sauces'] = data['sauces'].replace(/(#?\s*)http:\/\/iqdb\.org\//g, '$1//iqdb.org/');
|
changes['sauces'] = data['sauces'].replace(/^(#?\s*)http:\/\/iqdb\.org\//mg, '$1//iqdb.org/');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00019.00003' && !Settings.overlay) {
|
if (compareString < '00001.00011.00019.00003' && !Settings.overlay) {
|
||||||
@ -17237,7 +17237,7 @@
|
|||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00020.00004' || compareString === '00001.00011.00021.00000') {
|
if (compareString < '00001.00011.00020.00004' || compareString === '00001.00011.00021.00000') {
|
||||||
if (data['sauces'] != null) {
|
if (data['sauces'] != null) {
|
||||||
changes['sauces'] = data['sauces'].replace(/^#?\s*https:\/\/www\.google\.com\/searchbyimage\?image_url=%(?:IMG|URL)(?=$|;)/mg, '$&%3Fs.jpg');
|
changes['sauces'] = ((ref5 = changes['sauces']) != null ? ref5 : data['sauces']).replace(/^#?\s*https:\/\/www\.google\.com\/searchbyimage\?image_url=%(?:IMG|URL)(?=$|;)/mg, '$&%3Fs.jpg');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return changes;
|
return changes;
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.21.1
|
// @version 1.11.21.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.21.1
|
// @version 1.11.21.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -433,7 +433,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.21.1',
|
VERSION: '1.11.21.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -17154,7 +17154,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
upgrade: function(data, version) {
|
upgrade: function(data, version) {
|
||||||
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, rice, type, uids, value;
|
var boardID, changes, compareString, k, key, len1, name, record, ref, ref1, ref2, ref3, ref4, ref5, rice, type, uids, value;
|
||||||
changes = {};
|
changes = {};
|
||||||
compareString = version.replace(/\d+/g, function(x) {
|
compareString = version.replace(/\d+/g, function(x) {
|
||||||
return ('0000' + x).slice(-5);
|
return ('0000' + x).slice(-5);
|
||||||
@ -17213,7 +17213,7 @@
|
|||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00017.00006') {
|
if (compareString < '00001.00011.00017.00006') {
|
||||||
if (data['sauces'] != null) {
|
if (data['sauces'] != null) {
|
||||||
changes['sauces'] = data['sauces'].replace(/(#?\s*)http:\/\/iqdb\.org\//g, '$1//iqdb.org/');
|
changes['sauces'] = data['sauces'].replace(/^(#?\s*)http:\/\/iqdb\.org\//mg, '$1//iqdb.org/');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00019.00003' && !Settings.overlay) {
|
if (compareString < '00001.00011.00019.00003' && !Settings.overlay) {
|
||||||
@ -17237,7 +17237,7 @@
|
|||||||
}
|
}
|
||||||
if (compareString < '00001.00011.00020.00004' || compareString === '00001.00011.00021.00000') {
|
if (compareString < '00001.00011.00020.00004' || compareString === '00001.00011.00021.00000') {
|
||||||
if (data['sauces'] != null) {
|
if (data['sauces'] != null) {
|
||||||
changes['sauces'] = data['sauces'].replace(/^#?\s*https:\/\/www\.google\.com\/searchbyimage\?image_url=%(?:IMG|URL)(?=$|;)/mg, '$&%3Fs.jpg');
|
changes['sauces'] = ((ref5 = changes['sauces']) != null ? ref5 : data['sauces']).replace(/^#?\s*https:\/\/www\.google\.com\/searchbyimage\?image_url=%(?:IMG|URL)(?=$|;)/mg, '$&%3Fs.jpg');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return changes;
|
return changes;
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.21.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.21.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.21.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.21.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.21.1",
|
"version": "1.11.21.2",
|
||||||
"date": "2015-12-15T22:26:44.958Z"
|
"date": "2015-12-16T03:02:30.799Z"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user