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