Release 4chan X v1.7.3.
This commit is contained in:
parent
c4962b015a
commit
1dc57bda8f
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,3 +1,13 @@
|
||||
### v1.7.3
|
||||
*2014-04-07*
|
||||
|
||||
**ccd0**
|
||||
- Fix behavior of .webm videos expanded within inline quotes.
|
||||
- Contract thumbnails in quoted previews to avoid crashes caused by videos in quoted previews on some systems.
|
||||
- Change interface when both `Autoplay` and `Show Controls` are unchecked. In this mode, videos are now activated by clicking on them. The first click expands the video, the second click plays the video, and the third click contracts it.
|
||||
- Add item `Expand videos` in `Image Expansion` menu, which enables expansion of videos by `Expand All Images`. Disabled by default. Previously videos were expanded.
|
||||
- Disable autoplay for videos expanded by `Expand All Images`.
|
||||
|
||||
### v1.7.2
|
||||
*2014-04-07*
|
||||
|
||||
@ -38,13 +48,15 @@
|
||||
**ccd0**:
|
||||
- Support hover for .webm videos.
|
||||
- Add .webm to supported posting types.
|
||||
- Add option to enable/disable sound.
|
||||
- Add option `Allow Sound` to enable/disable sound. Enabled by default.
|
||||
|
||||
## v1.5.0
|
||||
*2014-04-04*
|
||||
|
||||
**ccd0**:
|
||||
- Support expansion of .webm videos.
|
||||
- New setting: `Autoplay`, enabled by default. Causes videos to play immediately when expanded.
|
||||
- New setting: `Show Controls`, enabled by default. Shows native controls on videos.
|
||||
|
||||
### v1.4.7
|
||||
*2014-04-03*
|
||||
|
||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* 4chan X - Version 1.7.2 - 2014-04-07
|
||||
* 4chan X - Version 1.7.3 - 2014-04-07
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.7.2
|
||||
// @version 1.7.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.7.2
|
||||
// @version 1.7.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -24,7 +24,7 @@
|
||||
// ==/UserScript==
|
||||
|
||||
/*
|
||||
* 4chan X - Version 1.7.2 - 2014-04-07
|
||||
* 4chan X - Version 1.7.3 - 2014-04-07
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
@ -369,7 +369,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.7.2',
|
||||
VERSION: '1.7.3',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
|
||||
BIN
builds/crx.crx
BIN
builds/crx.crx
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "4chan X",
|
||||
"version": "1.7.2",
|
||||
"version": "1.7.3",
|
||||
"manifest_version": 2,
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"icons": {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// Generated by CoffeeScript
|
||||
/*
|
||||
* 4chan X - Version 1.7.2 - 2014-04-07
|
||||
* 4chan X - Version 1.7.3 - 2014-04-07
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
@ -345,7 +345,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.7.2',
|
||||
VERSION: '1.7.3',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
|
||||
@ -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://ccd0.github.io/4chan-x/builds/crx.crx' version='1.7.2' />
|
||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/crx.crx' version='1.7.3' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1 +1 @@
|
||||
postMessage({version:'1.7.2'},'*')
|
||||
postMessage({version:'1.7.3'},'*')
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "4chan-X",
|
||||
"version": "1.7.2",
|
||||
"version": "1.7.3",
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"meta": {
|
||||
"name": "4chan X",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user