Skip to content
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.6.1",
"version": "3.7.0",
"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.6.1",
"version": "3.7.0",
"background": {
"scripts": [ "chromeExtension.js" ]
},
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 @@ -3,7 +3,7 @@
"name": "OneNote Web Clipper",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "3.6.1",
"version": "3.7.0",
"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.6.1.0" />
Version="3.7.0.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 @@ -42,7 +42,7 @@ export abstract class ExtensionBase<TWorker extends ExtensionWorkerBase<TTab, TT
protected auth: AuthenticationHelper;
protected tooltip: TooltipHelper;
protected clientInfo: SmartValue<ClientInfo>;
protected static version = "3.6.1";
protected static version = "3.7.0";

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.6.1",
"version": "3.7.0",
"background": {
"scripts": [ "firefoxExtension.js" ]
},
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/extensions/safari/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundleShortVersionString</key>
<string>3.4</string>
<key>CFBundleVersion</key>
<string>3.6.1</string>
<string>3.7.0</string>
<key>Chrome</key>
<dict>
<key>Global Page</key>
Expand Down