Release 4chan X v1.13.1.4.

This commit is contained in:
ccd0 2016-11-09 15:20:44 -08:00
parent 29d78aa0f5
commit fa81e7c8ae
13 changed files with 27 additions and 18 deletions

View File

@ -4,6 +4,9 @@
### v1.13.1
**v1.13.1.4** *(2016-11-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.4/builds/4chan-X-noupdate.crx)]
- Fix deletion cooldown bug from v1.13.1.0.
**v1.13.1.3** *(2016-11-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.3/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.1.3/builds/4chan-X-noupdate.crx)]
- Merge v1.13.0.24: Fix bug from v1.13.0.0 causing lack of scroll bar when `Fit width` is disabled and images overflow screen.

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
// @version 1.13.1.3
// @version 1.13.1.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.3',
VERSION: '1.13.1.4',
NAMESPACE: '4chan X.',
boards: {}
};
@ -5198,7 +5198,6 @@ Board = (function() {
thread: c2.threads || 0,
reply: c2.replies || 0,
image: c2.images || 0,
deletion: 60,
thread_global: 300
};
if (d.cookie.indexOf('pass_enabled=1') >= 0) {
@ -21398,6 +21397,9 @@ QR = (function() {
(function() {
QR.cooldown = {
seconds: 0,
delays: {
deletion: 60
},
init: function() {
if (!Conf['Quick Reply']) {
return;
@ -21407,7 +21409,7 @@ QR = (function() {
},
setup: function() {
var delay, ref, type;
QR.cooldown.delays = g.BOARD.cooldowns();
$.extend(QR.cooldown.delays, g.BOARD.cooldowns());
QR.cooldown.maxDelay = 0;
ref = QR.cooldown.delays;
for (type in ref) {

Binary file not shown.

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.1.3
// @version 1.13.1.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.3',
VERSION: '1.13.1.4',
NAMESPACE: '4chan X.',
boards: {}
};
@ -5198,7 +5198,6 @@ Board = (function() {
thread: c2.threads || 0,
reply: c2.replies || 0,
image: c2.images || 0,
deletion: 60,
thread_global: 300
};
if (d.cookie.indexOf('pass_enabled=1') >= 0) {
@ -21398,6 +21397,9 @@ QR = (function() {
(function() {
QR.cooldown = {
seconds: 0,
delays: {
deletion: 60
},
init: function() {
if (!Conf['Quick Reply']) {
return;
@ -21407,7 +21409,7 @@ QR = (function() {
},
setup: function() {
var delay, ref, type;
QR.cooldown.delays = g.BOARD.cooldowns();
$.extend(QR.cooldown.delays, g.BOARD.cooldowns());
QR.cooldown.maxDelay = 0;
ref = QR.cooldown.delays;
for (type in ref) {

Binary file not shown.

View File

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

View File

@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
// @version 1.13.1.3
// @version 1.13.1.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -147,7 +147,7 @@ docSet = function() {
};
g = {
VERSION: '1.13.1.3',
VERSION: '1.13.1.4',
NAMESPACE: '4chan X.',
boards: {}
};
@ -5198,7 +5198,6 @@ Board = (function() {
thread: c2.threads || 0,
reply: c2.replies || 0,
image: c2.images || 0,
deletion: 60,
thread_global: 300
};
if (d.cookie.indexOf('pass_enabled=1') >= 0) {
@ -21398,6 +21397,9 @@ QR = (function() {
(function() {
QR.cooldown = {
seconds: 0,
delays: {
deletion: 60
},
init: function() {
if (!Conf['Quick Reply']) {
return;
@ -21407,7 +21409,7 @@ QR = (function() {
},
setup: function() {
var delay, ref, type;
QR.cooldown.delays = g.BOARD.cooldowns();
$.extend(QR.cooldown.delays, g.BOARD.cooldowns());
QR.cooldown.maxDelay = 0;
ref = QR.cooldown.delays;
for (type in ref) {

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

View File

@ -1,4 +1,4 @@
{
"version": "1.13.1.3",
"date": "2016-11-09T07:44:42.744Z"
"version": "1.13.1.4",
"date": "2016-11-09T23:17:32.436Z"
}