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

Commit

Permalink
3.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
creesch committed Jun 16, 2017
1 parent e17d25b commit 90ac635
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 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.6.4</string>
<string>3.6.5</string>
<key>CFBundleVersion</key>
<string>370</string>
<string>365</string>
<key>Chrome</key>
<dict>
<key>Global Page</key>
Expand Down
16 changes: 8 additions & 8 deletions extension/data/tbutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ function initwrapper() {


// Public variables
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.toolboxVersion = '3.6.5' + ((betaRelease) ? ' (beta)' : '');
TBUtils.shortVersion = 365; //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;
Expand Down Expand Up @@ -356,7 +356,7 @@ function initwrapper() {
debugObject.browserVersion = browserMatchedInfo[2];
debugObject.platformInformation = browserMatchedInfo[1];

} else if (chromeRegex.test(browserUserAgent)){
} else if (chromeRegex.test(browserUserAgent)){
browserMatchedInfo = browserUserAgent.match(chromeRegex);
debugObject.browser = 'Chrome';
debugObject.browserVersion = browserMatchedInfo[2];
Expand Down Expand Up @@ -993,8 +993,8 @@ function initwrapper() {
return callback(true);
} else {
return callback(false);
}
}

});
};

Expand Down Expand Up @@ -1054,9 +1054,9 @@ function initwrapper() {
subreddit = $body.find('.ThreadTitle__community').text();
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]);
id = browserUrl.match(idRegex)[1];

// Funny story, there is currently no functionality in new modmail that can make use of the body.
// Macros look at the sidebar and other modules don't need the body.
// Macros look at the sidebar and other modules don't need the body.
// Todo: Figure out what body to present when activated from modmacro.
var $textBody = $threadBase.find('.Message__body .md').clone();
console.log($textBody);
Expand Down Expand Up @@ -2502,4 +2502,4 @@ function initwrapper() {
var event = new CustomEvent("TBUtilsLoaded");
window.dispatchEvent(event);
});
})();
})();
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.6.4",
"version": "3.6.5",
"options_page": "data/background/options.html",
"applications": {
"gecko": {
Expand Down

0 comments on commit 90ac635

Please sign in to comment.