Release appchan x v2.9.18.
This commit is contained in:
parent
e7c5a5b549
commit
67b4905aa1
@ -1,3 +1,9 @@
|
|||||||
|
### v2.9.18
|
||||||
|
*2014-04-19*
|
||||||
|
|
||||||
|
**Zixaphir**
|
||||||
|
- Expand Image bugfix.
|
||||||
|
|
||||||
### v2.9.17
|
### v2.9.17
|
||||||
*2014-04-19*
|
*2014-04-19*
|
||||||
|
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* appchan x - Version 2.9.17 - 2014-04-19
|
* appchan x - Version 2.9.18 - 2014-04-19
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name appchan x
|
// @name appchan x
|
||||||
// @version 2.9.17
|
// @version 2.9.18
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace zixaphir
|
// @namespace zixaphir
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name appchan x
|
// @name appchan x
|
||||||
// @version 2.9.17
|
// @version 2.9.18
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace zixaphir
|
// @namespace zixaphir
|
||||||
@ -25,7 +25,7 @@
|
|||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* appchan x - Version 2.9.17 - 2014-04-19
|
* appchan x - Version 2.9.18 - 2014-04-19
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
||||||
@ -483,7 +483,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '2.9.17',
|
VERSION: '2.9.18',
|
||||||
NAMESPACE: 'appchan_x.',
|
NAMESPACE: 'appchan_x.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -10765,6 +10765,7 @@
|
|||||||
}
|
}
|
||||||
$.addClass(thumb, 'expanding');
|
$.addClass(thumb, 'expanding');
|
||||||
if (el = post.file.fullImage) {
|
if (el = post.file.fullImage) {
|
||||||
|
el.className = 'full-image';
|
||||||
TrashQueue.remove(el);
|
TrashQueue.remove(el);
|
||||||
} else {
|
} else {
|
||||||
el = post.file.fullImage = $.el((isVideo ? 'video' : 'img'), {
|
el = post.file.fullImage = $.el((isVideo ? 'video' : 'img'), {
|
||||||
@ -11017,6 +11018,7 @@
|
|||||||
isVideo = post.file.isVideo;
|
isVideo = post.file.isVideo;
|
||||||
if (post.file.fullImage) {
|
if (post.file.fullImage) {
|
||||||
el = post.file.fullImage;
|
el = post.file.fullImage;
|
||||||
|
el.className = '';
|
||||||
TrashQueue.remove(el);
|
TrashQueue.remove(el);
|
||||||
} else {
|
} else {
|
||||||
el = $.el((isVideo ? 'video' : 'img'), {
|
el = $.el((isVideo ? 'video' : 'img'), {
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "appchan x",
|
"name": "appchan x",
|
||||||
"version": "2.9.17",
|
"version": "2.9.18",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"description": "The most comprehensive 4chan userscript.",
|
"description": "The most comprehensive 4chan userscript.",
|
||||||
"icons": {
|
"icons": {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
/*
|
/*
|
||||||
* appchan x - Version 2.9.17 - 2014-04-19
|
* appchan x - Version 2.9.18 - 2014-04-19
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
||||||
@ -458,7 +458,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '2.9.17',
|
VERSION: '2.9.18',
|
||||||
NAMESPACE: 'appchan_x.',
|
NAMESPACE: 'appchan_x.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -10801,6 +10801,7 @@
|
|||||||
}
|
}
|
||||||
$.addClass(thumb, 'expanding');
|
$.addClass(thumb, 'expanding');
|
||||||
if (el = post.file.fullImage) {
|
if (el = post.file.fullImage) {
|
||||||
|
el.className = 'full-image';
|
||||||
TrashQueue.remove(el);
|
TrashQueue.remove(el);
|
||||||
} else {
|
} else {
|
||||||
el = post.file.fullImage = $.el((isVideo ? 'video' : 'img'), {
|
el = post.file.fullImage = $.el((isVideo ? 'video' : 'img'), {
|
||||||
@ -11042,6 +11043,7 @@
|
|||||||
isVideo = post.file.isVideo;
|
isVideo = post.file.isVideo;
|
||||||
if (post.file.fullImage) {
|
if (post.file.fullImage) {
|
||||||
el = post.file.fullImage;
|
el = post.file.fullImage;
|
||||||
|
el.className = '';
|
||||||
TrashQueue.remove(el);
|
TrashQueue.remove(el);
|
||||||
} else {
|
} else {
|
||||||
el = $.el((isVideo ? 'video' : 'img'), {
|
el = $.el((isVideo ? 'video' : 'img'), {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "appchan-x",
|
"name": "appchan-x",
|
||||||
"version": "2.9.17",
|
"version": "2.9.18",
|
||||||
"description": "The most comprehensive 4chan userscript.",
|
"description": "The most comprehensive 4chan userscript.",
|
||||||
"meta": {
|
"meta": {
|
||||||
"name": "appchan x",
|
"name": "appchan x",
|
||||||
|
|||||||
@ -128,6 +128,7 @@ ImageExpand =
|
|||||||
$.addClass thumb, 'expanding'
|
$.addClass thumb, 'expanding'
|
||||||
if el = post.file.fullImage
|
if el = post.file.fullImage
|
||||||
# Expand already-loaded/ing picture.
|
# Expand already-loaded/ing picture.
|
||||||
|
el.className = 'full-image'
|
||||||
TrashQueue.remove el
|
TrashQueue.remove el
|
||||||
else
|
else
|
||||||
el = post.file.fullImage = $.el (if isVideo then 'video' else 'img'),
|
el = post.file.fullImage = $.el (if isVideo then 'video' else 'img'),
|
||||||
|
|||||||
@ -22,6 +22,7 @@ ImageHover =
|
|||||||
{isVideo} = post.file
|
{isVideo} = post.file
|
||||||
if post.file.fullImage
|
if post.file.fullImage
|
||||||
el = post.file.fullImage
|
el = post.file.fullImage
|
||||||
|
el.className = ''
|
||||||
TrashQueue.remove el
|
TrashQueue.remove el
|
||||||
else
|
else
|
||||||
el = $.el (if isVideo then 'video' else 'img'),
|
el = $.el (if isVideo then 'video' else 'img'),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user