omp-fabric 1.10.0 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/ui/dashboard.js +2 -2
- package/dist/ui/dashboard.js.map +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.10.1
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- The Activity and Topology footers now list `3 lcm`. The view shipped in 1.10.0 but only the `?` help screen named its key, so from the two views that can reach it the ledger was invisible. A test fails if either footer stops advertising it.
|
|
8
|
+
|
|
3
9
|
## 1.10.0
|
|
4
10
|
|
|
5
11
|
### Added
|
package/dist/ui/dashboard.js
CHANGED
|
@@ -4353,7 +4353,7 @@ var FabricDashboard = class {
|
|
|
4353
4353
|
return [
|
|
4354
4354
|
title,
|
|
4355
4355
|
this.theme.fg("dim", summaryText || "No Fabric activity yet"),
|
|
4356
|
-
this.theme.fg("dim", "1 activity \xB7 2 topology \xB7 arrows move \xB7 esc close")
|
|
4356
|
+
this.theme.fg("dim", "1 activity \xB7 2 topology \xB7 3 lcm \xB7 arrows move \xB7 esc close")
|
|
4357
4357
|
].slice(0, overlayRows).map((line) => truncateToWidth5(line, width, ""));
|
|
4358
4358
|
}
|
|
4359
4359
|
lines.push(this.row(width, headerLine || this.theme.fg("muted", "No Fabric activity yet")));
|
|
@@ -4485,7 +4485,7 @@ var FabricDashboard = class {
|
|
|
4485
4485
|
}
|
|
4486
4486
|
}
|
|
4487
4487
|
lines.push(this.middleBorder(width));
|
|
4488
|
-
const navigationHint = this.overviewView === "topology" ? this.graphReplayIndex !== void 0 ? `replay ${this.graphReplayIndex + 1}/${Math.max(1, this.graphReplayLength)}${this.graphReplayLabel ? ` \xB7 ${safeText(this.graphReplayLabel)}` : ""} \xB7 r live \xB7 space ${this.graphReplayPlaying ? "pause" : "play"} \xB7 \u2190/\u2192 step \xB7 +/- speed:${this.graphReplaySpeed}\xD7 \xB7 H history \xB7 M motion:${this.graphReducedMotion ? "reduced" : "full"} \xB7 ? help` : `arrows/h/l move \xB7 j/k order \xB7 r replay \xB7 H history \xB7 M motion:${this.graphReducedMotion ? "reduced" : "full"} \xB7 f filter:${this.filter} \xB7 1 activity \xB7 ? help` : `\u2191\u2193/jk select \xB7 \u2190\u2192/tab pane \xB7 enter inspect \xB7 f filter:${this.filter} \xB7 2 topology \xB7 [ older \xB7 ] newer \xB7 ? help`;
|
|
4488
|
+
const navigationHint = this.overviewView === "topology" ? this.graphReplayIndex !== void 0 ? `replay ${this.graphReplayIndex + 1}/${Math.max(1, this.graphReplayLength)}${this.graphReplayLabel ? ` \xB7 ${safeText(this.graphReplayLabel)}` : ""} \xB7 r live \xB7 space ${this.graphReplayPlaying ? "pause" : "play"} \xB7 \u2190/\u2192 step \xB7 +/- speed:${this.graphReplaySpeed}\xD7 \xB7 H history \xB7 M motion:${this.graphReducedMotion ? "reduced" : "full"} \xB7 ? help` : `arrows/h/l move \xB7 j/k order \xB7 r replay \xB7 H history \xB7 M motion:${this.graphReducedMotion ? "reduced" : "full"} \xB7 f filter:${this.filter} \xB7 1 activity \xB7 3 lcm \xB7 ? help` : `\u2191\u2193/jk select \xB7 \u2190\u2192/tab pane \xB7 enter inspect \xB7 f filter:${this.filter} \xB7 2 topology \xB7 3 lcm \xB7 [ older \xB7 ] newer \xB7 ? help`;
|
|
4489
4489
|
lines.push(this.row(width, this.theme.fg("dim", navigationHint)));
|
|
4490
4490
|
const selectedEntity = entities[this.entityIndex];
|
|
4491
4491
|
const actionHint = this.pane === "entities" && selectedEntity ? this.theme.fg("muted", ` ${this.overviewActionHint(selectedEntity)}`) : "";
|