autoUpdater.setFeedURL & autoUpdater.getFeedURL don't work
See original GitHub issue- Electron Builder Version: 20.28.1
- Electron Updater Version: 3.1.1
- Target: Windows
I try to use the function autoUpdater.setFeedURL to change updater default url but nothing happen.
autoUpdater.setFeedURL({ "provider": "generic", "url":'http://mywebsite/application/client'});
And when I try to use the function autoUpdater.getFeedURL, the function return Deprecated. Do not use it.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:3
- Comments:10 (1 by maintainers)
Top Results From Across the Web
How to use the electron-updater.autoUpdater.setFeedURL ...
To help you get started, we've selected a few electron-updater.autoUpdater.setFeedURL examples, based on popular ways it is used in public projects.
Read more >autoUpdater.setFeedURL is not a function - Stack Overflow
Here is the code. // auto update functionality const {autoUpdater} = require('electron') // local file system example: const feedURL = 'C:\\ ...
Read more >How does it work? - Update Rocks!
Set the feed url in your Electron app. Now add the auto update code to your Electron application. See also our example app...
Read more >Auto Update - electron-builder
Do not call setFeedURL. electron-builder automatically creates app-update.yml file for you on build in the resources (this file is internal, you don't need ......
Read more >electron auto updater without code signing - You.com | The AI ...
How to get My Electron Auto updater to work? ... Don't call autoUpdater. ... Do not call setFeedURL. electron-builder automatically creates app-update.yml ...
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
why is the documentation not up to date?
@Applelo you could use
checkForUpdates()
orgetUpdateInfoAndProvider()
directly (undocumented for some reason) to see details about current config and more. Both return a Promise though (that’s probably a reason for deprecation ofgetFeedURL
, which apparently was sync).