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

Commit 90ac635

Browse files
committed
3.6.5
1 parent e17d25b commit 90ac635

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

extension/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>3.6.4</string>
16+
<string>3.6.5</string>
1717
<key>CFBundleVersion</key>
18-
<string>370</string>
18+
<string>365</string>
1919
<key>Chrome</key>
2020
<dict>
2121
<key>Global Page</key>

extension/data/tbutils.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ function initwrapper() {
120120

121121

122122
// Public variables
123-
TBUtils.toolboxVersion = '3.6.4' + ((betaRelease) ? ' (beta)' : '');
124-
TBUtils.shortVersion = 364; //don't forget to change this one! This is used for the 'new version' notification.
123+
TBUtils.toolboxVersion = '3.6.5' + ((betaRelease) ? ' (beta)' : '');
124+
TBUtils.shortVersion = 365; //don't forget to change this one! This is used for the 'new version' notification.
125125
TBUtils.releaseName = 'Communicating Cat';
126126
TBUtils.configSchema = 1;
127127
TBUtils.notesSchema = 6;
@@ -356,7 +356,7 @@ function initwrapper() {
356356
debugObject.browserVersion = browserMatchedInfo[2];
357357
debugObject.platformInformation = browserMatchedInfo[1];
358358

359-
} else if (chromeRegex.test(browserUserAgent)){
359+
} else if (chromeRegex.test(browserUserAgent)){
360360
browserMatchedInfo = browserUserAgent.match(chromeRegex);
361361
debugObject.browser = 'Chrome';
362362
debugObject.browserVersion = browserMatchedInfo[2];
@@ -993,8 +993,8 @@ function initwrapper() {
993993
return callback(true);
994994
} else {
995995
return callback(false);
996-
}
997-
996+
}
997+
998998
});
999999
};
10001000

@@ -1054,9 +1054,9 @@ function initwrapper() {
10541054
subreddit = $body.find('.ThreadTitle__community').text();
10551055
permalink = ($threadBase.find('.m-link').length ? 'https://mod.reddit.com' + $threadBase.find('.m-link').attr('href') : 'https://mod.reddit.com/mail/perma/' + browserUrl.match(idRegex)[1]);
10561056
id = browserUrl.match(idRegex)[1];
1057-
1057+
10581058
// Funny story, there is currently no functionality in new modmail that can make use of the body.
1059-
// Macros look at the sidebar and other modules don't need the body.
1059+
// Macros look at the sidebar and other modules don't need the body.
10601060
// Todo: Figure out what body to present when activated from modmacro.
10611061
var $textBody = $threadBase.find('.Message__body .md').clone();
10621062
console.log($textBody);
@@ -2502,4 +2502,4 @@ function initwrapper() {
25022502
var event = new CustomEvent("TBUtilsLoaded");
25032503
window.dispatchEvent(event);
25042504
});
2505-
})();
2505+
})();

extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "toolbox team",
55
"short_name": "toolbox",
66
"description": "A set of tools to be used by moderators on reddit in order to make their jobs easier.",
7-
"version": "3.6.4",
7+
"version": "3.6.5",
88
"options_page": "data/background/options.html",
99
"applications": {
1010
"gecko": {

0 commit comments

Comments
 (0)