Compare commits
4 Commits
a4fc1f7c14
...
9653c33931
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9653c33931 | ||
|
|
830d361351 | ||
|
|
6f8596fc88 | ||
|
|
3653a39fd8 |
@ -342,7 +342,10 @@ class UpdaterPage {
|
|||||||
// withToolbar=false lets an embedding surface (the fleet Overview tab) skip
|
// withToolbar=false lets an embedding surface (the fleet Overview tab) skip
|
||||||
// the inline Check button because it provides one in its own header.
|
// the inline Check button because it provides one in its own header.
|
||||||
renderImprovements(withToolbar = true) {
|
renderImprovements(withToolbar = true) {
|
||||||
if (!this.artifacts) return this.empty('No hotfix data yet — the automatic scan fetches the signed improvements index within a couple of minutes.', true);
|
// No inline Check button on the empty state: the host auto-scan repopulates
|
||||||
|
// this within a couple of minutes (and the embedding header already carries
|
||||||
|
// a manual Check), so the message alone is the right, button-free empty UI.
|
||||||
|
if (!this.artifacts) return this.empty('No hotfix data yet — the automatic scan fetches the signed improvements index within a couple of minutes.');
|
||||||
const list = Array.isArray(this.artifacts.artifacts) ? this.artifacts.artifacts : [];
|
const list = Array.isArray(this.artifacts.artifacts) ? this.artifacts.artifacts : [];
|
||||||
const signed = !!this.artifacts.signed;
|
const signed = !!this.artifacts.signed;
|
||||||
if (!list.length) return this.empty('No improvements available right now — you are all caught up. 🎉');
|
if (!list.length) return this.empty('No improvements available right now — you are all caught up. 🎉');
|
||||||
|
|||||||
@ -92,7 +92,9 @@ reconcileConfigFile()
|
|||||||
local bak_file="${live%/*}/.${live##*/}.bak"
|
local bak_file="${live%/*}/.${live##*/}.bak"
|
||||||
runCfgOp cp -a "$live" "$bak_file"
|
runCfgOp cp -a "$live" "$bak_file"
|
||||||
{ [[ -n "$containers_dir" && "$live" == "$containers_dir"* ]] && runFileWrite "$live" < "$tmp" || runInstallOp cp "$tmp" "$live"; }
|
{ [[ -n "$containers_dir" && "$live" == "$containers_dir"* ]] && runFileWrite "$live" < "$tmp" || runInstallOp cp "$tmp" "$live"; }
|
||||||
isSuccessful "Reconciled config: $(basename "$live") (backup: ${bak_file##*/})"
|
# A hidden .<file>.bak sibling is still written above for safety; the
|
||||||
|
# per-file result is intentionally silent — the intro notice and the
|
||||||
|
# per-section "...completed." lines are the only reconcile output.
|
||||||
fi
|
fi
|
||||||
rm -f "$tmp"
|
rm -f "$tmp"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user