diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b02503c3..a9763ad15 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,21 @@ +### v1.2.33 +*2013-08-18* + **MayhemYDG**: -- **New feature**: `Desktop Notifications` - - Enabled by default, but you will have to grant your browser permissions to display them or disable them altogether:
- ![authorize or disable](img/changelog/3.9.0/0.png) - - Clicking on a notification will bring up the relevant tab. (Does not work on Firefox unfortunately, [see bug 874050](https://bugzilla.mozilla.org/show_bug.cgi?id=874050).) - - Notifications will appear when someone quotes you, clicking such notification will also scroll the thread to the relevant post. - - Notifications will appear for posting errors instead of alert popups. - - Opera does *not* support desktop notifications yet. +- Added new option: `Desktop Notifications` +- Implement filename editing +- Replace shortcuts with icons -![filename editing](img/changelog/3.8.0/0.gif) +**seaweedchan**: +- Made shortcut icons optional under the Header submenu, disabled by default, as well as edited some of the icons +- Disabled desktop notifications by default +- Edited filename editing to require a ctrl+click, so otherwise the file input will look and behave the same as before +- Added `.you` class to quotelinks that quote you -- The QR now allows you to edit the filename on the fly: +**Zixaphir**: +- Forked and minimized the Font Awesome CSS used for the shortcut icons +- Implemented the bulk of the notifications and shortcut icons +- Some more linkifier improvements ### v1.2.32 *2013-08-16* diff --git a/LICENSE b/LICENSE index fdff1146f..f1a6dc50c 100755 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* 4chan X - Version 1.2.32 - 2013-08-18 +* 4chan X - Version 1.2.33 - 2013-08-18 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js index 898b5e749..aa86d40d9 100755 --- a/builds/4chan-X.meta.js +++ b/builds/4chan-X.meta.js @@ -1,6 +1,6 @@ // ==UserScript== // @name 4chan X -// @version 1.2.32 +// @version 1.2.33 // @minGMVer 1.13 // @minFFVer 22 // @namespace 4chan-X diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 3959b9939..56cdf6bc9 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.2.32 +// @version 1.2.33 // @minGMVer 1.13 // @minFFVer 22 // @namespace 4chan-X @@ -22,7 +22,7 @@ // ==/UserScript== /* -* 4chan X - Version 1.2.32 - 2013-08-18 +* 4chan X - Version 1.2.33 - 2013-08-18 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE @@ -323,7 +323,7 @@ doc = d.documentElement; g = { - VERSION: '1.2.32', + VERSION: '1.2.33', NAMESPACE: '4chan X.', boards: {}, threads: {}, diff --git a/builds/crx/manifest.json b/builds/crx/manifest.json index c1c243dd8..3bee18b5a 100755 --- a/builds/crx/manifest.json +++ b/builds/crx/manifest.json @@ -1,6 +1,6 @@ { "name": "4chan X", - "version": "1.2.32", + "version": "1.2.33", "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 0d2f09241..3ccce6220 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* 4chan X - Version 1.2.32 - 2013-08-18 +* 4chan X - Version 1.2.33 - 2013-08-18 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE @@ -302,7 +302,7 @@ doc = d.documentElement; g = { - VERSION: '1.2.32', + VERSION: '1.2.33', NAMESPACE: '4chan X.', boards: {}, threads: {}, diff --git a/latest.js b/latest.js index 83a7452a2..9c50a17a2 100755 --- a/latest.js +++ b/latest.js @@ -1 +1 @@ -postMessage({version:'1.2.32'},'*') +postMessage({version:'1.2.33'},'*') diff --git a/package.json b/package.json index db144e6b9..c395f672c 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "4chan-X", - "version": "1.2.32", + "version": "1.2.33", "description": "Cross-browser userscript for maximum lurking on 4chan.", "meta": { "name": "4chan X",