diff --git a/extension/Info.plist b/extension/Info.plist
index 69cb37f..8482836 100644
--- a/extension/Info.plist
+++ b/extension/Info.plist
@@ -13,7 +13,7 @@
CFBundleInfoDictionaryVersion
6.0
CFBundleShortVersionString
- 3.7.0
+ 3.6.4
CFBundleVersion
370
Chrome
diff --git a/extension/data/modules/queuetools.js b/extension/data/modules/queuetools.js
index 45516cd..452bb9c 100644
--- a/extension/data/modules/queuetools.js
+++ b/extension/data/modules/queuetools.js
@@ -101,7 +101,8 @@ self.register_setting('openContextInPopup', {
self.register_setting('groupCommentsOnModPage', {
'type': 'boolean',
'default': false,
- 'beta': 'true',
+ 'beta': true,
+ 'advanced': true,
'title': 'Group comments by their parent submission when viewing mod listings.'
});
diff --git a/extension/data/tbutils.js b/extension/data/tbutils.js
index 163ccbe..339cde7 100644
--- a/extension/data/tbutils.js
+++ b/extension/data/tbutils.js
@@ -68,7 +68,7 @@ function initwrapper() {
newLogin = (cacheName != TBUtils.logged),
getnewLong = (((now - lastgetLong) / (60 * 1000) > longLength) || newLogin),
getnewShort = (((now - lastgetShort) / (60 * 1000) > shortLength) || newLogin),
- betaRelease = true, /// DO NOT FORGET TO SET FALSE BEFORE FINAL RELEASE! ///
+ betaRelease = false, /// DO NOT FORGET TO SET FALSE BEFORE FINAL RELEASE! ///
gettingModSubs = false,
getModSubsCallbacks = [],
invalidPostSites = ['subreddits you moderate', 'mod (filtered)', 'all'],
@@ -120,9 +120,9 @@ function initwrapper() {
// Public variables
- TBUtils.toolboxVersion = '3.7.0' + ((betaRelease) ? ' (beta)' : '');
- TBUtils.shortVersion = 370; //don't forget to change this one! This is used for the 'new version' notification.
- TBUtils.releaseName = 'Breaking Bug';
+ TBUtils.toolboxVersion = '3.6.4' + ((betaRelease) ? ' (beta)' : '');
+ TBUtils.shortVersion = 364; //don't forget to change this one! This is used for the 'new version' notification.
+ TBUtils.releaseName = 'Communicating Cat';
TBUtils.configSchema = 1;
TBUtils.notesSchema = 6;
TBUtils.notesMinSchema = 4;
diff --git a/extension/manifest.json b/extension/manifest.json
index a290b3c..9573d30 100644
--- a/extension/manifest.json
+++ b/extension/manifest.json
@@ -4,7 +4,7 @@
"author": "toolbox team",
"short_name": "toolbox",
"description": "A set of tools to be used by moderators on reddit in order to make their jobs easier.",
- "version": "3.7.0",
+ "version": "3.6.4",
"options_page": "data/background/options.html",
"applications": {
"gecko": {