how to create delta file
See original GitHub issueHi:
after uploading the first version of my app,how can I build the second version to support auto-update?
it seems that auto-update need a foo-version-delta.nupkg
file right?I found an option win.remoteReleases
in electron-builder
which requires a URL to your exists updates
.I’m not sure what this exactly means.For example,I created a version 0.0.1 and upload assests foo-0.0.1-full.nupkg
and foo setup.exe
, and then I do some changes for my app and want to build the version 0.0.2,but I don’t how to build the delta file
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Create Delta Table with Existing Data in Databricks - ProjectPro
Step 1: Uploading data to DBFS · Click create in Databricks menu · Click Table in the drop-down menu, it will open a...
Read more >Tutorial: Delta Lake | Databricks on AWS
Create, read, write, update, display, query, optimize, and time travel for Delta Lake tables.
Read more >How to Create Delta Lake tables
This post shows you how to create Delta Lake tables with Python, SQL, and PySpark.
Read more >Tutorial: Delta Lake - Azure Databricks | Microsoft Learn
Create, read, write, update, display, query, optimize, and time travel for Delta Lake tables.
Read more >Programming Microsoft Dynamics NAV - Create Delta files
To create Delta files we must export all the objects from our Dynamics NAV database and compare them to a similar export from...
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
Hi @ArekSredzki i prefer to reopen the issue, the real problem is not on downloading the -full.nupkg file downloading while updating the app… It is for generating the -delta.nupkg file for the next update release, which the [https://github.com/electron/windows-installer](Electron windows installer) gets as an output and downloads the full.nupkg file to generate the -delta.nupkg file. The real problem here is to keep we can’t generate the -delta.nupkg file with the electron-release-server.
@ArekSredzki I agree with @SamvelRaja here. I’ve tried config like:
And get an error like
Failed to sync URL as GitHub repo: Repo URL must be to the root URL of the repo e.g. https://github.com/myuser/myrepo
.It seems winstaller suffixes the remoteRelease url with
RELEASES
, but the URLS returned in the downloadedRELEASES
file (auto generated by electron-release-server) are not useable by winstaller.Does electron-release-server support delta builds as well as delta updates? If so what URL should we use?