Release 4chan X v1.11.11.2.

This commit is contained in:
ccd0 2015-09-30 22:13:49 -07:00
parent 2262ed5204
commit a1119d7bc5
13 changed files with 99 additions and 27 deletions

View File

@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### 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")]
- Resurrected quotelinks now open in the same tab, consistent with normal quotelink behavior.

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X beta
// @version 1.11.11.1
// @version 1.11.11.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -413,7 +413,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.11.1',
VERSION: '1.11.11.2',
NAMESPACE: '4chan X.',
boards: {}
};
@ -3269,12 +3269,16 @@
return;
}
Index.hat = $('.board > .thread > img:first-child');
if (Index.hat && Index.nodes) {
ref6 = Index.nodes;
for (u = 0, len3 = ref6.length; u < len3; u++) {
threadRoot = ref6[u];
$.prepend(threadRoot, Index.hat.cloneNode(false));
if (Index.hat) {
if (Index.nodes) {
ref6 = Index.nodes;
for (u = 0, len3 = ref6.length; u < len3; u++) {
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');
$.replace(board, Index.root);
@ -18932,6 +18936,7 @@
" margin: 0 2px 5px;\n" +
" word-wrap: break-word;\n" +
" vertical-align: top;\n" +
" position: relative;\n" +
"}\n" +
".catalog-thread > a {\n" +
" flex-shrink: 0;\n" +
@ -19013,6 +19018,24 @@
" display: inline-block;\n" +
" max-width: 100%;\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" +
":root.hide-announcement #globalMessage {\n" +
" display: none;\n" +

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.11.11.1
// @version 1.11.11.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -413,7 +413,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.11.1',
VERSION: '1.11.11.2',
NAMESPACE: '4chan X.',
boards: {}
};
@ -3269,12 +3269,16 @@
return;
}
Index.hat = $('.board > .thread > img:first-child');
if (Index.hat && Index.nodes) {
ref6 = Index.nodes;
for (u = 0, len3 = ref6.length; u < len3; u++) {
threadRoot = ref6[u];
$.prepend(threadRoot, Index.hat.cloneNode(false));
if (Index.hat) {
if (Index.nodes) {
ref6 = Index.nodes;
for (u = 0, len3 = ref6.length; u < len3; u++) {
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');
$.replace(board, Index.root);
@ -18932,6 +18936,7 @@
" margin: 0 2px 5px;\n" +
" word-wrap: break-word;\n" +
" vertical-align: top;\n" +
" position: relative;\n" +
"}\n" +
".catalog-thread > a {\n" +
" flex-shrink: 0;\n" +
@ -19013,6 +19018,24 @@
" display: inline-block;\n" +
" max-width: 100%;\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" +
":root.hide-announcement #globalMessage {\n" +
" display: none;\n" +

Binary file not shown.

View File

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

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
// @version 1.11.11.1
// @version 1.11.11.2
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@ -413,7 +413,7 @@
doc = d.documentElement;
g = {
VERSION: '1.11.11.1',
VERSION: '1.11.11.2',
NAMESPACE: '4chan X.',
boards: {}
};
@ -3269,12 +3269,16 @@
return;
}
Index.hat = $('.board > .thread > img:first-child');
if (Index.hat && Index.nodes) {
ref6 = Index.nodes;
for (u = 0, len3 = ref6.length; u < len3; u++) {
threadRoot = ref6[u];
$.prepend(threadRoot, Index.hat.cloneNode(false));
if (Index.hat) {
if (Index.nodes) {
ref6 = Index.nodes;
for (u = 0, len3 = ref6.length; u < len3; u++) {
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');
$.replace(board, Index.root);
@ -18932,6 +18936,7 @@
" margin: 0 2px 5px;\n" +
" word-wrap: break-word;\n" +
" vertical-align: top;\n" +
" position: relative;\n" +
"}\n" +
".catalog-thread > a {\n" +
" flex-shrink: 0;\n" +
@ -19013,6 +19018,24 @@
" display: inline-block;\n" +
" max-width: 100%;\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" +
":root.hide-announcement #globalMessage {\n" +
" display: none;\n" +

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

View File

@ -4,8 +4,8 @@
"meta": {
"name": "4chan X",
"fork": "ccd0",
"version": "1.11.11.1",
"date": "2015-09-28T17:54:23.729Z",
"version": "1.11.11.2",
"date": "2015-10-01T05:12:58.214Z",
"page": "https://www.4chan-x.net/",
"downloads": "https://www.4chan-x.net/builds/",
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",