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.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")]
|
||||
- Try to reduce false positives in detection of links split across two lines.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.19.1
|
||||
// @version 1.11.19.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.19.1
|
||||
// @version 1.11.19.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.19.1',
|
||||
VERSION: '1.11.19.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7914,7 +7914,7 @@
|
||||
return $.ajax(url, {
|
||||
onloadend: function() {
|
||||
attempts++;
|
||||
if (attempts >= 5 || this.status === 200) {
|
||||
if (attempts >= 6 || this.status === 200) {
|
||||
return cb();
|
||||
} else {
|
||||
return setTimeout(check, attempts * $.SECOND);
|
||||
@ -12160,7 +12160,7 @@
|
||||
}
|
||||
}, {
|
||||
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) {
|
||||
var el, start;
|
||||
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.19.1
|
||||
// @version 1.11.19.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.19.1',
|
||||
VERSION: '1.11.19.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7914,7 +7914,7 @@
|
||||
return $.ajax(url, {
|
||||
onloadend: function() {
|
||||
attempts++;
|
||||
if (attempts >= 5 || this.status === 200) {
|
||||
if (attempts >= 6 || this.status === 200) {
|
||||
return cb();
|
||||
} else {
|
||||
return setTimeout(check, attempts * $.SECOND);
|
||||
@ -12160,7 +12160,7 @@
|
||||
}
|
||||
}, {
|
||||
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) {
|
||||
var el, start;
|
||||
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.19.1
|
||||
// @version 1.11.19.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.19.1
|
||||
// @version 1.11.19.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -433,7 +433,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.19.1',
|
||||
VERSION: '1.11.19.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -7914,7 +7914,7 @@
|
||||
return $.ajax(url, {
|
||||
onloadend: function() {
|
||||
attempts++;
|
||||
if (attempts >= 5 || this.status === 200) {
|
||||
if (attempts >= 6 || this.status === 200) {
|
||||
return cb();
|
||||
} else {
|
||||
return setTimeout(check, attempts * $.SECOND);
|
||||
@ -12160,7 +12160,7 @@
|
||||
}
|
||||
}, {
|
||||
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) {
|
||||
var el, start;
|
||||
start = a.dataset.options.match(/\b(?:star)?t\=(\w+)/);
|
||||
|
||||
Binary file not shown.
@ -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.19.1' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.19.2' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -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.19.1' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.19.2' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.19.1",
|
||||
"date": "2015-12-01T11:21:21.155Z"
|
||||
"version": "1.11.19.2",
|
||||
"date": "2015-12-02T23:05:18.259Z"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user