diff --git a/modules/core/windows/client-updater/controller/ClientUpdate.ts b/modules/core/windows/client-updater/controller/ClientUpdate.ts index 967bdff..c6b0bb1 100644 --- a/modules/core/windows/client-updater/controller/ClientUpdate.ts +++ b/modules/core/windows/client-updater/controller/ClientUpdate.ts @@ -149,7 +149,7 @@ function initializeIpc() { targetRemoteVersion = updateAvailable ? result : undefined; windowInstance?.webContents.send("client-updater-remote-status", - !localVersion.isDevelopmentVersion() && result.version.newerThan(localVersion), + updateAvailable, result.version.toString(false), result.version.timestamp ); diff --git a/modules/core/windows/client-updater/renderer/index.html b/modules/core/windows/client-updater/renderer/index.html index ed0c149..cd66c59 100644 --- a/modules/core/windows/client-updater/renderer/index.html +++ b/modules/core/windows/client-updater/renderer/index.html @@ -25,20 +25,16 @@
Build Timestamp
-
-
Channel
-
- - - -
-
-
Latest Version
+
+ Latest Version + + +
Client Version
diff --git a/modules/core/windows/client-updater/renderer/index.scss b/modules/core/windows/client-updater/renderer/index.scss index 41ea55a..bfb01b9 100644 --- a/modules/core/windows/client-updater/renderer/index.scss +++ b/modules/core/windows/client-updater/renderer/index.scss @@ -114,6 +114,18 @@ body { .section { &.remote { margin-top: 2em; + + .title { + display: flex; + flex-direction: row; + justify-content: space-between; + + select { + margin-bottom: .1em; + } + + margin-right: -.4em; + } } .title {