Release 4chan X v1.11.15.1.
This commit is contained in:
parent
994e2f1685
commit
bf3dcc41e7
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.15
|
### v1.11.15
|
||||||
|
|
||||||
|
**v1.11.15.1** *(2015-11-01)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.15.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.15.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Fix some Oekaki transparency related bugs.
|
||||||
|
|
||||||
**v1.11.15.0** *(2015-11-01)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.15.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.15.0/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.15.0** *(2015-11-01)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.15.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.15.0/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Based on v1.11.14.12.
|
- Based on v1.11.14.12.
|
||||||
- Add `Open Threads in New Tab` option (off by default), which makes `[Reply]` links on threads and links in the 4chan X catalog open in a new tab.
|
- Add `Open Threads in New Tab` option (off by default), which makes `[Reply]` links on threads and links in the 4chan X catalog open in a new tab.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.15.0
|
// @version 1.11.15.1
|
||||||
// @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.15.0
|
// @version 1.11.15.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -415,7 +415,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.15.0',
|
VERSION: '1.11.15.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -9118,7 +9118,8 @@
|
|||||||
onDone: FCX.oekakiCB,
|
onDone: FCX.oekakiCB,
|
||||||
onCancel: function() {},
|
onCancel: function() {},
|
||||||
width: +document.querySelector('#qr [name=oekaki-width]').value,
|
width: +document.querySelector('#qr [name=oekaki-width]').value,
|
||||||
height: +document.querySelector('#qr [name=oekaki-height]').value
|
height: +document.querySelector('#qr [name=oekaki-height]').value,
|
||||||
|
bgColor: '#ffffff'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -9167,7 +9168,9 @@
|
|||||||
FCX.oekakiName = name;
|
FCX.oekakiName = name;
|
||||||
Tegaki.open({
|
Tegaki.open({
|
||||||
onDone: FCX.oekakiCB,
|
onDone: FCX.oekakiCB,
|
||||||
onCancel: function() {},
|
onCancel: function() {
|
||||||
|
return Tegaki.bgColor = '#ffffff';
|
||||||
|
},
|
||||||
width: file.naturalWidth || file.videoWidth,
|
width: file.naturalWidth || file.videoWidth,
|
||||||
height: file.naturalHeight || file.videoHeight,
|
height: file.naturalHeight || file.videoHeight,
|
||||||
bgColor: 'transparent'
|
bgColor: 'transparent'
|
||||||
@ -18481,6 +18484,9 @@
|
|||||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||||
" display: table-cell !important;\n" +
|
" display: table-cell !important;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"#tegaki-canvas {\n" +
|
||||||
|
" background: none;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Disable obnoxious captcha fade-in. */\n" +
|
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||||
"body > div:last-of-type {\n" +
|
"body > div:last-of-type {\n" +
|
||||||
" transition: none !important;\n" +
|
" transition: none !important;\n" +
|
||||||
|
|||||||
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.15.0
|
// @version 1.11.15.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -415,7 +415,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.15.0',
|
VERSION: '1.11.15.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -9118,7 +9118,8 @@
|
|||||||
onDone: FCX.oekakiCB,
|
onDone: FCX.oekakiCB,
|
||||||
onCancel: function() {},
|
onCancel: function() {},
|
||||||
width: +document.querySelector('#qr [name=oekaki-width]').value,
|
width: +document.querySelector('#qr [name=oekaki-width]').value,
|
||||||
height: +document.querySelector('#qr [name=oekaki-height]').value
|
height: +document.querySelector('#qr [name=oekaki-height]').value,
|
||||||
|
bgColor: '#ffffff'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -9167,7 +9168,9 @@
|
|||||||
FCX.oekakiName = name;
|
FCX.oekakiName = name;
|
||||||
Tegaki.open({
|
Tegaki.open({
|
||||||
onDone: FCX.oekakiCB,
|
onDone: FCX.oekakiCB,
|
||||||
onCancel: function() {},
|
onCancel: function() {
|
||||||
|
return Tegaki.bgColor = '#ffffff';
|
||||||
|
},
|
||||||
width: file.naturalWidth || file.videoWidth,
|
width: file.naturalWidth || file.videoWidth,
|
||||||
height: file.naturalHeight || file.videoHeight,
|
height: file.naturalHeight || file.videoHeight,
|
||||||
bgColor: 'transparent'
|
bgColor: 'transparent'
|
||||||
@ -18481,6 +18484,9 @@
|
|||||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||||
" display: table-cell !important;\n" +
|
" display: table-cell !important;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"#tegaki-canvas {\n" +
|
||||||
|
" background: none;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Disable obnoxious captcha fade-in. */\n" +
|
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||||
"body > div:last-of-type {\n" +
|
"body > div:last-of-type {\n" +
|
||||||
" transition: none !important;\n" +
|
" transition: none !important;\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.15.0
|
// @version 1.11.15.1
|
||||||
// @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.15.0
|
// @version 1.11.15.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -415,7 +415,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.15.0',
|
VERSION: '1.11.15.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -9118,7 +9118,8 @@
|
|||||||
onDone: FCX.oekakiCB,
|
onDone: FCX.oekakiCB,
|
||||||
onCancel: function() {},
|
onCancel: function() {},
|
||||||
width: +document.querySelector('#qr [name=oekaki-width]').value,
|
width: +document.querySelector('#qr [name=oekaki-width]').value,
|
||||||
height: +document.querySelector('#qr [name=oekaki-height]').value
|
height: +document.querySelector('#qr [name=oekaki-height]').value,
|
||||||
|
bgColor: '#ffffff'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -9167,7 +9168,9 @@
|
|||||||
FCX.oekakiName = name;
|
FCX.oekakiName = name;
|
||||||
Tegaki.open({
|
Tegaki.open({
|
||||||
onDone: FCX.oekakiCB,
|
onDone: FCX.oekakiCB,
|
||||||
onCancel: function() {},
|
onCancel: function() {
|
||||||
|
return Tegaki.bgColor = '#ffffff';
|
||||||
|
},
|
||||||
width: file.naturalWidth || file.videoWidth,
|
width: file.naturalWidth || file.videoWidth,
|
||||||
height: file.naturalHeight || file.videoHeight,
|
height: file.naturalHeight || file.videoHeight,
|
||||||
bgColor: 'transparent'
|
bgColor: 'transparent'
|
||||||
@ -18481,6 +18484,9 @@
|
|||||||
"#captchaContainerAlt td:nth-child(2) {\n" +
|
"#captchaContainerAlt td:nth-child(2) {\n" +
|
||||||
" display: table-cell !important;\n" +
|
" display: table-cell !important;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"#tegaki-canvas {\n" +
|
||||||
|
" background: none;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Disable obnoxious captcha fade-in. */\n" +
|
"/* Disable obnoxious captcha fade-in. */\n" +
|
||||||
"body > div:last-of-type {\n" +
|
"body > div:last-of-type {\n" +
|
||||||
" transition: none !important;\n" +
|
" transition: none !important;\n" +
|
||||||
|
|||||||
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.15.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.15.1' />
|
||||||
</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.15.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.15.1' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.15.0",
|
"version": "1.11.15.1",
|
||||||
"date": "2015-11-01T21:27:18.269Z"
|
"date": "2015-11-02T00:58:53.147Z"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user