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

Commit

Permalink
3.4.2 version numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
creesch committed Sep 23, 2016
1 parent c0cbabf commit 38ef349
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions extension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>3.4.1</string>
<string>3.4.2</string>
<key>CFBundleVersion</key>
<string>341</string>
<string>342</string>
<key>Chrome</key>
<dict>
<key>Global Page</key>
Expand Down
14 changes: 7 additions & 7 deletions extension/data/tbutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ function initwrapper() {


// Public variables
TBUtils.toolboxVersion = '3.4.1' + ((betaRelease) ? ' (beta)' : '');
TBUtils.shortVersion = 341; //don't forget to change this one! This is used for the 'new version' notification.
TBUtils.toolboxVersion = '3.4.2' + ((betaRelease) ? ' (beta)' : '');
TBUtils.shortVersion = 342; //don't forget to change this one! This is used for the 'new version' notification.
TBUtils.releaseName = 'Modmailing Mallard';
TBUtils.configSchema = 1;
TBUtils.notesSchema = 6;
Expand Down Expand Up @@ -240,8 +240,8 @@ function initwrapper() {
localStorage.removeItem('Toolbox.Modbar.enableTopLink');

// End: version changes.
// This is a super extra check to make sure the wiki page for settings export really is private.

// This is a super extra check to make sure the wiki page for settings export really is private.
var settingSubEnabled = TBStorage.getSetting('Utils', 'settingSub', '');
if (settingSubEnabled) {
TBUtils.setWikiPrivate('tbsettings', settingSubEnabled, false);
Expand Down Expand Up @@ -1176,7 +1176,7 @@ function initwrapper() {
}
});
};

TBUtils.setWikiPrivate = function setWikiPrivate(page, subreddit, failAlert) {
$.post(TBUtils.baseDomain + '/r/' + subreddit + '/wiki/settings/', {
page: page,
Expand All @@ -1194,7 +1194,7 @@ function initwrapper() {
$.log('error setting wiki page to mod only access');
}
});

}

TBUtils.postToWiki = function postToWiki(page, subreddit, data, reason, isJSON, updateAM, callback) {
Expand Down Expand Up @@ -1236,7 +1236,7 @@ function initwrapper() {
// In order to make sure the callback followup doesn't mess with the mod only call we let it wait a bit longer.

callback(true);

}, 750);

setTimeout(function () {
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.4.1",
"version": "3.4.2",
"options_page": "data/background/options.html",
"applications": {
"gecko": {
Expand Down

0 comments on commit 38ef349

Please sign in to comment.