Questions tagged [electron-updater]
69 questions
0
votes
1 answer
ElectronJS autoupdater.setFeedURL() throw exception ["Update check failed. The server sent an invalid response. Try again later."]
I'am working on a desktop app using electron everything is working well, except for the autoUpdater.setFeedURL() method, it returns always this exception : "Update check failed. The server sent an invalid response. Try again later."
if(!isDev)
…

Ilias Elbadaoui
- 11
- 4
0
votes
1 answer
Updating electron's update server value with an app update
I have a privately distributed app in electron, which uses my own git account (private repository) for update purposes.
I'm using GH_TOKEN.txt and this method;
autoUpdater.setFeedURL({
provider: 'github',
repo: '****',
owner: '****',
…

siniradam
- 2,727
- 26
- 37
0
votes
1 answer
Electron-Updater and AWS S3 bucket policy - Error: HttpError: 403 Forbidden
I am creating an Electron.js app and I am using S3 to host the new releases of my app. I can't leave the S3 bucket open to the public and need to limit it only to the users in the company where the app will be used. Therefore, I decided to limit…

Rookie
- 859
- 8
- 22
0
votes
0 answers
electron-updater auto update on linux
i am desperately in need for help. I have been trying this for so long and i got no results at all.
So, my problem is. I am using the electron-updater package to auto update my electron app. It's working on windows but on linux is another story. I…

rochismo
- 63
- 7
0
votes
1 answer
How to install and build fomantic-ui in GitLab CI?
Background: I'm trying to use electron-updater with my electronJS code on a GitLab public repo
I'm following this guide: https://gist.github.com/Slauta/5b2bcf9fa1f6f6a9443aa6b447bcae05
However, the GitLab CI build stage keeps failing with the error
…

Bojan Krkic
- 349
- 3
- 10
0
votes
1 answer
How can i read a release file in GitHub in "raw" format
Concept:
I want to have a PHP API that will detect the latest release number on github using latest.yml and download the correct executable file using the URL in the latest.yml file.
Right now I'm using electron builder + updater to create my latest…

Lucas
- 598
- 9
- 18
0
votes
1 answer
Electron nsis-web, how to change artifacts names
How to change artifacts name, for nsis-web with autoupdater?
By default archives for web installer named like {appName}{version}-{arch}.{ext}
• building embedded block map file=dist/nsis-web/app-1.0.0-ia32.nsis.7z
• building embedded block map …

Dmitriy Yurov
- 66
- 1
- 7
0
votes
1 answer
Error Cannot read property 'updaterCacheDirName' of undefined
I'm trying to create an application with auto update, but I have an error when running the version search
the app finds the version and when it is about to go down I get this error
Error: TypeError: Cannot read property 'updaterCacheDirName' of…

Neyunse
- 105
- 5
0
votes
2 answers
Why AWS4 Signature Does Not Match?
I am using AWS4 to generate signature and passing in request header. Generated signature is not getting validated.
const opts = {
service: 's3',
region: 'region-name',
method: 'GET',
host:…

CoronaVirus
- 401
- 2
- 7
- 20