feat: Setting displays versions info
All checks were successful
gitea-sync/antos-frontend/pipeline/head This commit looks good

This commit is contained in:
DanyLE
2024-03-18 17:06:53 +01:00
parent 04da2a9d39
commit b99668f4f2
7 changed files with 39 additions and 17 deletions

View File

@ -82,6 +82,7 @@ namespace OS {
static StartupHandle: typeof SettingHandle;
static SettingHandle: typeof SettingHandle;
static AppAndServiceHandle: typeof SettingHandle;
static VersionsHandle: typeof SettingHandle;
/**
*Creates an instance of Setting.
@ -105,6 +106,7 @@ namespace OS {
new Setting.LocaleHandle(this.find("locale"), this);
new Setting.StartupHandle(this.find("startup"), this);
new Setting.AppAndServiceHandle(this.find("app-services"), this);
new Setting.VersionsHandle(this.find("app-about"), this);
containter.selectedIndex = 0;
(this.find("btnsave") as GUI.tag.ButtonTag ).onbtclick = (e) => {
this._api