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

Commit

Permalink
3.0.2 version changes
Browse files Browse the repository at this point in the history
  • Loading branch information
agentlame committed Dec 29, 2014
1 parent b4c2e2e commit a4afb40
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 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.0.1</string>
<string>3.0.2</string>
<key>CFBundleVersion</key>
<string>3</string>
<key>Chrome</key>
Expand Down
2 changes: 1 addition & 1 deletion UpdateManifest.plist
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<key>CFBundleVersion</key>
<string>2</string>
<key>CFBundleShortVersionString</key>
<string>2.3</string>
<string>3.0</string>
<key>URL</key>
<string>https://github.com/creesch/reddit-moderator-toolbox/releases/download/v3.0/reddit-moderator-toolbox-3.0.1.safariextz</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "reddit Moderator Toolbox",
"description": "A set of tools to be used by moderators on reddit in order to make their jobs easier.",
"version": "3.0.1",
"version": "3.0.2",
"permissions": [
"https://*.reddit.com/",
"http://*.reddit.com/",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"description": "A set of tools to be used by moderators on reddit in order to make their jobs easier.",
"license": "Apache 2.0",
"author": "team toolbox",
"version": "3.0.1",
"version": "3.0.2",
"fullName": "reddit Moderator Toolbox",
"id": "yes",
"name": "reddit_mod_tb",
Expand Down
6 changes: 4 additions & 2 deletions tbutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ function initwrapper() {
ECHO = 'echo', TB_KEY = 'Toolbox.';

// Public variables
TBUtils.toolboxVersion = '3.0.1' + ((betaRelease) ? ' (beta)' : '');
TBUtils.shortVersion = 301; //don't forget to change this one! This is used for the 'new version' notification.
TBUtils.toolboxVersion = '3.0.2' + ((betaRelease) ? ' (beta)' : '');
TBUtils.shortVersion = 302; //don't forget to change this one! This is used for the 'new version' notification.
TBUtils.releaseName = 'Illuminati Ibis';
TBUtils.configSchema = 1;
TBUtils.notesSchema = 4;
Expand Down Expand Up @@ -146,6 +146,8 @@ function initwrapper() {
TBStorage.setSetting('QueueTools', 'botCheckmark', botCheck);
}

TBStorage.setSetting('ModMail', 'enabled', true);

// End: version changes.

// These two should be left for every new release. If there is a new beta feature people want, it should be opt-in, not left to old settings.
Expand Down

0 comments on commit a4afb40

Please sign in to comment.