Release 4chan X v1.13.8.2.
This commit is contained in:
parent
497a980a92
commit
41a74451c1
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.13.8
|
### v1.13.8
|
||||||
|
|
||||||
|
**v1.13.8.2** *(2017-02-11)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.2/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Update for recent site changes. Fixes quote preview on archive page.
|
||||||
|
|
||||||
**v1.13.8.1** *(2017-02-10)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.1/builds/4chan-X-noupdate.crx)]
|
**v1.13.8.1** *(2017-02-10)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.13.8.1/builds/4chan-X-noupdate.crx)]
|
||||||
- Fix bug from v1.13.8.0 causing v1 captcha sometimes not to reload when needed.
|
- Fix bug from v1.13.8.0 causing v1 captcha sometimes not to reload when needed.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.13.8.1
|
// @version 1.13.8.2
|
||||||
// @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.13.8.1
|
// @version 1.13.8.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -151,7 +151,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.8.1',
|
VERSION: '1.13.8.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -8641,7 +8641,7 @@ Get = (function() {
|
|||||||
path = link.pathname.split(/\/+/);
|
path = link.pathname.split(/\/+/);
|
||||||
boardID = path[1];
|
boardID = path[1];
|
||||||
threadID = path[3];
|
threadID = path[3];
|
||||||
postID = link.hash.slice(2);
|
postID = link.hash ? link.hash.slice(2) : path[3];
|
||||||
} else {
|
} else {
|
||||||
ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID;
|
ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID;
|
||||||
threadID || (threadID = 0);
|
threadID || (threadID = 0);
|
||||||
@ -13286,11 +13286,7 @@ ImageHost = (function() {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
host: function() {
|
host: function() {
|
||||||
if (this.useFaster) {
|
return 'i.4cdn.org';
|
||||||
return 'i.4cdn.org';
|
|
||||||
} else {
|
|
||||||
return 'is.4chan.org';
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
flashHost: function() {
|
flashHost: function() {
|
||||||
return 'i.4cdn.org';
|
return 'i.4cdn.org';
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.8.1
|
// @version 1.13.8.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -151,7 +151,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.8.1',
|
VERSION: '1.13.8.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -8641,7 +8641,7 @@ Get = (function() {
|
|||||||
path = link.pathname.split(/\/+/);
|
path = link.pathname.split(/\/+/);
|
||||||
boardID = path[1];
|
boardID = path[1];
|
||||||
threadID = path[3];
|
threadID = path[3];
|
||||||
postID = link.hash.slice(2);
|
postID = link.hash ? link.hash.slice(2) : path[3];
|
||||||
} else {
|
} else {
|
||||||
ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID;
|
ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID;
|
||||||
threadID || (threadID = 0);
|
threadID || (threadID = 0);
|
||||||
@ -13286,11 +13286,7 @@ ImageHost = (function() {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
host: function() {
|
host: function() {
|
||||||
if (this.useFaster) {
|
return 'i.4cdn.org';
|
||||||
return 'i.4cdn.org';
|
|
||||||
} else {
|
|
||||||
return 'is.4chan.org';
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
flashHost: function() {
|
flashHost: function() {
|
||||||
return 'i.4cdn.org';
|
return 'i.4cdn.org';
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.13.8.1
|
// @version 1.13.8.2
|
||||||
// @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.13.8.1
|
// @version 1.13.8.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -151,7 +151,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.13.8.1',
|
VERSION: '1.13.8.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -8641,7 +8641,7 @@ Get = (function() {
|
|||||||
path = link.pathname.split(/\/+/);
|
path = link.pathname.split(/\/+/);
|
||||||
boardID = path[1];
|
boardID = path[1];
|
||||||
threadID = path[3];
|
threadID = path[3];
|
||||||
postID = link.hash.slice(2);
|
postID = link.hash ? link.hash.slice(2) : path[3];
|
||||||
} else {
|
} else {
|
||||||
ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID;
|
ref = link.dataset, boardID = ref.boardID, threadID = ref.threadID, postID = ref.postID;
|
||||||
threadID || (threadID = 0);
|
threadID || (threadID = 0);
|
||||||
@ -13286,11 +13286,7 @@ ImageHost = (function() {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
host: function() {
|
host: function() {
|
||||||
if (this.useFaster) {
|
return 'i.4cdn.org';
|
||||||
return 'i.4cdn.org';
|
|
||||||
} else {
|
|
||||||
return 'is.4chan.org';
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
flashHost: function() {
|
flashHost: function() {
|
||||||
return 'i.4cdn.org';
|
return 'i.4cdn.org';
|
||||||
|
|||||||
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.13.8.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.13.8.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.13.8.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.13.8.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.13.8.1",
|
"version": "1.13.8.2",
|
||||||
"date": "2017-02-10T19:44:51.235Z"
|
"date": "2017-02-11T04:29:13.570Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user