Skip to content

Commit 1d4bfd8

Browse files
ArpanKundu97Arpan Kundu
and
Arpan Kundu
authored
version update from 3.10.2 to 3.10.3 (#570)
Co-authored-by: Arpan Kundu <[email protected]>
1 parent 9f2983b commit 1d4bfd8

File tree

9 files changed

+13
-10
lines changed

9 files changed

+13
-10
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## 3.10.3 (December 2024)
4+
Improvement : Disabled the extension for unclippable pages and fixed telemetry logging
5+
36
## 3.10.2 (December 2024)
47
Improvement : Removed the notification permission
58

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.10.2",
2+
"version": "3.10.3",
33
"name": "webclipper",
44
"private": true,
55
"description": "The core of the OneNote Web Clipper found at https://www.onenote.com/clipper",

src/scripts/extensions/chrome/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "OneNote Web Clipper",
44
"description": "__MSG_appDesc__",
55
"default_locale": "en",
6-
"version": "3.10.2",
6+
"version": "3.10.3",
77
"background": {
88
"service_worker": "chromeExtension.js",
99
"type": "module"

src/scripts/extensions/edge/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "OneNote Web Clipper",
55
"description": "__MSG_appDesc__",
66
"default_locale": "en",
7-
"version": "3.10.2",
7+
"version": "3.10.3",
88
"background": {
99
"scripts": ["edgeExtension.js"],
1010
"persistent": true

src/scripts/extensions/edge/package/AppXManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Identity
88
Name="Microsoft.OneNoteWebClipper"
99
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
10-
Version="3.10.2.0" />
10+
Version="3.10.3.0" />
1111

1212
<Properties>
1313
<DisplayName>OneNote Web Clipper</DisplayName>

src/scripts/extensions/extensionBase.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export abstract class ExtensionBase<TWorker extends ExtensionWorkerBase<TTab, TT
4141
protected auth: AuthenticationHelper;
4242
protected tooltip: TooltipHelper;
4343
protected clientInfo: SmartValue<ClientInfo>;
44-
protected static version = "3.10.2";
44+
protected static version = "3.10.3";
4545

4646
constructor(clipperType: ClientType, clipperData: ClipperData) {
4747
this.setUnhandledExceptionLogging();

src/scripts/extensions/firefox/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "OneNote Web Clipper",
44
"description": "__MSG_appDesc__",
55
"default_locale": "en",
6-
"version": "3.10.2",
6+
"version": "3.10.3",
77
"background": {
88
"scripts": ["firefoxExtension.js"]
99
},

src/scripts/extensions/safari/Info.plist

+2-2
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.10.2</string>
16+
<string>3.10.3</string>
1717
<key>CFBundleVersion</key>
18-
<string>3.10.2</string>
18+
<string>3.10.3</string>
1919
<key>Chrome</key>
2020
<dict>
2121
<key>Global Page</key>

0 commit comments

Comments
 (0)