diff --git a/4chan_x.user.js b/4chan_x.user.js
index 2399da083..e5611535d 100644
--- a/4chan_x.user.js
+++ b/4chan_x.user.js
@@ -68,7 +68,7 @@
}
config = {
main: {
- monitor: {
+ Monitoring: {
'Thread Updater': [true, 'Update threads'],
'Unread Count': [true, 'Show unread post count in tab title'],
'Post in Title': [true, 'Show the op\'s post in the tab title'],
@@ -77,19 +77,19 @@
'Auto Watch': [true, 'Automatically watch threads that you start'],
'Auto Watch Reply': [false, 'Automatically watch threads that you reply to']
},
- img: {
+ Imaging: {
'Image Auto-Gif': [false, 'Animate gif thumbnails'],
'Image Expansion': [true, 'Expand images'],
'Image Hover': [false, 'Show full image on mouseover'],
'Image Preloading': [false, 'Preload Images'],
'Sauce': [true, 'Add sauce to images']
},
- post: {
+ Posting: {
'Cooldown': [true, 'Prevent \'flood detected\' errors'],
'Quick Reply': [true, 'Reply without leaving the page'],
'Persistent QR': [false, 'Quick reply won\'t disappear after posting. Only in replies.']
},
- quote: {
+ Quoting: {
'Quote Backlinks': [true, 'Add quote backlinks'],
'OP Backlinks': [false, 'Add backlinks to the OP'],
'Quote Highlighting': [true, 'Highlight the previewed post'],
@@ -97,12 +97,12 @@
'Quote Preview': [true, 'Show quote content on hover'],
'Indicate OP quote': [true, 'Add \'(OP)\' to OP quotes']
},
- hide: {
+ Hiding: {
'Reply Hiding': [true, 'Hide single replies'],
'Thread Hiding': [true, 'Hide entire threads'],
'Show Stubs': [true, 'Of hidden threads / replies']
},
- misc: {
+ Enhancing: {
'404 Redirect': [true, 'Redirect dead threads'],
'Anonymize': [false, 'Make everybody anonymous'],
'Keybinds': [false, 'Binds actions to keys'],
@@ -958,7 +958,7 @@
var arr, checked, description, dialog, hiddenNum, hiddenThreads, html, input, key, li, link, main, obj, ul, _i, _j, _len, _len2, _ref, _ref2, _ref3;
hiddenThreads = $.getValue("hiddenThreads/" + g.BOARD + "/", {});
hiddenNum = Object.keys(g.hiddenReplies).length + Object.keys(hiddenThreads).length;
- html = "
";
+ html = "
";
dialog = ui.dialog('options', {
top: '25%',
left: '25%'
@@ -975,7 +975,7 @@
checked = $.config(key) ? "checked" : "";
description = arr[1];
li = $.el('li', {
- innerHTML: "" + description + ""
+ innerHTML: ": " + description + ""
});
$.append(ul, li);
}
@@ -2663,7 +2663,7 @@
#options {\
position: fixed;\
padding: 5px;\
- width: 500px;\
+ min-width: 500px;\
}\
#options .move, #credits {\
text-align: right;\
@@ -2681,7 +2681,7 @@
}\
#options #main {\
overflow: auto;\
- height: 500px;\
+ height: 450px;\
}\
\
#qr {\
diff --git a/script.coffee b/script.coffee
index 41435ed49..7ca5fdb7e 100644
--- a/script.coffee
+++ b/script.coffee
@@ -5,7 +5,7 @@ if console?
config =
main:
- monitor:
+ Monitoring:
'Thread Updater': [true, 'Update threads']
'Unread Count': [true, 'Show unread post count in tab title']
'Post in Title': [true, 'Show the op\'s post in the tab title']
@@ -13,28 +13,28 @@ config =
'Thread Watcher': [true, 'Bookmark threads']
'Auto Watch': [true, 'Automatically watch threads that you start']
'Auto Watch Reply': [false, 'Automatically watch threads that you reply to']
- img:
+ Imaging:
'Image Auto-Gif': [false, 'Animate gif thumbnails']
'Image Expansion': [true, 'Expand images']
'Image Hover': [false, 'Show full image on mouseover']
'Image Preloading': [false, 'Preload Images']
'Sauce': [true, 'Add sauce to images']
- post:
+ Posting:
'Cooldown': [true, 'Prevent \'flood detected\' errors']
'Quick Reply': [true, 'Reply without leaving the page']
'Persistent QR': [false, 'Quick reply won\'t disappear after posting. Only in replies.']
- quote:
+ Quoting:
'Quote Backlinks': [true, 'Add quote backlinks']
'OP Backlinks': [false, 'Add backlinks to the OP']
'Quote Highlighting': [true, 'Highlight the previewed post']
'Quote Inline': [true, 'Show quoted post inline on quote click']
'Quote Preview': [true, 'Show quote content on hover']
'Indicate OP quote': [true, 'Add \'(OP)\' to OP quotes']
- hide:
+ Hiding:
'Reply Hiding': [true, 'Hide single replies']
'Thread Hiding': [true, 'Hide entire threads']
'Show Stubs': [true, 'Of hidden threads / replies']
- misc:
+ Enhancing:
'404 Redirect': [true, 'Redirect dead threads']
'Anonymize': [false, 'Make everybody anonymous']
'Keybinds': [false, 'Binds actions to keys']
@@ -735,9 +735,9 @@ options =
-
+
-
+
Format specifiers (source)
@@ -768,7 +768,7 @@ options =
checked = if $.config key then "checked" else ""
description = arr[1]
li = $.el 'li',
- innerHTML: "#{description}"
+ innerHTML: ": #{description}"
$.append ul, li
$.append main, ul
for input in $$ 'input[type=checkbox]', dialog
@@ -2033,7 +2033,7 @@ main =
#options {
position: fixed;
padding: 5px;
- width: 500px;
+ min-width: 500px;
}
#options .move, #credits {
text-align: right;
@@ -2051,7 +2051,7 @@ main =
}
#options #main {
overflow: auto;
- height: 500px;
+ height: 450px;
}
#qr {