diff --git a/4chan_x.user.js b/4chan_x.user.js index fcfa28a71..e15216d19 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2,7 +2,7 @@ // @name 4chan x // @namespace aeosynth // @description Adds various features. -// @version 11.8.10.1 +// @version 11.8.11.1 // @copyright 2009-2011 James Campos // @license MIT; http://en.wikipedia.org/wiki/Mit_license // @include http://boards.4chan.org/* @@ -1289,7 +1289,7 @@ THREAD_ID = g.THREAD_ID || $.x('ancestor::div[@class="thread"]/div', link).id; spoiler = $('.postarea label') ? '' : ''; challenge = $('#recaptcha_challenge_field').value; - html = " X
Quick Reply
" + spoiler + "
" + ($.get('captchas', []).length) + " captchas
attach another file
"; + html = " X
Quick Reply
" + spoiler + "
" + ($.get('captchas', []).length) + " captchas
attach another file
"; qr.el = ui.dialog('qr', { top: '0px', left: '0px' @@ -3016,7 +3016,7 @@ #qr #close, #qr #autohide {\ float: right;\ }\ - #qr:not(:hover) > #autohide:checked ~ form {\ + #qr:not(:hover) > #autohide:checked ~ .autohide {\ height: 0;\ overflow: hidden;\ }\ diff --git a/changelog b/changelog index e72b43ede..4b15474d2 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,14 @@ +11.8.11.1 +- aeosynth: + fix qr autohiding + +11.8.11.0 +- aeosynth: + - rm auto post checkbox + if (captcha filled or cached) and (text or file) + auto post after cooldown + - options updated immediately instead of requiring page refresh + 11.8.10.1 - aeosynth: - persistent captchas (expiring after 4 hours, 55 minutes) diff --git a/header b/header index 59c5764ae..aa7d42d77 100644 --- a/header +++ b/header @@ -2,7 +2,7 @@ // @name 4chan x // @namespace aeosynth // @description Adds various features. -// @version 11.8.10.1 +// @version 11.8.11.1 // @copyright 2009-2011 James Campos // @license MIT; http://en.wikipedia.org/wiki/Mit_license // @include http://boards.4chan.org/* diff --git a/script.coffee b/script.coffee index a23123403..5f1c119ca 100644 --- a/script.coffee +++ b/script.coffee @@ -1032,19 +1032,21 @@ qr = Quick Reply -
- - - -
#{spoiler}
-
-
-
-
#{$.get('captchas', []).length} captchas
-
-
-
-
attach another file
+
+
+ + + +
#{spoiler}
+
+
+
+
#{$.get('captchas', []).length} captchas
+
+
+
+
attach another file
+
" qr.el = ui.dialog 'qr', top: '0px', left: '0px', html @@ -2413,7 +2415,7 @@ main = #qr #close, #qr #autohide { float: right; } - #qr:not(:hover) > #autohide:checked ~ form { + #qr:not(:hover) > #autohide:checked ~ .autohide { height: 0; overflow: hidden; }