diff --git a/CHANGELOG.md b/CHANGELOG.md index 78af32a53..08b0ca16f 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### v1.7.5 +*2014-04-09* +**ccd0** +- Add WebM support to gallery (currently no controls). +- Add PDF support to gallery, disabled by default. Enable with `PDF in Gallery`. + ### v1.7.4 *2014-04-08* diff --git a/LICENSE b/LICENSE index 69c3b17f6..3fb6b3131 100755 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* 4chan X - Version 1.7.4 - 2014-04-09 +* 4chan X - Version 1.7.5 - 2014-04-09 * * 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 20ec52e87..331118141 100755 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.7.4 +// @version 1.7.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index f7390239b..3a357e5c7 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.4 +// @version 1.7.5 // @minGMVer 1.14 // @minFFVer 26 // @namespace 4chan-X @@ -24,7 +24,7 @@ // ==/UserScript== /* -* 4chan X - Version 1.7.4 - 2014-04-09 +* 4chan X - Version 1.7.5 - 2014-04-09 * * Licensed under the MIT license. * https://github.com/ccd0/4chan-x/blob/master/LICENSE @@ -174,7 +174,7 @@ 'Image Expansion': [true, 'Expand images / videos.'], 'Image Hover': [true, 'Show full image / video on mouseover.'], 'Gallery': [true, 'Adds a simple and cute image gallery.'], - 'PDF in Gallery': [false, 'Attempt to show PDF files in gallery.'], + 'PDF in Gallery': [false, 'Show PDF files in gallery.'], 'Sauce': [true, 'Add sauce links to images.'], 'Reveal Spoiler Thumbnails': [false, 'Replace spoiler thumbnails with the original image.'], 'Replace GIF': [false, 'Replace thumbnail of gifs with its actual image.'], @@ -370,7 +370,7 @@ doc = d.documentElement; g = { - VERSION: '1.7.4', + VERSION: '1.7.5', NAMESPACE: '4chan X.', boards: {} }; diff --git a/builds/crx.crx b/builds/crx.crx index 6f1017e19..10fcc766e 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 5474372f5..8e088662e 100755 --- a/builds/crx/manifest.json +++ b/builds/crx/manifest.json @@ -1,6 +1,6 @@ { "name": "4chan X", - "version": "1.7.4", + "version": "1.7.5", "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 361db8009..2bb009b31 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* 4chan X - Version 1.7.4 - 2014-04-09 +* 4chan X - Version 1.7.5 - 2014-04-09 * * Licensed under the MIT license. * https://github.com/ccd0/4chan-x/blob/master/LICENSE @@ -150,7 +150,7 @@ 'Image Expansion': [true, 'Expand images / videos.'], 'Image Hover': [true, 'Show full image / video on mouseover.'], 'Gallery': [true, 'Adds a simple and cute image gallery.'], - 'PDF in Gallery': [false, 'Attempt to show PDF files in gallery.'], + 'PDF in Gallery': [false, 'Show PDF files in gallery.'], 'Sauce': [true, 'Add sauce links to images.'], 'Reveal Spoiler Thumbnails': [false, 'Replace spoiler thumbnails with the original image.'], 'Replace GIF': [false, 'Replace thumbnail of gifs with its actual image.'], @@ -346,7 +346,7 @@ doc = d.documentElement; g = { - VERSION: '1.7.4', + VERSION: '1.7.5', NAMESPACE: '4chan X.', boards: {} }; diff --git a/builds/updates.xml b/builds/updates.xml index 7fddc1a3a..e4cf9342c 100644 --- a/builds/updates.xml +++ b/builds/updates.xml @@ -1,7 +1,7 @@ - + diff --git a/latest.js b/latest.js index b7e379f49..2266efef4 100755 --- a/latest.js +++ b/latest.js @@ -1 +1 @@ -postMessage({version:'1.7.4'},'*') +postMessage({version:'1.7.5'},'*') diff --git a/package.json b/package.json index fafadc88d..be58424c9 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "4chan-X", - "version": "1.7.4", + "version": "1.7.5", "description": "Cross-browser userscript for maximum lurking on 4chan.", "meta": { "name": "4chan X",