Release 4chan X v1.13.13.0.
This commit is contained in:
parent
79672540e6
commit
20a65afd9c
@ -2,6 +2,13 @@
|
||||
|
||||
-Sometimes the changelog has notes (not comprehensive) acknowledging people's work. This does not mean the changes are their fault, only that their code was used. All changes to the script are chosen by and the fault of the maintainer (ccd0).
|
||||
|
||||
### v1.13.13
|
||||
|
||||
**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.
|
||||
- Minor bugfixes.
|
||||
|
||||
### v1.13.12
|
||||
|
||||
**v1.13.12.3** *(2017-10-02)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.12.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.12.3/builds/4chan-X-noupdate.crx)]
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.12.3
|
||||
// @version 1.13.13.0
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -52,6 +52,7 @@
|
||||
// @grant GM.setValue
|
||||
// @grant GM.deleteValue
|
||||
// @grant GM.listValues
|
||||
// @grant GM.openInTab
|
||||
// @grant GM.xmlHttpRequest
|
||||
// @run-at document-start
|
||||
// @updateURL https://www.4chan-x.net/builds/4chan-X-beta.meta.js
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.13.12.3
|
||||
// @version 1.13.13.0
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -52,6 +52,7 @@
|
||||
// @grant GM.setValue
|
||||
// @grant GM.deleteValue
|
||||
// @grant GM.listValues
|
||||
// @grant GM.openInTab
|
||||
// @grant GM.xmlHttpRequest
|
||||
// @run-at document-start
|
||||
// @updateURL https://www.4chan-x.net/builds/4chan-X-beta.meta.js
|
||||
@ -158,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.12.3',
|
||||
VERSION: '1.13.13.0',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4480,7 +4481,7 @@ $ = (function() {
|
||||
var lastModified;
|
||||
lastModified = {};
|
||||
return function(url, options, extra) {
|
||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified;
|
||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified, xhr;
|
||||
if (options == null) {
|
||||
options = {};
|
||||
}
|
||||
@ -4497,7 +4498,8 @@ $ = (function() {
|
||||
if ($.engine === 'blink' && whenModified) {
|
||||
url += "?s=" + whenModified;
|
||||
}
|
||||
r = new XMLHttpRequest();
|
||||
xhr = XMLHttpRequest;
|
||||
r = new xhr();
|
||||
type || (type = form && 'post' || 'get');
|
||||
try {
|
||||
r.open(type, url, true);
|
||||
@ -4840,7 +4842,7 @@ $ = (function() {
|
||||
return e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0;
|
||||
};
|
||||
|
||||
$.open = typeof GM_openInTab !== "undefined" && GM_openInTab !== null ? GM_openInTab : function(url) {
|
||||
$.open = (typeof GM !== "undefined" && GM !== null ? GM.openInTab : void 0) != null ? GM.openInTab : typeof GM_openInTab !== "undefined" && GM_openInTab !== null ? GM_openInTab : function(url) {
|
||||
return window.open(url, '_blank');
|
||||
};
|
||||
|
||||
@ -14333,7 +14335,7 @@ Volume = (function() {
|
||||
return;
|
||||
}
|
||||
$.on(this.file.thumb, 'wheel', Volume.wheel.bind(Header.hover));
|
||||
return $.on($('a', this.file.text), 'wheel', Volume.wheel.bind(this.file.thumbLink));
|
||||
return $.on($('.file-info', this.file.text) || this.file.link, 'wheel', Volume.wheel.bind(this.file.thumbLink));
|
||||
},
|
||||
catalogNode: function() {
|
||||
var file;
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.12.3
|
||||
// @version 1.13.13.0
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -52,6 +52,7 @@
|
||||
// @grant GM.setValue
|
||||
// @grant GM.deleteValue
|
||||
// @grant GM.listValues
|
||||
// @grant GM.openInTab
|
||||
// @grant GM.xmlHttpRequest
|
||||
// @run-at document-start
|
||||
// @updateURL https://noupdate.invalid/
|
||||
@ -158,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.12.3',
|
||||
VERSION: '1.13.13.0',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4480,7 +4481,7 @@ $ = (function() {
|
||||
var lastModified;
|
||||
lastModified = {};
|
||||
return function(url, options, extra) {
|
||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified;
|
||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified, xhr;
|
||||
if (options == null) {
|
||||
options = {};
|
||||
}
|
||||
@ -4497,7 +4498,8 @@ $ = (function() {
|
||||
if ($.engine === 'blink' && whenModified) {
|
||||
url += "?s=" + whenModified;
|
||||
}
|
||||
r = new XMLHttpRequest();
|
||||
xhr = XMLHttpRequest;
|
||||
r = new xhr();
|
||||
type || (type = form && 'post' || 'get');
|
||||
try {
|
||||
r.open(type, url, true);
|
||||
@ -4840,7 +4842,7 @@ $ = (function() {
|
||||
return e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0;
|
||||
};
|
||||
|
||||
$.open = typeof GM_openInTab !== "undefined" && GM_openInTab !== null ? GM_openInTab : function(url) {
|
||||
$.open = (typeof GM !== "undefined" && GM !== null ? GM.openInTab : void 0) != null ? GM.openInTab : typeof GM_openInTab !== "undefined" && GM_openInTab !== null ? GM_openInTab : function(url) {
|
||||
return window.open(url, '_blank');
|
||||
};
|
||||
|
||||
@ -14333,7 +14335,7 @@ Volume = (function() {
|
||||
return;
|
||||
}
|
||||
$.on(this.file.thumb, 'wheel', Volume.wheel.bind(Header.hover));
|
||||
return $.on($('a', this.file.text), 'wheel', Volume.wheel.bind(this.file.thumbLink));
|
||||
return $.on($('.file-info', this.file.text) || this.file.link, 'wheel', Volume.wheel.bind(this.file.thumbLink));
|
||||
},
|
||||
catalogNode: function() {
|
||||
var file;
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.12.3
|
||||
// @version 1.13.13.0
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -52,6 +52,7 @@
|
||||
// @grant GM.setValue
|
||||
// @grant GM.deleteValue
|
||||
// @grant GM.listValues
|
||||
// @grant GM.openInTab
|
||||
// @grant GM.xmlHttpRequest
|
||||
// @run-at document-start
|
||||
// @updateURL https://www.4chan-x.net/builds/4chan-X.meta.js
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.13.12.3
|
||||
// @version 1.13.13.0
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -52,6 +52,7 @@
|
||||
// @grant GM.setValue
|
||||
// @grant GM.deleteValue
|
||||
// @grant GM.listValues
|
||||
// @grant GM.openInTab
|
||||
// @grant GM.xmlHttpRequest
|
||||
// @run-at document-start
|
||||
// @updateURL https://www.4chan-x.net/builds/4chan-X.meta.js
|
||||
@ -158,7 +159,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.13.12.3',
|
||||
VERSION: '1.13.13.0',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -4480,7 +4481,7 @@ $ = (function() {
|
||||
var lastModified;
|
||||
lastModified = {};
|
||||
return function(url, options, extra) {
|
||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified;
|
||||
var err, event, form, j, len, r, ref, ref1, type, upCallbacks, whenModified, xhr;
|
||||
if (options == null) {
|
||||
options = {};
|
||||
}
|
||||
@ -4497,7 +4498,8 @@ $ = (function() {
|
||||
if ($.engine === 'blink' && whenModified) {
|
||||
url += "?s=" + whenModified;
|
||||
}
|
||||
r = new XMLHttpRequest();
|
||||
xhr = XMLHttpRequest;
|
||||
r = new xhr();
|
||||
type || (type = form && 'post' || 'get');
|
||||
try {
|
||||
r.open(type, url, true);
|
||||
@ -4840,7 +4842,7 @@ $ = (function() {
|
||||
return e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0;
|
||||
};
|
||||
|
||||
$.open = typeof GM_openInTab !== "undefined" && GM_openInTab !== null ? GM_openInTab : function(url) {
|
||||
$.open = (typeof GM !== "undefined" && GM !== null ? GM.openInTab : void 0) != null ? GM.openInTab : typeof GM_openInTab !== "undefined" && GM_openInTab !== null ? GM_openInTab : function(url) {
|
||||
return window.open(url, '_blank');
|
||||
};
|
||||
|
||||
@ -14333,7 +14335,7 @@ Volume = (function() {
|
||||
return;
|
||||
}
|
||||
$.on(this.file.thumb, 'wheel', Volume.wheel.bind(Header.hover));
|
||||
return $.on($('a', this.file.text), 'wheel', Volume.wheel.bind(this.file.thumbLink));
|
||||
return $.on($('.file-info', this.file.text) || this.file.link, 'wheel', Volume.wheel.bind(this.file.thumbLink));
|
||||
},
|
||||
catalogNode: function() {
|
||||
var file;
|
||||
|
||||
Binary file not shown.
12
builds/updates-beta.json
Normal file
12
builds/updates-beta.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"addons": {
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.13.13.0",
|
||||
"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.12.3' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.13.0' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
12
builds/updates.json
Normal file
12
builds/updates.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"addons": {
|
||||
"4chan-x@4chan-x.net": {
|
||||
"updates": [
|
||||
{
|
||||
"version": "1.13.13.0",
|
||||
"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.12.3' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.13.0' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.13.12.3",
|
||||
"date": "2017-10-02T20:44:32.923Z"
|
||||
"version": "1.13.13.0",
|
||||
"date": "2017-10-09T00:36:31.712Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user