Release 4chan X v1.13.13.1.
This commit is contained in:
parent
d71ce7b16a
commit
55ab909e4a
@ -4,6 +4,10 @@
|
||||
|
||||
### v1.13.13
|
||||
|
||||
**v1.13.13.1** *(2017-10-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.13.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.13.1/builds/4chan-X-noupdate.crx)]
|
||||
- Fix setting clearing/importing in GM4. #1531
|
||||
- Fix issue with new Tampermonkey version on Edge. #1534
|
||||
|
||||
**v1.13.13.0** *(2017-10-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.13.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.13.0/builds/4chan-X-noupdate.crx)]
|
||||
- Based on v1.13.12.3.
|
||||
- Experimental support for installing the Chrome extension version in Firefox.
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.13.0
|
||||
// @version 1.13.13.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.13.0
|
||||
// @version 1.13.13.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.13.0',
|
||||
VERSION: '1.13.13.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4979,7 +4979,7 @@ $ = (function() {
|
||||
|
||||
$.syncing = {};
|
||||
|
||||
if ((typeof GM !== "undefined" && GM !== null ? GM.deleteValue : void 0) != null) {
|
||||
if (((typeof GM !== "undefined" && GM !== null ? GM.deleteValue : void 0) != null) && window.BroadcastChannel && (typeof GM_addValueChangeListener === "undefined" || GM_addValueChangeListener === null)) {
|
||||
$.syncChannel = new BroadcastChannel(g.NAMESPACE + 'sync');
|
||||
$.on($.syncChannel, 'message', function(e) {
|
||||
var cb, key, ref, results, val;
|
||||
@ -5059,7 +5059,7 @@ $ = (function() {
|
||||
});
|
||||
});
|
||||
$.clear = function(cb) {
|
||||
return GM.listValues.then(function(keys) {
|
||||
return GM.listValues().then(function(keys) {
|
||||
return $["delete"](keys.map(function(key) {
|
||||
return key.replace(g.NAMESPACE, '');
|
||||
}), cb);
|
||||
@ -24569,14 +24569,20 @@ Main = (function() {
|
||||
|
||||
Main = {
|
||||
init: function() {
|
||||
var db, flatten, i, items, j, k, key, len, ref;
|
||||
var db, flatten, i, items, j, k, key, len, ref, w;
|
||||
if (d.body && !$('title', d.head)) {
|
||||
return;
|
||||
}
|
||||
if (window['4chan X antidup']) {
|
||||
return;
|
||||
}
|
||||
window['4chan X antidup'] = true;
|
||||
try {
|
||||
w = window;
|
||||
if ($.platform === 'crx') {
|
||||
w = w.wrappedJSObject || w;
|
||||
}
|
||||
if ('4chan X antidup' in w) {
|
||||
return;
|
||||
}
|
||||
w['4chan X antidup'] = true;
|
||||
} catch (_error) {}
|
||||
if (location.hostname === 'www.google.com') {
|
||||
if (location.pathname === '/recaptcha/api/noscript') {
|
||||
$.ready(function() {
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.13.0
|
||||
// @version 1.13.13.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.13.0',
|
||||
VERSION: '1.13.13.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4979,7 +4979,7 @@ $ = (function() {
|
||||
|
||||
$.syncing = {};
|
||||
|
||||
if ((typeof GM !== "undefined" && GM !== null ? GM.deleteValue : void 0) != null) {
|
||||
if (((typeof GM !== "undefined" && GM !== null ? GM.deleteValue : void 0) != null) && window.BroadcastChannel && (typeof GM_addValueChangeListener === "undefined" || GM_addValueChangeListener === null)) {
|
||||
$.syncChannel = new BroadcastChannel(g.NAMESPACE + 'sync');
|
||||
$.on($.syncChannel, 'message', function(e) {
|
||||
var cb, key, ref, results, val;
|
||||
@ -5059,7 +5059,7 @@ $ = (function() {
|
||||
});
|
||||
});
|
||||
$.clear = function(cb) {
|
||||
return GM.listValues.then(function(keys) {
|
||||
return GM.listValues().then(function(keys) {
|
||||
return $["delete"](keys.map(function(key) {
|
||||
return key.replace(g.NAMESPACE, '');
|
||||
}), cb);
|
||||
@ -24569,14 +24569,20 @@ Main = (function() {
|
||||
|
||||
Main = {
|
||||
init: function() {
|
||||
var db, flatten, i, items, j, k, key, len, ref;
|
||||
var db, flatten, i, items, j, k, key, len, ref, w;
|
||||
if (d.body && !$('title', d.head)) {
|
||||
return;
|
||||
}
|
||||
if (window['4chan X antidup']) {
|
||||
return;
|
||||
}
|
||||
window['4chan X antidup'] = true;
|
||||
try {
|
||||
w = window;
|
||||
if ($.platform === 'crx') {
|
||||
w = w.wrappedJSObject || w;
|
||||
}
|
||||
if ('4chan X antidup' in w) {
|
||||
return;
|
||||
}
|
||||
w['4chan X antidup'] = true;
|
||||
} catch (_error) {}
|
||||
if (location.hostname === 'www.google.com') {
|
||||
if (location.pathname === '/recaptcha/api/noscript') {
|
||||
$.ready(function() {
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.13.0
|
||||
// @version 1.13.13.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.13.0
|
||||
// @version 1.13.13.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -159,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.13.0',
|
||||
VERSION: '1.13.13.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4979,7 +4979,7 @@ $ = (function() {
|
||||
|
||||
$.syncing = {};
|
||||
|
||||
if ((typeof GM !== "undefined" && GM !== null ? GM.deleteValue : void 0) != null) {
|
||||
if (((typeof GM !== "undefined" && GM !== null ? GM.deleteValue : void 0) != null) && window.BroadcastChannel && (typeof GM_addValueChangeListener === "undefined" || GM_addValueChangeListener === null)) {
|
||||
$.syncChannel = new BroadcastChannel(g.NAMESPACE + 'sync');
|
||||
$.on($.syncChannel, 'message', function(e) {
|
||||
var cb, key, ref, results, val;
|
||||
@ -5059,7 +5059,7 @@ $ = (function() {
|
||||
});
|
||||
});
|
||||
$.clear = function(cb) {
|
||||
return GM.listValues.then(function(keys) {
|
||||
return GM.listValues().then(function(keys) {
|
||||
return $["delete"](keys.map(function(key) {
|
||||
return key.replace(g.NAMESPACE, '');
|
||||
}), cb);
|
||||
@ -24569,14 +24569,20 @@ Main = (function() {
|
||||
|
||||
Main = {
|
||||
init: function() {
|
||||
var db, flatten, i, items, j, k, key, len, ref;
|
||||
var db, flatten, i, items, j, k, key, len, ref, w;
|
||||
if (d.body && !$('title', d.head)) {
|
||||
return;
|
||||
}
|
||||
if (window['4chan X antidup']) {
|
||||
return;
|
||||
}
|
||||
window['4chan X antidup'] = true;
|
||||
try {
|
||||
w = window;
|
||||
if ($.platform === 'crx') {
|
||||
w = w.wrappedJSObject || w;
|
||||
}
|
||||
if ('4chan X antidup' in w) {
|
||||
return;
|
||||
}
|
||||
w['4chan X antidup'] = true;
|
||||
} catch (_error) {}
|
||||
if (location.hostname === 'www.google.com') {
|
||||
if (location.pathname === '/recaptcha/api/noscript') {
|
||||
$.ready(function() {
|
||||
|
||||
Binary file not shown.
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.13.13.0",
|
||||
"version": "1.13.13.1",
|
||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||
}
|
||||
]
|
||||
|
||||
@ -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.13.13.0' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.13.1' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.13.13.0",
|
||||
"version": "1.13.13.1",
|
||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||
}
|
||||
]
|
||||
|
||||
@ -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.13.13.0' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.13.1' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.13.0",
|
||||
"date": "2017-10-09T00:36:31.712Z"
|
||||
"version": "1.13.13.1",
|
||||
"date": "2017-10-18T03:50:27.794Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user