Release 4chan X v1.11.31.2.
This commit is contained in:
parent
bff455b5a9
commit
0a4c283be2
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
||||
|
||||
### v1.11.31
|
||||
|
||||
**v1.11.31.2** *(2016-04-25)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.31.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.31.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Fix regression from v1.11.31.0 that caused 4chan X to stop working in some userscript engines.
|
||||
|
||||
**v1.11.31.1** *(2016-04-23)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.31.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.31.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Fix regression from v1.11.31.0 causing "Post successful" notifications not to appear.
|
||||
- Fix fullscreen for Vimeo embeds.
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.31.1
|
||||
// @version 1.11.31.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.31.1
|
||||
// @version 1.11.31.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -121,15 +121,20 @@
|
||||
|
||||
var $, $$, Anonymize, AntiAutoplay, ArchiveLink, Banner, Board, Build, CSS, Callbacks, Captcha, CatalogLinks, CatalogThread, Config, Connection, CrossOrigin, CustomCSS, DataBoard, DeleteLink, DownloadLink, Embedding, ExpandComment, ExpandThread, FappeTyme, Favicon, Fetcher, FileInfo, Filter, Flash, Fourchan, Gallery, Get, Header, IDColor, IDHighlight, ImageCommon, ImageExpand, ImageHover, ImageLoader, Index, Keybinds, Linkify, Main, MarkNewIPs, Menu, Metadata, Nav, NormalizeURL, Notice, PSAHiding, PassLink, Polyfill, Post, PostHiding, PostSuccessful, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, RandomAccessList, Recursive, Redirect, RelativeDates, RemoveSpoilers, ReplyPruning, Report, ReportLink, RevealSpoilers, Sauce, Settings, ShimSet, SimpleDict, Thread, ThreadExcerpt, ThreadHiding, ThreadLinks, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, Volume;
|
||||
|
||||
var Conf, E, c, d, doc, g;
|
||||
var Conf, E, c, d, doc, docSet, g;
|
||||
|
||||
Conf = {};
|
||||
c = console;
|
||||
d = document;
|
||||
doc = d.documentElement;
|
||||
|
||||
// Workaround for userscript managers that run script before document.documentElement is set
|
||||
docSet = function() {
|
||||
return (doc = d.documentElement);
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.31.1',
|
||||
VERSION: '1.11.31.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -22198,10 +22203,7 @@ Main = (function() {
|
||||
}
|
||||
items['previousversion'] = void 0;
|
||||
return $.get(items, function(items) {
|
||||
return $.asap((function() {
|
||||
var doc;
|
||||
return doc = d.documentElement;
|
||||
}), function() {
|
||||
return $.asap(docSet, function() {
|
||||
var ref1, val;
|
||||
if ($.cantSet) {
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.31.1
|
||||
// @version 1.11.31.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -121,15 +121,20 @@
|
||||
|
||||
var $, $$, Anonymize, AntiAutoplay, ArchiveLink, Banner, Board, Build, CSS, Callbacks, Captcha, CatalogLinks, CatalogThread, Config, Connection, CrossOrigin, CustomCSS, DataBoard, DeleteLink, DownloadLink, Embedding, ExpandComment, ExpandThread, FappeTyme, Favicon, Fetcher, FileInfo, Filter, Flash, Fourchan, Gallery, Get, Header, IDColor, IDHighlight, ImageCommon, ImageExpand, ImageHover, ImageLoader, Index, Keybinds, Linkify, Main, MarkNewIPs, Menu, Metadata, Nav, NormalizeURL, Notice, PSAHiding, PassLink, Polyfill, Post, PostHiding, PostSuccessful, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, RandomAccessList, Recursive, Redirect, RelativeDates, RemoveSpoilers, ReplyPruning, Report, ReportLink, RevealSpoilers, Sauce, Settings, ShimSet, SimpleDict, Thread, ThreadExcerpt, ThreadHiding, ThreadLinks, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, Volume;
|
||||
|
||||
var Conf, E, c, d, doc, g;
|
||||
var Conf, E, c, d, doc, docSet, g;
|
||||
|
||||
Conf = {};
|
||||
c = console;
|
||||
d = document;
|
||||
doc = d.documentElement;
|
||||
|
||||
// Workaround for userscript managers that run script before document.documentElement is set
|
||||
docSet = function() {
|
||||
return (doc = d.documentElement);
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.31.1',
|
||||
VERSION: '1.11.31.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -22198,10 +22203,7 @@ Main = (function() {
|
||||
}
|
||||
items['previousversion'] = void 0;
|
||||
return $.get(items, function(items) {
|
||||
return $.asap((function() {
|
||||
var doc;
|
||||
return doc = d.documentElement;
|
||||
}), function() {
|
||||
return $.asap(docSet, function() {
|
||||
var ref1, val;
|
||||
if ($.cantSet) {
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.31.1
|
||||
// @version 1.11.31.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.31.1
|
||||
// @version 1.11.31.2
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -121,15 +121,20 @@
|
||||
|
||||
var $, $$, Anonymize, AntiAutoplay, ArchiveLink, Banner, Board, Build, CSS, Callbacks, Captcha, CatalogLinks, CatalogThread, Config, Connection, CrossOrigin, CustomCSS, DataBoard, DeleteLink, DownloadLink, Embedding, ExpandComment, ExpandThread, FappeTyme, Favicon, Fetcher, FileInfo, Filter, Flash, Fourchan, Gallery, Get, Header, IDColor, IDHighlight, ImageCommon, ImageExpand, ImageHover, ImageLoader, Index, Keybinds, Linkify, Main, MarkNewIPs, Menu, Metadata, Nav, NormalizeURL, Notice, PSAHiding, PassLink, Polyfill, Post, PostHiding, PostSuccessful, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, RandomAccessList, Recursive, Redirect, RelativeDates, RemoveSpoilers, ReplyPruning, Report, ReportLink, RevealSpoilers, Sauce, Settings, ShimSet, SimpleDict, Thread, ThreadExcerpt, ThreadHiding, ThreadLinks, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, Volume;
|
||||
|
||||
var Conf, E, c, d, doc, g;
|
||||
var Conf, E, c, d, doc, docSet, g;
|
||||
|
||||
Conf = {};
|
||||
c = console;
|
||||
d = document;
|
||||
doc = d.documentElement;
|
||||
|
||||
// Workaround for userscript managers that run script before document.documentElement is set
|
||||
docSet = function() {
|
||||
return (doc = d.documentElement);
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.31.1',
|
||||
VERSION: '1.11.31.2',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -22198,10 +22203,7 @@ Main = (function() {
|
||||
}
|
||||
items['previousversion'] = void 0;
|
||||
return $.get(items, function(items) {
|
||||
return $.asap((function() {
|
||||
var doc;
|
||||
return doc = d.documentElement;
|
||||
}), function() {
|
||||
return $.asap(docSet, function() {
|
||||
var ref1, val;
|
||||
if ($.cantSet) {
|
||||
|
||||
|
||||
Binary file not shown.
@ -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.31.1' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.31.2' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -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.31.1' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.31.2' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.31.1",
|
||||
"date": "2016-04-23T08:49:07.223Z"
|
||||
"version": "1.11.31.2",
|
||||
"date": "2016-04-25T04:09:27.296Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user