mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
feb6ea3f87
* [feat] added auto update option on advance settings for windows * minor fixes + translations * [feat] added popover for manual bsm update * [feat] added logic on update and restart * [feat] fixed sonar issues and added missing translations * Fix availve update and current app version were the same * Add a "See changelog" * Set autoupdate always enabled by default --------- Co-authored-by: Zagrios <40181755+Zagrios@users.noreply.github.com>
9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
|
|
export enum AutoUpdate {
|
|
ALWAYS = "always",
|
|
// When "Update and restart" is clicked
|
|
ONCE = "once",
|
|
NEVER = "never",
|
|
}
|
|
|