Release 4chan X v1.13.13.1.

This commit is contained in:
ccd0 2017-10-17 21:03:25 -07:00
parent d71ce7b16a
commit 55ab909e4a
15 changed files with 57 additions and 35 deletions

View File

@ -4,6 +4,10 @@
### v1.13.13 ### 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)] **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. - Based on v1.13.12.3.
- Experimental support for installing the Chrome extension version in Firefox. - Experimental support for installing the Chrome extension version in Firefox.

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.13.13.0 // @version 1.13.13.1
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X beta // @name 4chan X beta
// @version 1.13.13.0 // @version 1.13.13.1
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -159,7 +159,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.13.13.0', VERSION: '1.13.13.1',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -4979,7 +4979,7 @@ $ = (function() {
$.syncing = {}; $.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'); $.syncChannel = new BroadcastChannel(g.NAMESPACE + 'sync');
$.on($.syncChannel, 'message', function(e) { $.on($.syncChannel, 'message', function(e) {
var cb, key, ref, results, val; var cb, key, ref, results, val;
@ -5059,7 +5059,7 @@ $ = (function() {
}); });
}); });
$.clear = function(cb) { $.clear = function(cb) {
return GM.listValues.then(function(keys) { return GM.listValues().then(function(keys) {
return $["delete"](keys.map(function(key) { return $["delete"](keys.map(function(key) {
return key.replace(g.NAMESPACE, ''); return key.replace(g.NAMESPACE, '');
}), cb); }), cb);
@ -24569,14 +24569,20 @@ Main = (function() {
Main = { Main = {
init: function() { 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)) { if (d.body && !$('title', d.head)) {
return; return;
} }
if (window['4chan X antidup']) { try {
return; w = window;
} if ($.platform === 'crx') {
window['4chan X antidup'] = true; 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.hostname === 'www.google.com') {
if (location.pathname === '/recaptcha/api/noscript') { if (location.pathname === '/recaptcha/api/noscript') {
$.ready(function() { $.ready(function() {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.13.13.0 // @version 1.13.13.1
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -159,7 +159,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.13.13.0', VERSION: '1.13.13.1',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -4979,7 +4979,7 @@ $ = (function() {
$.syncing = {}; $.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'); $.syncChannel = new BroadcastChannel(g.NAMESPACE + 'sync');
$.on($.syncChannel, 'message', function(e) { $.on($.syncChannel, 'message', function(e) {
var cb, key, ref, results, val; var cb, key, ref, results, val;
@ -5059,7 +5059,7 @@ $ = (function() {
}); });
}); });
$.clear = function(cb) { $.clear = function(cb) {
return GM.listValues.then(function(keys) { return GM.listValues().then(function(keys) {
return $["delete"](keys.map(function(key) { return $["delete"](keys.map(function(key) {
return key.replace(g.NAMESPACE, ''); return key.replace(g.NAMESPACE, '');
}), cb); }), cb);
@ -24569,14 +24569,20 @@ Main = (function() {
Main = { Main = {
init: function() { 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)) { if (d.body && !$('title', d.head)) {
return; return;
} }
if (window['4chan X antidup']) { try {
return; w = window;
} if ($.platform === 'crx') {
window['4chan X antidup'] = true; 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.hostname === 'www.google.com') {
if (location.pathname === '/recaptcha/api/noscript') { if (location.pathname === '/recaptcha/api/noscript') {
$.ready(function() { $.ready(function() {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.13.13.0 // @version 1.13.13.1
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.13.13.0 // @version 1.13.13.1
// @minGMVer 1.14 // @minGMVer 1.14
// @minFFVer 26 // @minFFVer 26
// @namespace 4chan-X // @namespace 4chan-X
@ -159,7 +159,7 @@ docSet = function() {
}; };
g = { g = {
VERSION: '1.13.13.0', VERSION: '1.13.13.1',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {} boards: {}
}; };
@ -4979,7 +4979,7 @@ $ = (function() {
$.syncing = {}; $.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'); $.syncChannel = new BroadcastChannel(g.NAMESPACE + 'sync');
$.on($.syncChannel, 'message', function(e) { $.on($.syncChannel, 'message', function(e) {
var cb, key, ref, results, val; var cb, key, ref, results, val;
@ -5059,7 +5059,7 @@ $ = (function() {
}); });
}); });
$.clear = function(cb) { $.clear = function(cb) {
return GM.listValues.then(function(keys) { return GM.listValues().then(function(keys) {
return $["delete"](keys.map(function(key) { return $["delete"](keys.map(function(key) {
return key.replace(g.NAMESPACE, ''); return key.replace(g.NAMESPACE, '');
}), cb); }), cb);
@ -24569,14 +24569,20 @@ Main = (function() {
Main = { Main = {
init: function() { 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)) { if (d.body && !$('title', d.head)) {
return; return;
} }
if (window['4chan X antidup']) { try {
return; w = window;
} if ($.platform === 'crx') {
window['4chan X antidup'] = true; 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.hostname === 'www.google.com') {
if (location.pathname === '/recaptcha/api/noscript') { if (location.pathname === '/recaptcha/api/noscript') {
$.ready(function() { $.ready(function() {

Binary file not shown.

View File

@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": { "4chan-x@4chan-x.net": {
"updates": [ "updates": [
{ {
"version": "1.13.13.0", "version": "1.13.13.1",
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx" "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'?> <?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.13.13.0' /> <updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.13.1' />
</app> </app>
</gupdate> </gupdate>

View File

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

View File

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

View File

@ -1,4 +1,4 @@
{ {
"version": "1.13.13.0", "version": "1.13.13.1",
"date": "2017-10-09T00:36:31.712Z" "date": "2017-10-18T03:50:27.794Z"
} }