Release 4chan X v1.11.10.2.

This commit is contained in:
ccd0 2015-08-25 15:36:58 -07:00
parent 7b2951cb93
commit 1f4bff3f11
13 changed files with 36 additions and 33 deletions

View File

@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### 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")]
- 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.

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X beta
// @version 1.11.10.1
// @version 1.11.10.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -412,7 +412,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.10.1',
VERSION: '1.11.10.2',
NAMESPACE: '4chan X.',
boards: {}
};
@ -3154,7 +3154,7 @@
name: 'Catalog Features',
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) {
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
}
@ -3454,12 +3454,12 @@
return Index.buildIndex();
},
popstate: function(e) {
var mode, page, ref, ref1, search, state;
var mode, page, ref, ref1, searched, state;
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 = {};
if (Index.search !== search) {
state.search = Index.search = search;
if (Index.search !== searched) {
state.search = Index.search = searched;
}
if (Conf['Index Mode'] !== mode) {
state.mode = mode;
@ -3587,7 +3587,7 @@
}
history[state.replace ? 'replaceState' : 'pushState']({
mode: Conf['Index Mode'],
search: Index.search,
searched: Index.search,
oldpage: pageBeforeSearch
}, '', pathname + hash);
return state;
@ -15528,7 +15528,7 @@
}
target = e.target;
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;
}
}

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.11.10.1
// @version 1.11.10.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -412,7 +412,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.10.1',
VERSION: '1.11.10.2',
NAMESPACE: '4chan X.',
boards: {}
};
@ -3154,7 +3154,7 @@
name: 'Catalog Features',
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) {
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
}
@ -3454,12 +3454,12 @@
return Index.buildIndex();
},
popstate: function(e) {
var mode, page, ref, ref1, search, state;
var mode, page, ref, ref1, searched, state;
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 = {};
if (Index.search !== search) {
state.search = Index.search = search;
if (Index.search !== searched) {
state.search = Index.search = searched;
}
if (Conf['Index Mode'] !== mode) {
state.mode = mode;
@ -3587,7 +3587,7 @@
}
history[state.replace ? 'replaceState' : 'pushState']({
mode: Conf['Index Mode'],
search: Index.search,
searched: Index.search,
oldpage: pageBeforeSearch
}, '', pathname + hash);
return state;
@ -15528,7 +15528,7 @@
}
target = e.target;
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;
}
}

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.11.10.1
// @version 1.11.10.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -412,7 +412,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.10.1',
VERSION: '1.11.10.2',
NAMESPACE: '4chan X.',
boards: {}
};
@ -3154,7 +3154,7 @@
name: 'Catalog Features',
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) {
Conf['Index Mode'] = (ref2 = history.state) != null ? ref2.mode : void 0;
}
@ -3454,12 +3454,12 @@
return Index.buildIndex();
},
popstate: function(e) {
var mode, page, ref, ref1, search, state;
var mode, page, ref, ref1, searched, state;
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 = {};
if (Index.search !== search) {
state.search = Index.search = search;
if (Index.search !== searched) {
state.search = Index.search = searched;
}
if (Conf['Index Mode'] !== mode) {
state.mode = mode;
@ -3587,7 +3587,7 @@
}
history[state.replace ? 'replaceState' : 'pushState']({
mode: Conf['Index Mode'],
search: Index.search,
searched: Index.search,
oldpage: pageBeforeSearch
}, '', pathname + hash);
return state;
@ -15528,7 +15528,7 @@
}
target = e.target;
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;
}
}

Binary file not shown.

View File

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

View File

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

View File

@ -4,8 +4,8 @@
"meta": {
"name": "4chan X",
"fork": "ccd0",
"version": "1.11.10.1",
"date": "2015-08-22T22:34:20.901Z",
"version": "1.11.10.2",
"date": "2015-08-25T22:35:56.707Z",
"page": "https://www.4chan-x.net/",
"downloads": "https://www.4chan-x.net/builds/",
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",