Release 4chan X v1.11.35.3.
This commit is contained in:
parent
8f91989f81
commit
6efce099d2
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.35
|
### v1.11.35
|
||||||
|
|
||||||
|
**v1.11.35.3** *(2016-06-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.3/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Make `Display Upload Progress` optional. Try disabling this option if you are having connection problems.
|
||||||
|
|
||||||
**v1.11.35.2** *(2016-06-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.35.2** *(2016-06-12)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.35.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Add @connect to userscript metadata to reduce annoying permission requests in Tampermonkey.
|
- Add @connect to userscript metadata to reduce annoying permission requests in Tampermonkey.
|
||||||
- Switch [complain] links back to https://www.4chan.org/feedback.
|
- Switch [complain] links back to https://www.4chan.org/feedback.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.35.2
|
// @version 1.11.35.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.35.2
|
// @version 1.11.35.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.35.2',
|
VERSION: '1.11.35.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -294,6 +294,7 @@ Config = (function() {
|
|||||||
'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1],
|
'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1],
|
||||||
'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1],
|
'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1],
|
||||||
'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1],
|
'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1],
|
||||||
|
'Show Upload Progress': [true, 'Track progress of file uploads as percentage in submit button.', 1],
|
||||||
'Cooldown': [true, 'Indicate the remaining time before posting again.', 1],
|
'Cooldown': [true, 'Indicate the remaining time before posting again.', 1],
|
||||||
'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1],
|
'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1],
|
||||||
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
||||||
@ -20294,8 +20295,10 @@ QR = (function() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
extra = {
|
extra = {
|
||||||
form: $.formData(formData),
|
form: $.formData(formData)
|
||||||
upCallbacks: {
|
};
|
||||||
|
if (Conf['Show Upload Progress']) {
|
||||||
|
extra.upCallbacks = {
|
||||||
onload: function() {
|
onload: function() {
|
||||||
QR.req.isUploadFinished = true;
|
QR.req.isUploadFinished = true;
|
||||||
QR.req.progress = '...';
|
QR.req.progress = '...';
|
||||||
@ -20305,8 +20308,8 @@ QR = (function() {
|
|||||||
QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%";
|
QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%";
|
||||||
return QR.status();
|
return QR.status();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
};
|
}
|
||||||
cb = function(response) {
|
cb = function(response) {
|
||||||
if (response != null) {
|
if (response != null) {
|
||||||
if (response.challenge != null) {
|
if (response.challenge != null) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.35.2
|
// @version 1.11.35.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.35.2',
|
VERSION: '1.11.35.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -294,6 +294,7 @@ Config = (function() {
|
|||||||
'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1],
|
'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1],
|
||||||
'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1],
|
'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1],
|
||||||
'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1],
|
'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1],
|
||||||
|
'Show Upload Progress': [true, 'Track progress of file uploads as percentage in submit button.', 1],
|
||||||
'Cooldown': [true, 'Indicate the remaining time before posting again.', 1],
|
'Cooldown': [true, 'Indicate the remaining time before posting again.', 1],
|
||||||
'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1],
|
'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1],
|
||||||
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
||||||
@ -20294,8 +20295,10 @@ QR = (function() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
extra = {
|
extra = {
|
||||||
form: $.formData(formData),
|
form: $.formData(formData)
|
||||||
upCallbacks: {
|
};
|
||||||
|
if (Conf['Show Upload Progress']) {
|
||||||
|
extra.upCallbacks = {
|
||||||
onload: function() {
|
onload: function() {
|
||||||
QR.req.isUploadFinished = true;
|
QR.req.isUploadFinished = true;
|
||||||
QR.req.progress = '...';
|
QR.req.progress = '...';
|
||||||
@ -20305,8 +20308,8 @@ QR = (function() {
|
|||||||
QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%";
|
QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%";
|
||||||
return QR.status();
|
return QR.status();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
};
|
}
|
||||||
cb = function(response) {
|
cb = function(response) {
|
||||||
if (response != null) {
|
if (response != null) {
|
||||||
if (response.challenge != null) {
|
if (response.challenge != null) {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.35.2
|
// @version 1.11.35.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.35.2
|
// @version 1.11.35.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -136,7 +136,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.35.2',
|
VERSION: '1.11.35.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -294,6 +294,7 @@ Config = (function() {
|
|||||||
'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1],
|
'Randomize Filename': [false, 'Set the filename to a random timestamp within the past year. Disabled on /f/.', 1],
|
||||||
'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1],
|
'Show New Thread Option in Threads': [false, 'Show the option to post a new / different thread from inside a thread.', 1],
|
||||||
'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1],
|
'Show Name and Subject': [false, 'Show the classic name, email, and subject fields in the QR, even when 4chan doesn\'t use them all.', 1],
|
||||||
|
'Show Upload Progress': [true, 'Track progress of file uploads as percentage in submit button.', 1],
|
||||||
'Cooldown': [true, 'Indicate the remaining time before posting again.', 1],
|
'Cooldown': [true, 'Indicate the remaining time before posting again.', 1],
|
||||||
'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1],
|
'Posting Success Notifications': [true, 'Show notifications on successful post creation or file uploading.', 1],
|
||||||
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
'Auto-load captcha': [false, 'Automatically load the captcha in the QR even if your post is empty.', 1],
|
||||||
@ -20294,8 +20295,10 @@ QR = (function() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
extra = {
|
extra = {
|
||||||
form: $.formData(formData),
|
form: $.formData(formData)
|
||||||
upCallbacks: {
|
};
|
||||||
|
if (Conf['Show Upload Progress']) {
|
||||||
|
extra.upCallbacks = {
|
||||||
onload: function() {
|
onload: function() {
|
||||||
QR.req.isUploadFinished = true;
|
QR.req.isUploadFinished = true;
|
||||||
QR.req.progress = '...';
|
QR.req.progress = '...';
|
||||||
@ -20305,8 +20308,8 @@ QR = (function() {
|
|||||||
QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%";
|
QR.req.progress = (Math.round(e.loaded / e.total * 100)) + "%";
|
||||||
return QR.status();
|
return QR.status();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
};
|
}
|
||||||
cb = function(response) {
|
cb = function(response) {
|
||||||
if (response != null) {
|
if (response != null) {
|
||||||
if (response.challenge != null) {
|
if (response.challenge != null) {
|
||||||
|
|||||||
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.35.2' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.35.3' />
|
||||||
</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.35.2' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.35.3' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.35.2",
|
"version": "1.11.35.3",
|
||||||
"date": "2016-06-12T04:25:29.728Z"
|
"date": "2016-06-12T11:49:39.164Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user