Release 4chan X v1.11.32.1.
This commit is contained in:
parent
5dd9b7da3b
commit
8b63b22be0
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
|||||||
|
|
||||||
### v1.11.32
|
### v1.11.32
|
||||||
|
|
||||||
|
**v1.11.32.1** *(2016-05-01)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Support embedding of .ogg files as either video or audio, as appropriate, and add embedding for .oga files.
|
||||||
|
|
||||||
**v1.11.32.0** *(2016-04-30)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.0/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.32.0** *(2016-04-30)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.32.0/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Based on v1.11.31.4.
|
- Based on v1.11.31.4.
|
||||||
- Support searching the archive by MD5 on /f/, and using MD5 in Sauce links there.
|
- Support searching the archive by MD5 on /f/, and using MD5 in Sauce links there.
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.32.0
|
// @version 1.11.32.1
|
||||||
// @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.32.0
|
// @version 1.11.32.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -134,7 +134,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.32.0',
|
VERSION: '1.11.32.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -13091,7 +13091,7 @@ Embedding = (function() {
|
|||||||
ordered_types: [
|
ordered_types: [
|
||||||
{
|
{
|
||||||
key: 'audio',
|
key: 'audio',
|
||||||
regExp: /\.(?:mp3|ogg|wav)(?:\?|$)/i,
|
regExp: /\.(?:mp3|oga|wav)(?:\?|$)/i,
|
||||||
style: '',
|
style: '',
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
return $.el('audio', {
|
return $.el('audio', {
|
||||||
@ -13423,15 +13423,25 @@ Embedding = (function() {
|
|||||||
dummy: true
|
dummy: true
|
||||||
}, {
|
}, {
|
||||||
key: 'video',
|
key: 'video',
|
||||||
regExp: /\.(?:ogv|webm|mp4)(?:\?|$)/i,
|
regExp: /\.(?:og[gv]|webm|mp4)(?:\?|$)/i,
|
||||||
style: 'max-width: 80vw; max-height: 80vh;',
|
style: 'max-width: 80vw; max-height: 80vh;',
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
return $.el('video', {
|
var el;
|
||||||
|
el = $.el('video', {
|
||||||
|
hidden: true,
|
||||||
controls: true,
|
controls: true,
|
||||||
preload: 'auto',
|
preload: 'auto',
|
||||||
src: a.dataset.href,
|
src: a.dataset.href,
|
||||||
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
|
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
|
||||||
});
|
});
|
||||||
|
$.on(el, 'loadedmetadata', function() {
|
||||||
|
if (el.videoHeight === 0 && el.parentNode) {
|
||||||
|
return $.replace(el, Embedding.types.audio.el(a));
|
||||||
|
} else {
|
||||||
|
return el.hidden = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return el;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.32.0
|
// @version 1.11.32.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -134,7 +134,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.32.0',
|
VERSION: '1.11.32.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -13091,7 +13091,7 @@ Embedding = (function() {
|
|||||||
ordered_types: [
|
ordered_types: [
|
||||||
{
|
{
|
||||||
key: 'audio',
|
key: 'audio',
|
||||||
regExp: /\.(?:mp3|ogg|wav)(?:\?|$)/i,
|
regExp: /\.(?:mp3|oga|wav)(?:\?|$)/i,
|
||||||
style: '',
|
style: '',
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
return $.el('audio', {
|
return $.el('audio', {
|
||||||
@ -13423,15 +13423,25 @@ Embedding = (function() {
|
|||||||
dummy: true
|
dummy: true
|
||||||
}, {
|
}, {
|
||||||
key: 'video',
|
key: 'video',
|
||||||
regExp: /\.(?:ogv|webm|mp4)(?:\?|$)/i,
|
regExp: /\.(?:og[gv]|webm|mp4)(?:\?|$)/i,
|
||||||
style: 'max-width: 80vw; max-height: 80vh;',
|
style: 'max-width: 80vw; max-height: 80vh;',
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
return $.el('video', {
|
var el;
|
||||||
|
el = $.el('video', {
|
||||||
|
hidden: true,
|
||||||
controls: true,
|
controls: true,
|
||||||
preload: 'auto',
|
preload: 'auto',
|
||||||
src: a.dataset.href,
|
src: a.dataset.href,
|
||||||
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
|
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
|
||||||
});
|
});
|
||||||
|
$.on(el, 'loadedmetadata', function() {
|
||||||
|
if (el.videoHeight === 0 && el.parentNode) {
|
||||||
|
return $.replace(el, Embedding.types.audio.el(a));
|
||||||
|
} else {
|
||||||
|
return el.hidden = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return el;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.32.0
|
// @version 1.11.32.1
|
||||||
// @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.32.0
|
// @version 1.11.32.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -134,7 +134,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.32.0',
|
VERSION: '1.11.32.1',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -13091,7 +13091,7 @@ Embedding = (function() {
|
|||||||
ordered_types: [
|
ordered_types: [
|
||||||
{
|
{
|
||||||
key: 'audio',
|
key: 'audio',
|
||||||
regExp: /\.(?:mp3|ogg|wav)(?:\?|$)/i,
|
regExp: /\.(?:mp3|oga|wav)(?:\?|$)/i,
|
||||||
style: '',
|
style: '',
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
return $.el('audio', {
|
return $.el('audio', {
|
||||||
@ -13423,15 +13423,25 @@ Embedding = (function() {
|
|||||||
dummy: true
|
dummy: true
|
||||||
}, {
|
}, {
|
||||||
key: 'video',
|
key: 'video',
|
||||||
regExp: /\.(?:ogv|webm|mp4)(?:\?|$)/i,
|
regExp: /\.(?:og[gv]|webm|mp4)(?:\?|$)/i,
|
||||||
style: 'max-width: 80vw; max-height: 80vh;',
|
style: 'max-width: 80vw; max-height: 80vh;',
|
||||||
el: function(a) {
|
el: function(a) {
|
||||||
return $.el('video', {
|
var el;
|
||||||
|
el = $.el('video', {
|
||||||
|
hidden: true,
|
||||||
controls: true,
|
controls: true,
|
||||||
preload: 'auto',
|
preload: 'auto',
|
||||||
src: a.dataset.href,
|
src: a.dataset.href,
|
||||||
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
|
loop: /^https?:\/\/i\.4cdn\.org\//.test(a.dataset.href)
|
||||||
});
|
});
|
||||||
|
$.on(el, 'loadedmetadata', function() {
|
||||||
|
if (el.videoHeight === 0 && el.parentNode) {
|
||||||
|
return $.replace(el, Embedding.types.audio.el(a));
|
||||||
|
} else {
|
||||||
|
return el.hidden = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return el;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
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.32.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.32.1' />
|
||||||
</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.32.0' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.32.1' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.11.32.0",
|
"version": "1.11.32.1",
|
||||||
"date": "2016-04-30T17:46:41.502Z"
|
"date": "2016-05-01T00:18:29.034Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user