diff --git a/CHANGELOG.md b/CHANGELOG.md index 9652cea41..950a982f3 100755 --- a/CHANGELOG.md +++ b/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* diff --git a/LICENSE b/LICENSE index 56c761ecb..20415b622 100755 --- a/LICENSE +++ b/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 diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js index 8d5b78fe5..2bc1fb1c8 100755 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.7.2 +// @version 1.7.3 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index f072397df..9f449f211 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -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: {} }; diff --git a/builds/crx.crx b/builds/crx.crx index fb1a4ec4f..b09e66367 100644 Binary files a/builds/crx.crx and b/builds/crx.crx differ diff --git a/builds/crx/manifest.json b/builds/crx/manifest.json index a28722333..05050417e 100755 --- a/builds/crx/manifest.json +++ b/builds/crx/manifest.json @@ -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": { diff --git a/builds/crx/script.js b/builds/crx/script.js index 213677cbf..8bf0241b3 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -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: {} }; diff --git a/builds/updates.xml b/builds/updates.xml index 297567ff5..91f3bcbc5 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/latest.js b/latest.js index e0c83c476..e1f2e9b46 100755 --- a/latest.js +++ b/latest.js @@ -1 +1 @@ -postMessage({version:'1.7.2'},'*') +postMessage({version:'1.7.3'},'*') diff --git a/package.json b/package.json index 58dba390a..40349294f 100755 --- a/package.json +++ b/package.json @@ -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",