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

Commit

Permalink
3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
creesch committed Feb 19, 2017
1 parent 6caffca commit d3b370f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extension/data/modules/newmodmailpro.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function newmodmailpro() {

////Default settings
self.settings['enabled']['default'] = false;
self.config['betamode'] = true;
self.config['betamode'] = false;

self.register_setting('modmaillink', {
'type': 'selector',
Expand Down
6 changes: 3 additions & 3 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 @@ -122,7 +122,7 @@ function initwrapper() {
// Public variables
TBUtils.toolboxVersion = '3.6.0' + ((betaRelease) ? ' (beta)' : '');
TBUtils.shortVersion = 360; //don't forget to change this one! This is used for the 'new version' notification.
TBUtils.releaseName = 'Idiotic Creesch';
TBUtils.releaseName = 'Communicating Cat';
TBUtils.configSchema = 1;
TBUtils.notesSchema = 6;
TBUtils.notesMinSchema = 4;
Expand Down Expand Up @@ -260,7 +260,7 @@ function initwrapper() {
// Start: version changes.
/* TBUtils.[get/set]Setting IS NOT DEFINDED YET!!! Use TBStorage.[get/set]settings */

// 3.5 version changes
// 3.6 version changes
TBStorage.setSetting('HButton', 'alwaysComments', true);
TBStorage.setSetting('Notifier', 'wwwNotifications', true);
TBStorage.setSetting('RReasons', 'reasonType', 'reply_with_a_comment_to_the_item_that_is_removed');
Expand Down

0 comments on commit d3b370f

Please sign in to comment.