Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 35fcfb8

Browse filesBrowse files
committed
Remove obsolete fragment identifier from IDE manual download link
The Arduino IDE has an auto update capability. A new version is checked for on every startup, and if available the user is offered an update. Although this update can usually be done automatically by the IDE, under some conditions this is not possible. For example: - The IDE package in use does not support auto update (i.e., Linux ZIP package) - The file could not be downloaded due to a transient network service outage In this case, the user is presented with a friendly dialog that explains the situation and links to the "Software" page on arduino.cc, where the user can manually download and install the new version. During the pre-release development phase of the project, the download links for Arduino IDE 2.x were on a sub-section of the "Software" page. For this reason, the linked URL included the fragment identifier `#experimental-software` so that the page would load scrolled down to the anchor at that section of the page. With the 2.0.0 release, the Arduino IDE 2.x project has graduated to a production development phase. For this reason, the download links have been moved to the top of the "Software" page and the now inaccurate `experimental-software` anchor removed from the page. The previous link with that fragment is still perfectly functional, but the fragment to a non-existent anchor serves no purpose and also miscommunicates the project status to users who notice the URL that was loaded. For this reason, it is hereby removed from the link.
1 parent 6e3fe08 commit 35fcfb8
Copy full SHA for 35fcfb8

File tree

Expand file treeCollapse file tree

1 file changed

+1
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-2
lines changed

‎arduino-ide-extension/src/browser/dialogs/ide-updater/ide-updater-dialog.tsx

Copy file name to clipboardExpand all lines: arduino-ide-extension/src/browser/dialogs/ide-updater/ide-updater-dialog.tsx
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ import {
2020
import { LocalStorageService } from '@theia/core/lib/browser';
2121
import { WindowService } from '@theia/core/lib/browser/window/window-service';
2222

23-
const DOWNLOAD_PAGE_URL =
24-
'https://www.arduino.cc/en/software#experimental-software';
23+
const DOWNLOAD_PAGE_URL = 'https://www.arduino.cc/en/software';
2524

2625
@injectable()
2726
export class IDEUpdaterDialogWidget extends ReactWidget {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.