Update for version 4.0.1 is not available (latest version: 1.1.1901200, downgrade is disallowed).
See original GitHub issue20.38.4
electron: 4.0.1
Update for version 4.0.1 is not available (latest version: 1.1.1901200, downgrade is disallowed).
How to prevent this check for update? My own check url is :
autoUpdater.setFeedURL('https://m.xxx.com/'); autoUpdater.checkForUpdates();
Issue Analytics
- State:
- Created 5 years ago
- Comments:5
Top Results From Across the Web
【踩坑记】electron-update的问题:更新逻辑报错 - CSDN博客
问题:. 更新逻辑报错! Update for version 4.0.1 is not available (latest version: 1.1.1901200, downgrade is disallowed).
Read more >How to downgrade Android Auto and rollback to a ... - YouTube
Apps like CarStream, Fermata Auto and AA Mirror may not work with the latest version of Android Auto. To fix the issue you...
Read more >electron updater notify for new release but do not update or ...
At last my version of node was v10.15.1 locally I updated to v14.16.0 now it works! Another issue using other versions update and...
Read more >Auto Update - electron-builder
Get all release notes (from current version to latest), not just the latest. * allowDowngrade = false Boolean - Whether to allow version...
Read more >【踩坑记】electron-update的问题:更新逻辑报错 - 程序员宅基地
... version 4.0.1 is not available (latest version: 1.1.1901200, downgrade is disallowed).https://github.com/electron-userland/electron-builder/issues/3648.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
这个问题应该是electron-updater的bug,解决办法就是:主动设置当前版本 // 设置当前版本,必须主动设置否则,有bug会去取electron的版本,而不是app的版本 autoUpdater.currentVersion = config.version // 设置更新地址 autoUpdater.setFeedURL(config.autoUpdateURL) …
config是从哪里来的?