Skip to content

Commit 5dd7a32

Browse files
author
Alberto Iannaccone
committed
temp: downgrade version (for testing purposes)
1 parent a2b5bb1 commit 5dd7a32

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

Diff for: arduino-ide-extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arduino-ide-extension",
3-
"version": "2.0.0-beta.7",
3+
"version": "2.0.0-beta.6",
44
"description": "An extension for Theia building the Arduino IDE",
55
"license": "AGPL-3.0-or-later",
66
"scripts": {

Diff for: arduino-ide-extension/src/browser/contributions/new-version-notification.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,15 @@ export class NewVersionNotification implements FrontendApplicationContribution {
1919

2020
async onStart(): Promise<void> {
2121
if (await this.updatesRetriever.isUpdateAvailable()) {
22-
this.messageService.info('New Arduino IDE version available.', GO_TO_DOWNLOAD_PAGE).then(async answer => {
23-
if (answer === GO_TO_DOWNLOAD_PAGE) {
24-
shell.openExternal('https://www.arduino.cc/en/software#experimental-software');
25-
}
26-
})
22+
this.messageService
23+
.info('New Arduino IDE version available.', GO_TO_DOWNLOAD_PAGE)
24+
.then(async (answer) => {
25+
if (answer === GO_TO_DOWNLOAD_PAGE) {
26+
shell.openExternal(
27+
'https://www.arduino.cc/en/software#experimental-software'
28+
);
29+
}
30+
});
2731
}
2832
}
2933
}

Diff for: browser-app/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "browser-app",
4-
"version": "2.0.0-beta.7",
4+
"version": "2.0.0-beta.6",
55
"license": "AGPL-3.0-or-later",
66
"dependencies": {
77
"@theia/core": "next",
@@ -19,7 +19,8 @@
1919
"@theia/process": "next",
2020
"@theia/terminal": "next",
2121
"@theia/workspace": "next",
22-
"arduino-ide-extension": "2.0.0-beta.7"
22+
"arduino-ide-extension": "2.0.0-beta.6"
23+
2324
},
2425
"devDependencies": {
2526
"@theia/cli": "next"

Diff for: electron-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "electron-app",
4-
"version": "2.0.0-beta.7",
4+
"version": "2.0.0-beta.6",
55
"license": "AGPL-3.0-or-later",
66
"main": "src-gen/frontend/electron-main.js",
77
"dependencies": {
@@ -21,7 +21,7 @@
2121
"@theia/process": "next",
2222
"@theia/terminal": "next",
2323
"@theia/workspace": "next",
24-
"arduino-ide-extension": "2.0.0-beta.7"
24+
"arduino-ide-extension": "2.0.0-beta.6"
2525
},
2626
"devDependencies": {
2727
"@theia/cli": "next"

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arduino-ide",
3-
"version": "2.0.0-beta.7",
3+
"version": "2.0.0-beta.6",
44
"description": "Arduino IDE",
55
"repository": "https://github.com/bcmi-labs/arduino-editor.git",
66
"author": "Arduino SA",

0 commit comments

Comments
 (0)