diff --git a/scripts/updateRuntimePin.ts b/scripts/updateRuntimePin.ts index 23d92173..0adc08d1 100644 --- a/scripts/updateRuntimePin.ts +++ b/scripts/updateRuntimePin.ts @@ -65,7 +65,7 @@ async function main(): Promise { if (resolvedPin.mainRepoCommitHash) { console.info(`- main repo commit: ${resolvedPin.mainRepoCommitHash}`); } - console.info('- next step: run yarn install to sync yarn.lock and node_modules'); + console.info('- next step: run `yarn install` followed by `yarn build:server`'); } function normalizeRef(value: string | undefined): string { diff --git a/src-vue/navigation-operations/ServerMenu.vue b/src-vue/navigation-operations/ServerMenu.vue index 43314821..bd2aa172 100644 --- a/src-vue/navigation-operations/ServerMenu.vue +++ b/src-vue/navigation-operations/ServerMenu.vue @@ -18,7 +18,7 @@ style="box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.15)" >
-
{{ numeral(installerProgress).format('0.[0]')}}%
+
{{ numeral(installerProgress).format('0.[0]')}}%
@@ -72,8 +72,13 @@
- + +
+ +
diff --git a/src-vue/overlays-operations/ServerOverlay.vue b/src-vue/overlays-operations/ServerOverlay.vue index ff88e6d4..48d961ae 100644 --- a/src-vue/overlays-operations/ServerOverlay.vue +++ b/src-vue/overlays-operations/ServerOverlay.vue @@ -11,11 +11,17 @@

We are updating the bot program on your {{ serverIdentity() }}. This will only - take a few minutes to complete. + take a few minutes to complete. Please do not close this app until it is finished.

-

+

We are verifying and setting up your {{ serverIdentity() }}. This may take several hours to complete. + +

diff --git a/src-vue/screens-operations/mining-screen/SetupChecklist.vue b/src-vue/screens-operations/mining-screen/SetupChecklist.vue index e187327c..e457b034 100644 --- a/src-vue/screens-operations/mining-screen/SetupChecklist.vue +++ b/src-vue/screens-operations/mining-screen/SetupChecklist.vue @@ -44,7 +44,7 @@

Connect a Cloud Server - INSTALLING + INSTALLING

diff --git a/src-vue/screens-operations/vaulting-screen/SetupChecklist.vue b/src-vue/screens-operations/vaulting-screen/SetupChecklist.vue index b2a50bdf..8a747d20 100644 --- a/src-vue/screens-operations/vaulting-screen/SetupChecklist.vue +++ b/src-vue/screens-operations/vaulting-screen/SetupChecklist.vue @@ -41,7 +41,10 @@ >

-

Connect a Cloud Server

+

+ Connect a Cloud Server + INSTALLING +

@@ -241,7 +244,11 @@ function openHowVaultingWorksOverlay() { } function openServerConnectPanel() { - basicEmitter.emit('openServerConnectPanel'); + if (config.isServerAdded) { + basicEmitter.emit('openServerOverlay'); + } else { + basicEmitter.emit('openServerConnectPanel'); + } } function goBack() { @@ -262,4 +269,17 @@ section:hover { section p { @apply mt-1 ml-0.5 opacity-60; } + +.installing-badge { + animation: installing-fade 1.2s ease-in-out infinite alternate; +} + +@keyframes installing-fade { + from { + opacity: 0.3; + } + to { + opacity: 1; + } +}