Skip to content

Version Update from 3.10.2 to 3.10.3 #570

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 3.10.3 (December 2024)
Improvement : Disabled the extension for unclippable pages and fixed telemetry logging

## 3.10.2 (December 2024)
Improvement : Removed the notification permission

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.10.2",
"version": "3.10.3",
"name": "webclipper",
"private": true,
"description": "The core of the OneNote Web Clipper found at https://www.onenote.com/clipper",
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/extensions/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "OneNote Web Clipper",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "3.10.2",
"version": "3.10.3",
"background": {
"service_worker": "chromeExtension.js",
"type": "module"
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/extensions/edge/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "OneNote Web Clipper",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "3.10.2",
"version": "3.10.3",
"background": {
"scripts": ["edgeExtension.js"],
"persistent": true
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/extensions/edge/package/AppXManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Identity
Name="Microsoft.OneNoteWebClipper"
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
Version="3.10.2.0" />
Version="3.10.3.0" />

<Properties>
<DisplayName>OneNote Web Clipper</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/extensions/extensionBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export abstract class ExtensionBase<TWorker extends ExtensionWorkerBase<TTab, TT
protected auth: AuthenticationHelper;
protected tooltip: TooltipHelper;
protected clientInfo: SmartValue<ClientInfo>;
protected static version = "3.10.2";
protected static version = "3.10.3";

constructor(clipperType: ClientType, clipperData: ClipperData) {
this.setUnhandledExceptionLogging();
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/extensions/firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "OneNote Web Clipper",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "3.10.2",
"version": "3.10.3",
"background": {
"scripts": ["firefoxExtension.js"]
},
Expand Down
4 changes: 2 additions & 2 deletions src/scripts/extensions/safari/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.10.2</string>
<string>3.10.3</string>
<key>CFBundleVersion</key>
<string>3.10.2</string>
<string>3.10.3</string>
<key>Chrome</key>
<dict>
<key>Global Page</key>
Expand Down