Release 4chan X v1.11.19.2.
This commit is contained in:
parent
67eebfbf29
commit
96a72c9067
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.19
|
### v1.11.19
|
||||||
|
|
||||||
|
**v1.11.19.2** *(2015-12-02)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.19.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.19.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Minor bug fixes.
|
||||||
|
|
||||||
**v1.11.19.1** *(2015-12-01)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.19.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.19.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.19.1** *(2015-12-01)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.19.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.19.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Try to reduce false positives in detection of links split across two lines.
|
- Try to reduce false positives in detection of links split across two lines.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.19.1
|
// @version 1.11.19.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.19.1
|
// @version 1.11.19.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.19.1',
|
VERSION: '1.11.19.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -7914,7 +7914,7 @@
|
|||||||
return $.ajax(url, {
|
return $.ajax(url, {
|
||||||
onloadend: function() {
|
onloadend: function() {
|
||||||
attempts++;
|
attempts++;
|
||||||
if (attempts >= 5 || this.status === 200) {
|
if (attempts >= 6 || this.status === 200) {
|
||||||
return cb();
|
return cb();
|
||||||
} else {
|
} else {
|
||||||
return setTimeout(check, attempts * $.SECOND);
|
return setTimeout(check, attempts * $.SECOND);
|
||||||
@ -12160,7 +12160,7 @@
|
|||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: 'YouTube',
|
key: 'YouTube',
|
||||||
regExp: /^\w+:\/\/(?:youtu.be\/|[\w\.]*youtube[\w\.]*\/.*(?:v=|\/embed\/|\/v\/|\/videos\/))([\w\-]{11})[^#\&\?]?(.*)/,
|
regExp: /^\w+:\/\/(?:youtu.be\/|[\w.]*youtube[\w.]*\/.*(?:v=|\bembed\/|\bv\/))([\w\-]{11})(.*)/,
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
var el, start;
|
var el, start;
|
||||||
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
||||||
|
|||||||
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.19.1
|
// @version 1.11.19.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.19.1',
|
VERSION: '1.11.19.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -7914,7 +7914,7 @@
|
|||||||
return $.ajax(url, {
|
return $.ajax(url, {
|
||||||
onloadend: function() {
|
onloadend: function() {
|
||||||
attempts++;
|
attempts++;
|
||||||
if (attempts >= 5 || this.status === 200) {
|
if (attempts >= 6 || this.status === 200) {
|
||||||
return cb();
|
return cb();
|
||||||
} else {
|
} else {
|
||||||
return setTimeout(check, attempts * $.SECOND);
|
return setTimeout(check, attempts * $.SECOND);
|
||||||
@ -12160,7 +12160,7 @@
|
|||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: 'YouTube',
|
key: 'YouTube',
|
||||||
regExp: /^\w+:\/\/(?:youtu.be\/|[\w\.]*youtube[\w\.]*\/.*(?:v=|\/embed\/|\/v\/|\/videos\/))([\w\-]{11})[^#\&\?]?(.*)/,
|
regExp: /^\w+:\/\/(?:youtu.be\/|[\w.]*youtube[\w.]*\/.*(?:v=|\bembed\/|\bv\/))([\w\-]{11})(.*)/,
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
var el, start;
|
var el, start;
|
||||||
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.19.1
|
// @version 1.11.19.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.19.1
|
// @version 1.11.19.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.19.1',
|
VERSION: '1.11.19.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -7914,7 +7914,7 @@
|
|||||||
return $.ajax(url, {
|
return $.ajax(url, {
|
||||||
onloadend: function() {
|
onloadend: function() {
|
||||||
attempts++;
|
attempts++;
|
||||||
if (attempts >= 5 || this.status === 200) {
|
if (attempts >= 6 || this.status === 200) {
|
||||||
return cb();
|
return cb();
|
||||||
} else {
|
} else {
|
||||||
return setTimeout(check, attempts * $.SECOND);
|
return setTimeout(check, attempts * $.SECOND);
|
||||||
@ -12160,7 +12160,7 @@
|
|||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: 'YouTube',
|
key: 'YouTube',
|
||||||
regExp: /^\w+:\/\/(?:youtu.be\/|[\w\.]*youtube[\w\.]*\/.*(?:v=|\/embed\/|\/v\/|\/videos\/))([\w\-]{11})[^#\&\?]?(.*)/,
|
regExp: /^\w+:\/\/(?:youtu.be\/|[\w.]*youtube[\w.]*\/.*(?:v=|\bembed\/|\bv\/))([\w\-]{11})(.*)/,
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
var el, start;
|
var el, start;
|
||||||
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
||||||
|
|||||||
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.19.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.19.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.19.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.19.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.19.1",
|
"version": "1.11.19.2",
|
||||||
"date": "2015-12-01T11:21:21.155Z"
|
"date": "2015-12-02T23:05:18.259Z"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user