We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c324141 commit facd982Copy full SHA for facd982
main.ts
@@ -34,7 +34,13 @@ if (process.platform === 'linux') {
34
type = 'linux';
35
}
36
37
-autoUpdater.setFeedURL(`https://ftp.codext.de/remotecontrol-desktop/${type}/`);
+autoUpdater.setFeedURL({
38
+ provider: 'github',
39
+ owner: 'codext-remotecontrol',
40
+ repo: 'remotecontrol-desktop',
41
+ private: false,
42
+ releaseType: 'release',
43
+});
44
autoUpdater.autoDownload = true;
45
46
autoUpdater.on('download-progress', (progressObj) => {
0 commit comments