diff --git a/extension/Info.plist b/extension/Info.plist
index bae1518..4761977 100644
--- a/extension/Info.plist
+++ b/extension/Info.plist
@@ -13,9 +13,9 @@
CFBundleInfoDictionaryVersion
6.0
CFBundleShortVersionString
- 3.6.1
+ 3.6.2
CFBundleVersion
- 361
+ 362
Chrome
Global Page
diff --git a/extension/data/modules/usernotes.js b/extension/data/modules/usernotes.js
index 378b4ee..2bac840 100644
--- a/extension/data/modules/usernotes.js
+++ b/extension/data/modules/usernotes.js
@@ -137,7 +137,7 @@ self.usernotes = function usernotes() {
$things.attr('data-ut-type', TYPE_NEW_MODMAIL);
}
else {
- $things = $('#siteTable div.thing:not(.ut-thing)');
+ $things = $('#siteTable div.thing:not(.ut-thing), .commentarea div.thing:not(.ut-thing)');
$things.attr('data-ut-type', TYPE_THING);
}
diff --git a/extension/data/tbutils.js b/extension/data/tbutils.js
index fc4bede..a3fa77b 100644
--- a/extension/data/tbutils.js
+++ b/extension/data/tbutils.js
@@ -120,8 +120,8 @@ function initwrapper() {
// Public variables
- TBUtils.toolboxVersion = '3.6.1' + ((betaRelease) ? ' (beta)' : '');
- TBUtils.shortVersion = 361; //don't forget to change this one! This is used for the 'new version' notification.
+ TBUtils.toolboxVersion = '3.6.2' + ((betaRelease) ? ' (beta)' : '');
+ TBUtils.shortVersion = 362; //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;
diff --git a/extension/manifest.json b/extension/manifest.json
index 15bf590..18a5bbb 100644
--- a/extension/manifest.json
+++ b/extension/manifest.json
@@ -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.1",
+ "version": "3.6.2",
"options_page": "data/background/options.html",
"applications": {
"gecko": {