Merge branch 'bstable'
This commit is contained in:
commit
7f27e78b58
@ -60,6 +60,10 @@
|
|||||||
|
|
||||||
### v1.12.3
|
### v1.12.3
|
||||||
|
|
||||||
|
**v1.12.3.7** *(2016-10-09)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.7/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.7/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Workaround for problem on 4chan's end with images not loading.
|
||||||
|
- The error messages displayed when the Chrome extension updates but the tab has not been reloaded have been replaced with a single warning message asking you to reload the tab.
|
||||||
|
|
||||||
**v1.12.3.6** *(2016-10-03)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.6/builds/4chan-X-noupdate.crx)]
|
**v1.12.3.6** *(2016-10-03)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.6/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.6/builds/4chan-X-noupdate.crx)]
|
||||||
- Add `Pass Date` to filterable items.
|
- Add `Pass Date` to filterable items.
|
||||||
- Show Pass flair in posts constructed from JSON.
|
- Show Pass flair in posts constructed from JSON.
|
||||||
|
|||||||
@ -171,6 +171,8 @@ class Post
|
|||||||
return if not (link = $ '.fileText > a, .fileText-original > a', fileRoot)
|
return if not (link = $ '.fileText > a, .fileText-original > a', fileRoot)
|
||||||
return if not (info = link.nextSibling?.textContent.match /\(([\d.]+ [KMG]?B).*\)/)
|
return if not (info = link.nextSibling?.textContent.match /\(([\d.]+ [KMG]?B).*\)/)
|
||||||
fileText = fileRoot.firstElementChild
|
fileText = fileRoot.firstElementChild
|
||||||
|
# XXX full images on https://is.4chan.org don't load
|
||||||
|
link.hostname = 'i.4cdn.org' if link.hostname is 'is.4chan.org'
|
||||||
@file =
|
@file =
|
||||||
text: fileText
|
text: fileText
|
||||||
link: link
|
link: link
|
||||||
@ -186,6 +188,8 @@ class Post
|
|||||||
size *= 1024 while unit-- > 0
|
size *= 1024 while unit-- > 0
|
||||||
@file.sizeInBytes = size
|
@file.sizeInBytes = size
|
||||||
if (thumb = $ 'a.fileThumb > [data-md5]', fileRoot)
|
if (thumb = $ 'a.fileThumb > [data-md5]', fileRoot)
|
||||||
|
# XXX full images on https://is.4chan.org don't load
|
||||||
|
thumb.parentNode.hostname = 'i.4cdn.org' if thumb.parentNode.hostname is 'is.4chan.org'
|
||||||
$.extend @file,
|
$.extend @file,
|
||||||
thumb: thumb
|
thumb: thumb
|
||||||
thumbLink: thumb.parentNode
|
thumbLink: thumb.parentNode
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user