-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(bundler/nsis): store main binary name to be used in registry for future updates #10952
Conversation
Package Changes Through e89819fThere are 2 changes which include tauri-bundler with minor, tauri with minor Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
data.insert("app_exe_name", to_json(app_exe_name)); | ||
// Note: `app_exe_name` kept around to not break custom wix templates depending on it | ||
data.insert("app_exe_name", to_json(&app_exe_name)); | ||
data.insert("main_binary_name", to_json(app_exe_name)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are you even using this one? doesn't look like it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah it was leftover from previous attempt at 497b481, it is fine to keep for now
No description provided.