synartesis 0.6.18 → 0.6.19
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 +23 -0
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
What changed, and why it mattered. Dates are release dates.
|
|
4
4
|
|
|
5
|
+
## 0.6.19 — 2026-09-15
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Both guides showed output the command no longer produces.** The worked
|
|
10
|
+
examples of `show` were still the pre-0.6.18 single-line row, and the session
|
|
11
|
+
lists were still the pre-0.6.17 table of full uuids -- in the runbook, whose
|
|
12
|
+
pdf had just been rebuilt from that stale text, and in the user guide, whose
|
|
13
|
+
pdf had not been rebuilt at all, so the two shipped documents disagreed with
|
|
14
|
+
each other as well as with the terminal. Regenerated from real runs and both
|
|
15
|
+
pdfs built together.
|
|
16
|
+
|
|
17
|
+
- **Four tap targets touching on a phone.** A rule added with the last release
|
|
18
|
+
set `gap:0` on the screenshot tabs, overriding the deliberate `gap:8px` set
|
|
19
|
+
with the two columns further up the same stylesheet. The buttons carry their
|
|
20
|
+
own border, so the four of them closed into one block with doubled seams and
|
|
21
|
+
no separation between adjacent targets. Measured at 375px: they abutted
|
|
22
|
+
exactly, at x=22 and x=188 across a width of 166.
|
|
23
|
+
|
|
24
|
+
- `badgeOf` and `statusOf` took a `pad` that defaulted to true, and the one
|
|
25
|
+
call site of each passes it explicitly -- so the default could never apply,
|
|
26
|
+
and it was the wrong answer for the ordinary case anyway. Required now.
|
|
27
|
+
|
|
5
28
|
## 0.6.18 — 2026-09-15
|
|
6
29
|
|
|
7
30
|
A pass over the terminal and the site, most of it drafted by another model and
|
package/dist/cli.js
CHANGED
|
@@ -3524,12 +3524,12 @@ var CLASS_MARK = {
|
|
|
3524
3524
|
unclassified: "?"
|
|
3525
3525
|
};
|
|
3526
3526
|
var BADGE_WIDTH = "irreversible".length + 2;
|
|
3527
|
-
function badgeOf(action, pad2
|
|
3527
|
+
function badgeOf(action, pad2) {
|
|
3528
3528
|
const name = `${CLASS_MARK[action.class]} ${action.class}`;
|
|
3529
3529
|
const plain = pad2 ? name.padEnd(BADGE_WIDTH) : name;
|
|
3530
3530
|
return action.class === "irreversible" ? style.accent(plain) : style.quiet(plain);
|
|
3531
3531
|
}
|
|
3532
|
-
function statusOf(action, pad2
|
|
3532
|
+
function statusOf(action, pad2) {
|
|
3533
3533
|
const label = labelFor(action);
|
|
3534
3534
|
const text = pad2 ? label.padEnd(13) : label;
|
|
3535
3535
|
if (wasRefused(action)) {
|