Skip to content
This repository has been archived by the owner on Jun 15, 2019. It is now read-only.

Commit

Permalink
3.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
creesch committed May 14, 2017
1 parent 8554043 commit 23eab57
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion extension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>3.7.0</string>
<string>3.6.4</string>
<key>CFBundleVersion</key>
<string>370</string>
<key>Chrome</key>
Expand Down
3 changes: 2 additions & 1 deletion extension/data/modules/queuetools.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
});

Expand Down
8 changes: 4 additions & 4 deletions extension/data/tbutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 23eab57

Please sign in to comment.