Release ForgeFlow 0.8.3 premium deployment UX

This commit is contained in:
NuklearRabbit
2026-07-26 01:17:21 +02:00
parent b7daef3cd9
commit cb95c407d9
13 changed files with 2957 additions and 909 deletions
+11 -11
View File
@@ -416,21 +416,21 @@
);
repository.readyToDeploy = Boolean(
repository.localPath &&
status?.clean &&
status.branch.upstream &&
status.branch.ahead === 0 &&
status.branch.behind === 0 &&
repository.deploymentProfiles.some(
(entry) => entry.branch === status.branch.head,
),
status?.clean &&
status.branch.upstream &&
status.branch.ahead === 0 &&
status.branch.behind === 0 &&
repository.deploymentProfiles.some(
(entry) => entry.branch === status.branch.head,
),
);
repository.attention =
!repository.localPath ||
Boolean(
status?.counts.conflicts ||
status?.branch.behind ||
status?.branch.ahead ||
status?.counts.changed,
status?.branch.behind ||
status?.branch.ahead ||
status?.counts.changed,
);
repository.attentionReason = !repository.localPath
? "No local folder linked"
@@ -564,7 +564,7 @@
await wait(80);
snapshot();
return {
appVersion: "0.8.2-demo",
appVersion: "0.8.3-demo",
platform: "win32",
state: clone(state),
git: { available: true, version: "git version 2.47.3" },