Merge branch 'ccd0' into v3
Conflicts: CHANGELOG.md builds/4chan-X.user.js builds/crx/script.js src/Images/ImageHover.coffee src/Posting/QR.coffee
This commit is contained in:
commit
4b28626410
@ -69,6 +69,14 @@
|
|||||||
- Fixed an issue with Thread Updater intervals not saving correctly.
|
- Fixed an issue with Thread Updater intervals not saving correctly.
|
||||||
- Many spiffy performance, state awareness, and sanity improvements to JSON Navigation.
|
- Many spiffy performance, state awareness, and sanity improvements to JSON Navigation.
|
||||||
|
|
||||||
|
### v1.5.1
|
||||||
|
*2014-04-04*
|
||||||
|
|
||||||
|
**ccd0**:
|
||||||
|
- Support hover for .webm videos.
|
||||||
|
- Add .webm to supported posting types.
|
||||||
|
- Add option to enable/disable sound.
|
||||||
|
|
||||||
## v1.5.0
|
## v1.5.0
|
||||||
*2014-04-04*
|
*2014-04-04*
|
||||||
|
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* 4chan X - Version 1.5.0 - 2014-04-04
|
* 4chan X - Version 1.5.1 - 2014-04-04
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.5.0
|
// @version 1.5.1
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
BIN
builds/crx.crx
BIN
builds/crx.crx
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"version": "1.5.0",
|
"version": "1.5.1",
|
||||||
"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": {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/crx.crx' version='1.5.0' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/crx.crx' version='1.5.1' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
postMessage({version:'1.5.0'},'*')
|
postMessage({version:'1.5.1'},'*')
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan-X",
|
"name": "4chan-X",
|
||||||
"version": "1.5.0",
|
"version": "1.5.1",
|
||||||
"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",
|
||||||
|
|||||||
@ -141,7 +141,7 @@ Config =
|
|||||||
]
|
]
|
||||||
'Image Hover': [
|
'Image Hover': [
|
||||||
true
|
true
|
||||||
'Show full image on mouseover.'
|
'Show full image / video on mouseover.'
|
||||||
]
|
]
|
||||||
'Image Hover in Catalog': [
|
'Image Hover in Catalog': [
|
||||||
false
|
false
|
||||||
@ -191,6 +191,10 @@ Config =
|
|||||||
true
|
true
|
||||||
'Show native seek and volume controls on videos. Contract videos when dragged to the left.'
|
'Show native seek and volume controls on videos. Contract videos when dragged to the left.'
|
||||||
]
|
]
|
||||||
|
'Allow Sound': [
|
||||||
|
true
|
||||||
|
'Allow sound in inline videos.'
|
||||||
|
]
|
||||||
|
|
||||||
'Menu':
|
'Menu':
|
||||||
'Menu': [
|
'Menu': [
|
||||||
|
|||||||
@ -368,7 +368,7 @@ UI = do ->
|
|||||||
|
|
||||||
hoverend = (e) ->
|
hoverend = (e) ->
|
||||||
return if e.type is 'keydown' and e.keyCode isnt 13 or e.target.nodeName is "TEXTAREA"
|
return if e.type is 'keydown' and e.keyCode isnt 13 or e.target.nodeName is "TEXTAREA"
|
||||||
$.rm @el
|
$.rm @el if @el.parentNode is Header.hover
|
||||||
$.off @root, @endEvents, @hoverend
|
$.off @root, @endEvents, @hoverend
|
||||||
$.off d, 'keydown', @hoverend
|
$.off d, 'keydown', @hoverend
|
||||||
$.off @root, 'mousemove', @hover
|
$.off @root, 'mousemove', @hover
|
||||||
|
|||||||
@ -108,7 +108,7 @@ div.center:not(.ad-cnt) {
|
|||||||
/* fixed, z-index */
|
/* fixed, z-index */
|
||||||
#overlay,
|
#overlay,
|
||||||
#fourchanx-settings,
|
#fourchanx-settings,
|
||||||
#qp, #ihover,
|
#qp, .ihover,
|
||||||
#navlinks, .fixed #header-bar,
|
#navlinks, .fixed #header-bar,
|
||||||
:root.float #updater,
|
:root.float #updater,
|
||||||
:root.float #thread-stats,
|
:root.float #thread-stats,
|
||||||
@ -124,7 +124,7 @@ div.center:not(.ad-cnt) {
|
|||||||
#notifications {
|
#notifications {
|
||||||
z-index: 70;
|
z-index: 70;
|
||||||
}
|
}
|
||||||
#qp, #ihover {
|
#qp, .ihover {
|
||||||
z-index: 60;
|
z-index: 60;
|
||||||
}
|
}
|
||||||
#menu {
|
#menu {
|
||||||
@ -840,7 +840,7 @@ span.hide-announcement {
|
|||||||
:root.gecko.fit-width .full-image {
|
:root.gecko.fit-width .full-image {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
#ihover {
|
.ihover {
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
|
|||||||
@ -100,9 +100,12 @@ ImageExpand =
|
|||||||
return if post.isHidden or post.file.isExpanded or $.hasClass thumb, 'expanding'
|
return if post.isHidden or post.file.isExpanded or $.hasClass thumb, 'expanding'
|
||||||
$.addClass thumb, 'expanding'
|
$.addClass thumb, 'expanding'
|
||||||
naturalHeight = if isVideo then 'videoHeight' else 'naturalHeight'
|
naturalHeight = if isVideo then 'videoHeight' else 'naturalHeight'
|
||||||
if post.file.fullImage
|
if img = post.file.fullImage
|
||||||
# Expand already-loaded/ing picture.
|
# Expand already-loaded/ing picture.
|
||||||
$.asap (-> post.file.fullImage[naturalHeight]), ->
|
$.rmClass img, 'ihover'
|
||||||
|
$.addClass img, 'full-image'
|
||||||
|
img.controls = (img.parentNode isnt thumb.parentNode)
|
||||||
|
$.asap (-> img[naturalHeight]), ->
|
||||||
ImageExpand.completeExpand post
|
ImageExpand.completeExpand post
|
||||||
return
|
return
|
||||||
post.file.fullImage = img = $.el (if isVideo then 'video' else 'img'),
|
post.file.fullImage = img = $.el (if isVideo then 'video' else 'img'),
|
||||||
@ -138,7 +141,7 @@ ImageExpand =
|
|||||||
{file} = post
|
{file} = post
|
||||||
video = file.fullImage
|
video = file.fullImage
|
||||||
file.videoControls = []
|
file.videoControls = []
|
||||||
video.muted = true
|
video.muted = not Conf['Allow Sound']
|
||||||
if video.controls
|
if video.controls
|
||||||
# contract link in file info
|
# contract link in file info
|
||||||
contract = $.el 'a',
|
contract = $.el 'a',
|
||||||
|
|||||||
@ -9,7 +9,7 @@ ImageHover =
|
|||||||
name: 'Image Hover'
|
name: 'Image Hover'
|
||||||
cb: @catalogNode
|
cb: @catalogNode
|
||||||
node: ->
|
node: ->
|
||||||
return unless @file?.isImage
|
return unless @file?.isImage or @file?.isVideo
|
||||||
$.on @file.thumb, 'mouseover', ImageHover.mouseover
|
$.on @file.thumb, 'mouseover', ImageHover.mouseover
|
||||||
catalogNode: ->
|
catalogNode: ->
|
||||||
return unless @thread.OP.file?.isImage
|
return unless @thread.OP.file?.isImage
|
||||||
@ -19,17 +19,35 @@ ImageHover =
|
|||||||
g.posts[@parentNode.dataset.fullID]
|
g.posts[@parentNode.dataset.fullID]
|
||||||
else
|
else
|
||||||
Get.postFromNode @
|
Get.postFromNode @
|
||||||
el = $.el 'img',
|
{isVideo} = post.file
|
||||||
id: 'ihover'
|
if post.file.fullImage
|
||||||
src: post.file.URL
|
el = post.file.fullImage
|
||||||
|
$.rmClass el, 'full-image'
|
||||||
|
$.addClass el, 'ihover'
|
||||||
|
else
|
||||||
|
el = $.el (if isVideo then 'video' else 'img'),
|
||||||
|
className: 'ihover'
|
||||||
|
src: post.file.URL
|
||||||
|
post.file.fullImage = el
|
||||||
|
{thumb} = post.file
|
||||||
|
$.after (if isVideo and Conf['Show Controls'] then thumb.parentNode else thumb), el
|
||||||
el.dataset.fullID = post.fullID
|
el.dataset.fullID = post.fullID
|
||||||
$.add Header.hover, el
|
if isVideo
|
||||||
|
el.loop = true
|
||||||
|
el.controls = false
|
||||||
|
el.muted = not Conf['Allow Sound']
|
||||||
|
el.play() if Conf['Autoplay']
|
||||||
|
naturalHeight = if post.file.isVideo then 'videoHeight' else 'naturalHeight'
|
||||||
UI.hover
|
UI.hover
|
||||||
root: @
|
root: @
|
||||||
el: el
|
el: el
|
||||||
latestEvent: e
|
latestEvent: e
|
||||||
endEvents: 'mouseout click'
|
endEvents: 'mouseout click'
|
||||||
asapTest: -> el.naturalHeight
|
asapTest: -> el[naturalHeight]
|
||||||
|
cb: ->
|
||||||
|
el.pause() if isVideo
|
||||||
|
$.rmClass el, 'ihover'
|
||||||
|
$.addClass el, 'full-image'
|
||||||
$.on el, 'error', ImageHover.error
|
$.on el, 'error', ImageHover.error
|
||||||
error: ->
|
error: ->
|
||||||
return unless doc.contains @
|
return unless doc.contains @
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
QR =
|
QR =
|
||||||
# Add empty mimeType to avoid errors with URLs selected in Window's file dialog.
|
# Add empty mimeType to avoid errors with URLs selected in Window's file dialog.
|
||||||
mimeTypes: ['image/jpeg', 'image/png', 'image/gif', 'application/pdf', 'application/x-shockwave-flash', '']
|
mimeTypes: ['image/jpeg', 'image/png', 'image/gif', 'application/pdf', 'application/x-shockwave-flash', 'video/webm', '']
|
||||||
|
|
||||||
init: ->
|
init: ->
|
||||||
return if !Conf['Quick Reply']
|
return if !Conf['Quick Reply']
|
||||||
@ -375,13 +375,16 @@ QR =
|
|||||||
$.addClass QR.nodes.el, 'dump' unless isSingle
|
$.addClass QR.nodes.el, 'dump' unless isSingle
|
||||||
|
|
||||||
checkDimensions: (file, isSingle, max) ->
|
checkDimensions: (file, isSingle, max) ->
|
||||||
img = new Image()
|
if /^image\//.test file.type
|
||||||
img.onload = =>
|
img = new Image()
|
||||||
{height, width} = img
|
img.onload = =>
|
||||||
return QR.error "#{file.name}: Image too large (image: #{img.height}x#{img.width}px, max: #{QR.max_heigth}x#{QR.max_width}px)" if height > QR.max_heigth or width > QR.max_heigth
|
{height, width} = img
|
||||||
return QR.error "#{file.name}: Image too small (image: #{img.height}x#{img.width}px, min: #{QR.min_heigth}x#{QR.min_width}px)" if height < QR.min_heigth or width < QR.min_heigth
|
return QR.error "#{file.name}: Image too large (image: #{img.height}x#{img.width}px, max: #{QR.max_heigth}x#{QR.max_width}px)" if height > QR.max_heigth or width > QR.max_heigth
|
||||||
|
return QR.error "#{file.name}: Image too small (image: #{img.height}x#{img.width}px, min: #{QR.min_heigth}x#{QR.min_width}px)" if height < QR.min_heigth or width < QR.min_heigth
|
||||||
|
QR.handleFile file, isSingle, max
|
||||||
|
img.src = URL.createObjectURL file
|
||||||
|
else
|
||||||
QR.handleFile file, isSingle, max
|
QR.handleFile file, isSingle, max
|
||||||
img.src = URL.createObjectURL file
|
|
||||||
|
|
||||||
handleFile: (file, isSingle, max) ->
|
handleFile: (file, isSingle, max) ->
|
||||||
if file.size > max
|
if file.size > max
|
||||||
|
|||||||
@ -142,7 +142,7 @@ QR.post = class
|
|||||||
when 'filename'
|
when 'filename'
|
||||||
return unless @file
|
return unless @file
|
||||||
@file.newName = @filename.replace /[/\\]/g, '-'
|
@file.newName = @filename.replace /[/\\]/g, '-'
|
||||||
unless /\.(jpe?g|png|gif|pdf|swf)$/i.test @filename
|
unless /\.(jpe?g|png|gif|pdf|swf|webm)$/i.test @filename
|
||||||
# 4chan will truncate the filename if it has no extension,
|
# 4chan will truncate the filename if it has no extension,
|
||||||
# but it will always replace the extension by the correct one,
|
# but it will always replace the extension by the correct one,
|
||||||
# so we suffix it with '.jpg' when needed.
|
# so we suffix it with '.jpg' when needed.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user