Release 4chan X v1.11.10.2.
This commit is contained in:
parent
7b2951cb93
commit
1f4bff3f11
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.10
|
### v1.11.10
|
||||||
|
|
||||||
|
**v1.11.10.2** *(2015-08-25)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.10.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.10.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Disable Alt+Number and Alt+Arrow in text fields to fix conflict with Alt+NumPad character input.
|
||||||
|
|
||||||
**v1.11.10.1** *(2015-08-22)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.10.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.10.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.10.1** *(2015-08-22)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.10.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.10.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Merge v1.11.9.3: Try to support the new non-3x3 captchas. Note: not tested on non-3x3 captchas yet.
|
- Merge v1.11.9.3: Try to support the new non-3x3 captchas. Note: not tested on non-3x3 captchas yet.
|
||||||
- Merge v1.11.9.4: Archive list update: desustorage.org -> archive.horse.
|
- Merge v1.11.9.4: Archive list update: desustorage.org -> archive.horse.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.10.1
|
// @version 1.11.10.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.10.1
|
// @version 1.11.10.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -412,7 +412,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.10.1',
|
VERSION: '1.11.10.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -3154,7 +3154,7 @@
|
|||||||
name: 'Catalog Features',
|
name: 'Catalog Features',
|
||||||
cb: this.catalogNode
|
cb: this.catalogNode
|
||||||
});
|
});
|
||||||
this.search = ((ref = history.state) != null ? ref.search : void 0) || '';
|
this.search = ((ref = history.state) != null ? ref.searched : void 0) || '';
|
||||||
if ((ref1 = history.state) != null ? ref1.mode : void 0) {
|
if ((ref1 = history.state) != null ? ref1.mode : void 0) {
|
||||||
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
|
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
|
||||||
}
|
}
|
||||||
@ -3454,12 +3454,12 @@
|
|||||||
return Index.buildIndex();
|
return Index.buildIndex();
|
||||||
},
|
},
|
||||||
popstate: function(e) {
|
popstate: function(e) {
|
||||||
var mode, page, ref, ref1, search, state;
|
var mode, page, ref, ref1, searched, state;
|
||||||
if (e != null ? e.state : void 0) {
|
if (e != null ? e.state : void 0) {
|
||||||
ref = e.state, search = ref.search, mode = ref.mode;
|
ref = e.state, searched = ref.searched, mode = ref.mode;
|
||||||
state = {};
|
state = {};
|
||||||
if (Index.search !== search) {
|
if (Index.search !== searched) {
|
||||||
state.search = Index.search = search;
|
state.search = Index.search = searched;
|
||||||
}
|
}
|
||||||
if (Conf['Index Mode'] !== mode) {
|
if (Conf['Index Mode'] !== mode) {
|
||||||
state.mode = mode;
|
state.mode = mode;
|
||||||
@ -3587,7 +3587,7 @@
|
|||||||
}
|
}
|
||||||
history[state.replace ? 'replaceState' : 'pushState']({
|
history[state.replace ? 'replaceState' : 'pushState']({
|
||||||
mode: Conf['Index Mode'],
|
mode: Conf['Index Mode'],
|
||||||
search: Index.search,
|
searched: Index.search,
|
||||||
oldpage: pageBeforeSearch
|
oldpage: pageBeforeSearch
|
||||||
}, '', pathname + hash);
|
}, '', pathname + hash);
|
||||||
return state;
|
return state;
|
||||||
@ -15528,7 +15528,7 @@
|
|||||||
}
|
}
|
||||||
target = e.target;
|
target = e.target;
|
||||||
if ((ref = target.nodeName) === 'INPUT' || ref === 'TEXTAREA') {
|
if ((ref = target.nodeName) === 'INPUT' || ref === 'TEXTAREA') {
|
||||||
if (!/(Esc|Alt|Ctrl|Meta|Shift\+\w{2,})/.test(key)) {
|
if (!(/(Esc|Alt|Ctrl|Meta|Shift\+\w{2,})/.test(key) && !/^Alt\+(\d|Up|Down|Left|Right)$/.test(key))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
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.10.1
|
// @version 1.11.10.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -412,7 +412,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.10.1',
|
VERSION: '1.11.10.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -3154,7 +3154,7 @@
|
|||||||
name: 'Catalog Features',
|
name: 'Catalog Features',
|
||||||
cb: this.catalogNode
|
cb: this.catalogNode
|
||||||
});
|
});
|
||||||
this.search = ((ref = history.state) != null ? ref.search : void 0) || '';
|
this.search = ((ref = history.state) != null ? ref.searched : void 0) || '';
|
||||||
if ((ref1 = history.state) != null ? ref1.mode : void 0) {
|
if ((ref1 = history.state) != null ? ref1.mode : void 0) {
|
||||||
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
|
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
|
||||||
}
|
}
|
||||||
@ -3454,12 +3454,12 @@
|
|||||||
return Index.buildIndex();
|
return Index.buildIndex();
|
||||||
},
|
},
|
||||||
popstate: function(e) {
|
popstate: function(e) {
|
||||||
var mode, page, ref, ref1, search, state;
|
var mode, page, ref, ref1, searched, state;
|
||||||
if (e != null ? e.state : void 0) {
|
if (e != null ? e.state : void 0) {
|
||||||
ref = e.state, search = ref.search, mode = ref.mode;
|
ref = e.state, searched = ref.searched, mode = ref.mode;
|
||||||
state = {};
|
state = {};
|
||||||
if (Index.search !== search) {
|
if (Index.search !== searched) {
|
||||||
state.search = Index.search = search;
|
state.search = Index.search = searched;
|
||||||
}
|
}
|
||||||
if (Conf['Index Mode'] !== mode) {
|
if (Conf['Index Mode'] !== mode) {
|
||||||
state.mode = mode;
|
state.mode = mode;
|
||||||
@ -3587,7 +3587,7 @@
|
|||||||
}
|
}
|
||||||
history[state.replace ? 'replaceState' : 'pushState']({
|
history[state.replace ? 'replaceState' : 'pushState']({
|
||||||
mode: Conf['Index Mode'],
|
mode: Conf['Index Mode'],
|
||||||
search: Index.search,
|
searched: Index.search,
|
||||||
oldpage: pageBeforeSearch
|
oldpage: pageBeforeSearch
|
||||||
}, '', pathname + hash);
|
}, '', pathname + hash);
|
||||||
return state;
|
return state;
|
||||||
@ -15528,7 +15528,7 @@
|
|||||||
}
|
}
|
||||||
target = e.target;
|
target = e.target;
|
||||||
if ((ref = target.nodeName) === 'INPUT' || ref === 'TEXTAREA') {
|
if ((ref = target.nodeName) === 'INPUT' || ref === 'TEXTAREA') {
|
||||||
if (!/(Esc|Alt|Ctrl|Meta|Shift\+\w{2,})/.test(key)) {
|
if (!(/(Esc|Alt|Ctrl|Meta|Shift\+\w{2,})/.test(key) && !/^Alt\+(\d|Up|Down|Left|Right)$/.test(key))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.10.1
|
// @version 1.11.10.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.10.1
|
// @version 1.11.10.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -412,7 +412,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.10.1',
|
VERSION: '1.11.10.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -3154,7 +3154,7 @@
|
|||||||
name: 'Catalog Features',
|
name: 'Catalog Features',
|
||||||
cb: this.catalogNode
|
cb: this.catalogNode
|
||||||
});
|
});
|
||||||
this.search = ((ref = history.state) != null ? ref.search : void 0) || '';
|
this.search = ((ref = history.state) != null ? ref.searched : void 0) || '';
|
||||||
if ((ref1 = history.state) != null ? ref1.mode : void 0) {
|
if ((ref1 = history.state) != null ? ref1.mode : void 0) {
|
||||||
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
|
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
|
||||||
}
|
}
|
||||||
@ -3454,12 +3454,12 @@
|
|||||||
return Index.buildIndex();
|
return Index.buildIndex();
|
||||||
},
|
},
|
||||||
popstate: function(e) {
|
popstate: function(e) {
|
||||||
var mode, page, ref, ref1, search, state;
|
var mode, page, ref, ref1, searched, state;
|
||||||
if (e != null ? e.state : void 0) {
|
if (e != null ? e.state : void 0) {
|
||||||
ref = e.state, search = ref.search, mode = ref.mode;
|
ref = e.state, searched = ref.searched, mode = ref.mode;
|
||||||
state = {};
|
state = {};
|
||||||
if (Index.search !== search) {
|
if (Index.search !== searched) {
|
||||||
state.search = Index.search = search;
|
state.search = Index.search = searched;
|
||||||
}
|
}
|
||||||
if (Conf['Index Mode'] !== mode) {
|
if (Conf['Index Mode'] !== mode) {
|
||||||
state.mode = mode;
|
state.mode = mode;
|
||||||
@ -3587,7 +3587,7 @@
|
|||||||
}
|
}
|
||||||
history[state.replace ? 'replaceState' : 'pushState']({
|
history[state.replace ? 'replaceState' : 'pushState']({
|
||||||
mode: Conf['Index Mode'],
|
mode: Conf['Index Mode'],
|
||||||
search: Index.search,
|
searched: Index.search,
|
||||||
oldpage: pageBeforeSearch
|
oldpage: pageBeforeSearch
|
||||||
}, '', pathname + hash);
|
}, '', pathname + hash);
|
||||||
return state;
|
return state;
|
||||||
@ -15528,7 +15528,7 @@
|
|||||||
}
|
}
|
||||||
target = e.target;
|
target = e.target;
|
||||||
if ((ref = target.nodeName) === 'INPUT' || ref === 'TEXTAREA') {
|
if ((ref = target.nodeName) === 'INPUT' || ref === 'TEXTAREA') {
|
||||||
if (!/(Esc|Alt|Ctrl|Meta|Shift\+\w{2,})/.test(key)) {
|
if (!(/(Esc|Alt|Ctrl|Meta|Shift\+\w{2,})/.test(key) && !/^Alt\+(\d|Up|Down|Left|Right)$/.test(key))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
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.10.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.10.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.10.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.10.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -4,8 +4,8 @@
|
|||||||
"meta": {
|
"meta": {
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"fork": "ccd0",
|
"fork": "ccd0",
|
||||||
"version": "1.11.10.1",
|
"version": "1.11.10.2",
|
||||||
"date": "2015-08-22T22:34:20.901Z",
|
"date": "2015-08-25T22:35:56.707Z",
|
||||||
"page": "https://www.4chan-x.net/",
|
"page": "https://www.4chan-x.net/",
|
||||||
"downloads": "https://www.4chan-x.net/builds/",
|
"downloads": "https://www.4chan-x.net/builds/",
|
||||||
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",
|
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user