diff --git a/4chan_x.user.js b/4chan_x.user.js index dd4a8bd4a..84f0c08e0 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -907,7 +907,7 @@ } flag = flagCode ? ("  + flagCode + ") : ''; if (file != null ? file.isDeleted : void 0) { - fileHTML = isOP ? ("
") + ("File deleted.") + "
" : ("
") + ("File deleted.") + "
"; + fileHTML = isOP ? ("
") + ("File deleted.") + "
" : ("
") + ("File deleted.") + "
"; } else if (file) { ext = file.name.slice(-3); if (!file.twidth && !file.theight && ext === 'gif') { diff --git a/changelog b/changelog index ac40866e3..d06b1a289 100644 --- a/changelog +++ b/changelog @@ -8,6 +8,17 @@ alpha master +2.36.0 +- Mayhem + Added thread creation QR cooldown. + Fix QR cooldown timer between non-sage and sage posts. You can submit a non-sage post 30 seconds after a sage one. + Fix /q/ QR cooldowns for image and sage posts. + +2.35.4 +- Mayhem + Removed the obnoxious 4chan Pass ad in captcha errors when posting. + Fix 'Administrator/Moderator/Developer Replies' creating extra backlinks on /q/, again. + 2.35.3 - Mayhem Larger Comment text input by default for 4chan Pass users and on /f/ (no captcha). diff --git a/latest.js b/latest.js index 72c0783fb..be75ff81d 100644 --- a/latest.js +++ b/latest.js @@ -1 +1 @@ -postMessage({version:'2.35.3'},'*') \ No newline at end of file +postMessage({version:'2.36.0'},'*') \ No newline at end of file diff --git a/src/features.coffee b/src/features.coffee index 774a6f5ee..c55dcaee8 100644 --- a/src/features.coffee +++ b/src/features.coffee @@ -189,11 +189,11 @@ Build = fileHTML = if isOP "
" + - "File deleted." + + "File deleted." + "
" else "
" + - "File deleted." + + "File deleted." + "
" else if file ext = file.name[-3..]