Release 4chan X v1.11.11.2.
This commit is contained in:
parent
2262ed5204
commit
a1119d7bc5
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.11
|
### v1.11.11
|
||||||
|
|
||||||
|
**v1.11.11.2** *(2015-09-30)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.11.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.11.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Merge v1.11.10.7: Show party hats in 4chan X catalog view.
|
||||||
|
|
||||||
**v1.11.11.1** *(2015-09-28)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.11.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.11.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.11.1** *(2015-09-28)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.11.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.11.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Resurrected quotelinks now open in the same tab, consistent with normal quotelink behavior.
|
- Resurrected quotelinks now open in the same tab, consistent with normal quotelink behavior.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.11.1
|
// @version 1.11.11.2
|
||||||
// @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.11.1
|
// @version 1.11.11.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -413,7 +413,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.11.1',
|
VERSION: '1.11.11.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -3269,12 +3269,16 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Index.hat = $('.board > .thread > img:first-child');
|
Index.hat = $('.board > .thread > img:first-child');
|
||||||
if (Index.hat && Index.nodes) {
|
if (Index.hat) {
|
||||||
ref6 = Index.nodes;
|
if (Index.nodes) {
|
||||||
for (u = 0, len3 = ref6.length; u < len3; u++) {
|
ref6 = Index.nodes;
|
||||||
threadRoot = ref6[u];
|
for (u = 0, len3 = ref6.length; u < len3; u++) {
|
||||||
$.prepend(threadRoot, Index.hat.cloneNode(false));
|
threadRoot = ref6[u];
|
||||||
|
$.prepend(threadRoot, Index.hat.cloneNode(false));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
$.addClass(doc, 'hats-enabled');
|
||||||
|
$.addStyle(".catalog-thread::after {background-image: url(" + Index.hat.src + ");}");
|
||||||
}
|
}
|
||||||
board = $('.board');
|
board = $('.board');
|
||||||
$.replace(board, Index.root);
|
$.replace(board, Index.root);
|
||||||
@ -18932,6 +18936,7 @@
|
|||||||
" margin: 0 2px 5px;\n" +
|
" margin: 0 2px 5px;\n" +
|
||||||
" word-wrap: break-word;\n" +
|
" word-wrap: break-word;\n" +
|
||||||
" vertical-align: top;\n" +
|
" vertical-align: top;\n" +
|
||||||
|
" position: relative;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
".catalog-thread > a {\n" +
|
".catalog-thread > a {\n" +
|
||||||
" flex-shrink: 0;\n" +
|
" flex-shrink: 0;\n" +
|
||||||
@ -19013,6 +19018,24 @@
|
|||||||
" display: inline-block;\n" +
|
" display: inline-block;\n" +
|
||||||
" max-width: 100%;\n" +
|
" max-width: 100%;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-thread::after {\n" +
|
||||||
|
" content: '';\n" +
|
||||||
|
" pointer-events: none;\n" +
|
||||||
|
" position: absolute;\n" +
|
||||||
|
" background-size: contain;\n" +
|
||||||
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-small .catalog-thread::after {\n" +
|
||||||
|
" left: -10px;\n" +
|
||||||
|
" top: -65px;\n" +
|
||||||
|
" width: 100px;\n" +
|
||||||
|
" height: 100px;\n" +
|
||||||
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-large .catalog-thread::after {\n" +
|
||||||
|
" left: -15px;\n" +
|
||||||
|
" top: -105px;\n" +
|
||||||
|
" width: 160px;\n" +
|
||||||
|
" height: 160px;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Announcement Hiding */\n" +
|
"/* Announcement Hiding */\n" +
|
||||||
":root.hide-announcement #globalMessage {\n" +
|
":root.hide-announcement #globalMessage {\n" +
|
||||||
" display: none;\n" +
|
" display: none;\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.11.1
|
// @version 1.11.11.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -413,7 +413,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.11.1',
|
VERSION: '1.11.11.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -3269,12 +3269,16 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Index.hat = $('.board > .thread > img:first-child');
|
Index.hat = $('.board > .thread > img:first-child');
|
||||||
if (Index.hat && Index.nodes) {
|
if (Index.hat) {
|
||||||
ref6 = Index.nodes;
|
if (Index.nodes) {
|
||||||
for (u = 0, len3 = ref6.length; u < len3; u++) {
|
ref6 = Index.nodes;
|
||||||
threadRoot = ref6[u];
|
for (u = 0, len3 = ref6.length; u < len3; u++) {
|
||||||
$.prepend(threadRoot, Index.hat.cloneNode(false));
|
threadRoot = ref6[u];
|
||||||
|
$.prepend(threadRoot, Index.hat.cloneNode(false));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
$.addClass(doc, 'hats-enabled');
|
||||||
|
$.addStyle(".catalog-thread::after {background-image: url(" + Index.hat.src + ");}");
|
||||||
}
|
}
|
||||||
board = $('.board');
|
board = $('.board');
|
||||||
$.replace(board, Index.root);
|
$.replace(board, Index.root);
|
||||||
@ -18932,6 +18936,7 @@
|
|||||||
" margin: 0 2px 5px;\n" +
|
" margin: 0 2px 5px;\n" +
|
||||||
" word-wrap: break-word;\n" +
|
" word-wrap: break-word;\n" +
|
||||||
" vertical-align: top;\n" +
|
" vertical-align: top;\n" +
|
||||||
|
" position: relative;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
".catalog-thread > a {\n" +
|
".catalog-thread > a {\n" +
|
||||||
" flex-shrink: 0;\n" +
|
" flex-shrink: 0;\n" +
|
||||||
@ -19013,6 +19018,24 @@
|
|||||||
" display: inline-block;\n" +
|
" display: inline-block;\n" +
|
||||||
" max-width: 100%;\n" +
|
" max-width: 100%;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-thread::after {\n" +
|
||||||
|
" content: '';\n" +
|
||||||
|
" pointer-events: none;\n" +
|
||||||
|
" position: absolute;\n" +
|
||||||
|
" background-size: contain;\n" +
|
||||||
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-small .catalog-thread::after {\n" +
|
||||||
|
" left: -10px;\n" +
|
||||||
|
" top: -65px;\n" +
|
||||||
|
" width: 100px;\n" +
|
||||||
|
" height: 100px;\n" +
|
||||||
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-large .catalog-thread::after {\n" +
|
||||||
|
" left: -15px;\n" +
|
||||||
|
" top: -105px;\n" +
|
||||||
|
" width: 160px;\n" +
|
||||||
|
" height: 160px;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Announcement Hiding */\n" +
|
"/* Announcement Hiding */\n" +
|
||||||
":root.hide-announcement #globalMessage {\n" +
|
":root.hide-announcement #globalMessage {\n" +
|
||||||
" display: none;\n" +
|
" display: none;\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.11.1
|
// @version 1.11.11.2
|
||||||
// @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.11.1
|
// @version 1.11.11.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -413,7 +413,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.11.1',
|
VERSION: '1.11.11.2',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -3269,12 +3269,16 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Index.hat = $('.board > .thread > img:first-child');
|
Index.hat = $('.board > .thread > img:first-child');
|
||||||
if (Index.hat && Index.nodes) {
|
if (Index.hat) {
|
||||||
ref6 = Index.nodes;
|
if (Index.nodes) {
|
||||||
for (u = 0, len3 = ref6.length; u < len3; u++) {
|
ref6 = Index.nodes;
|
||||||
threadRoot = ref6[u];
|
for (u = 0, len3 = ref6.length; u < len3; u++) {
|
||||||
$.prepend(threadRoot, Index.hat.cloneNode(false));
|
threadRoot = ref6[u];
|
||||||
|
$.prepend(threadRoot, Index.hat.cloneNode(false));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
$.addClass(doc, 'hats-enabled');
|
||||||
|
$.addStyle(".catalog-thread::after {background-image: url(" + Index.hat.src + ");}");
|
||||||
}
|
}
|
||||||
board = $('.board');
|
board = $('.board');
|
||||||
$.replace(board, Index.root);
|
$.replace(board, Index.root);
|
||||||
@ -18932,6 +18936,7 @@
|
|||||||
" margin: 0 2px 5px;\n" +
|
" margin: 0 2px 5px;\n" +
|
||||||
" word-wrap: break-word;\n" +
|
" word-wrap: break-word;\n" +
|
||||||
" vertical-align: top;\n" +
|
" vertical-align: top;\n" +
|
||||||
|
" position: relative;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
".catalog-thread > a {\n" +
|
".catalog-thread > a {\n" +
|
||||||
" flex-shrink: 0;\n" +
|
" flex-shrink: 0;\n" +
|
||||||
@ -19013,6 +19018,24 @@
|
|||||||
" display: inline-block;\n" +
|
" display: inline-block;\n" +
|
||||||
" max-width: 100%;\n" +
|
" max-width: 100%;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-thread::after {\n" +
|
||||||
|
" content: '';\n" +
|
||||||
|
" pointer-events: none;\n" +
|
||||||
|
" position: absolute;\n" +
|
||||||
|
" background-size: contain;\n" +
|
||||||
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-small .catalog-thread::after {\n" +
|
||||||
|
" left: -10px;\n" +
|
||||||
|
" top: -65px;\n" +
|
||||||
|
" width: 100px;\n" +
|
||||||
|
" height: 100px;\n" +
|
||||||
|
"}\n" +
|
||||||
|
":root.hats-enabled .catalog-large .catalog-thread::after {\n" +
|
||||||
|
" left: -15px;\n" +
|
||||||
|
" top: -105px;\n" +
|
||||||
|
" width: 160px;\n" +
|
||||||
|
" height: 160px;\n" +
|
||||||
|
"}\n" +
|
||||||
"/* Announcement Hiding */\n" +
|
"/* Announcement Hiding */\n" +
|
||||||
":root.hide-announcement #globalMessage {\n" +
|
":root.hide-announcement #globalMessage {\n" +
|
||||||
" display: none;\n" +
|
" display: none;\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.11.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.11.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.11.11.1' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.11.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -4,8 +4,8 @@
|
|||||||
"meta": {
|
"meta": {
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"fork": "ccd0",
|
"fork": "ccd0",
|
||||||
"version": "1.11.11.1",
|
"version": "1.11.11.2",
|
||||||
"date": "2015-09-28T17:54:23.729Z",
|
"date": "2015-10-01T05:12:58.214Z",
|
||||||
"page": "https://www.4chan-x.net/",
|
"page": "https://www.4chan-x.net/",
|
||||||
"downloads": "https://www.4chan-x.net/builds/",
|
"downloads": "https://www.4chan-x.net/builds/",
|
||||||
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",
|
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user