mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-10-17 23:38:30 +00:00
IDE updater bugfixes (#846)
* IDE updater assorted bugfix - add linux AppImage target - fix hardcoded if condition that causes to always show the update dialog - fix redundant test build version - recalculate sha512 after notarization on macOS * boost notarization speed * recalculate artifacts hash
This commit is contained in:

committed by
GitHub

parent
9b1f15def8
commit
0a87fd00f3
@@ -58,10 +58,7 @@ export class IDEUpdaterImpl implements IDEUpdater {
|
||||
} = await this.updater.checkForUpdates();
|
||||
|
||||
this.cancellationToken = cancellationToken;
|
||||
if (
|
||||
this.updater.currentVersion.compare(updateInfo.version) === -1 ||
|
||||
true
|
||||
) {
|
||||
if (this.updater.currentVersion.compare(updateInfo.version) === -1) {
|
||||
/*
|
||||
'latest.txt' points to the latest changelog that has been generated by the CI,
|
||||
so we need to make a first GET request to get the filename of the changelog
|
||||
|
Reference in New Issue
Block a user