Release 4chan X v1.2.33.
This commit is contained in:
parent
a1ad605f9e
commit
0f119e95fd
24
CHANGELOG.md
24
CHANGELOG.md
@ -1,15 +1,21 @@
|
|||||||
|
### v1.2.33
|
||||||
|
*2013-08-18*
|
||||||
|
|
||||||
**MayhemYDG**:
|
**MayhemYDG**:
|
||||||
- **New feature**: `Desktop Notifications`
|
- Added new option: `Desktop Notifications`
|
||||||
- Enabled by default, but you will have to grant your browser permissions to display them or disable them altogether:<br>
|
- Implement filename editing
|
||||||

|
- Replace shortcuts with icons
|
||||||
- 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.
|
|
||||||
|
|
||||||

|
**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
|
### v1.2.32
|
||||||
*2013-08-16*
|
*2013-08-16*
|
||||||
|
|||||||
2
LICENSE
2
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.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.2.32
|
// @version 1.2.33
|
||||||
// @minGMVer 1.13
|
// @minGMVer 1.13
|
||||||
// @minFFVer 22
|
// @minFFVer 22
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.2.32
|
// @version 1.2.33
|
||||||
// @minGMVer 1.13
|
// @minGMVer 1.13
|
||||||
// @minFFVer 22
|
// @minFFVer 22
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -22,7 +22,7 @@
|
|||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 4chan X - Version 1.2.32 - 2013-08-18
|
* 4chan X - Version 1.2.33 - 2013-08-18
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
||||||
@ -323,7 +323,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.2.32',
|
VERSION: '1.2.33',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {},
|
boards: {},
|
||||||
threads: {},
|
threads: {},
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"version": "1.2.32",
|
"version": "1.2.33",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||||
"icons": {
|
"icons": {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// Generated by CoffeeScript
|
// 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.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
||||||
@ -302,7 +302,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.2.32',
|
VERSION: '1.2.33',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {},
|
boards: {},
|
||||||
threads: {},
|
threads: {},
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
postMessage({version:'1.2.32'},'*')
|
postMessage({version:'1.2.33'},'*')
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan-X",
|
"name": "4chan-X",
|
||||||
"version": "1.2.32",
|
"version": "1.2.33",
|
||||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||||
"meta": {
|
"meta": {
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user