-
-
Notifications
You must be signed in to change notification settings - Fork 1.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
Make it possible to "auto-downgrade" the application on channel change #1149
Comments
How do we know "check the current application channel "? |
It would only be for GenericProvider and we could compare the (current application) channel inside So for example we have this inside
And we update the
This would be a solution that only affects the GenericProvider. The other solution would be to add a configuration option like |
Relates #1182 |
#1391 will be solved soon and option |
|
…ication on channel change Close electron-userland#1149
We have separate release channels based on the configuration of the user (beta|stable).
Lets say these are the current versions:
Behavior we would like to achieve:
When a user from the
beta
channel wants to go back to thestable
channel the application should auto-update (downgrade) to the lateststable
version.Possible solutions:
GenericProvider.ts
AppUpdater.ts
and small updates on all the other Providers + interface Provider
updateOnVersionChange
orcanDowngrade
(better name suggestions are welcome) that will auto-update the application iflatestVersion
!=currentVersion
.AppUpdater.ts
Let me know if we could integrate any of these solutions with a pull request or if you have an even better proposal to achieve this "downgrade" on channel change behavior.
Thanks!
The text was updated successfully, but these errors were encountered: