@jefuriiij/synthra 0.1.15 → 0.1.16

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 CHANGED
@@ -7,6 +7,17 @@ For older versions, see [GitHub Releases](https://github.com/jefuriiij/synthra/r
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.1.16] — 2026-05-29
11
+
12
+ ### Changed
13
+
14
+ - **Moat card shows 50 recent gate decisions** (was 12). The inline list
15
+ already scrolls within the card, and the `/data` payload already carries
16
+ up to 500 gates, so this just renders more of them. The headline block
17
+ count was always all-time/uncapped — unchanged.
18
+
19
+ ---
20
+
10
21
  ## [0.1.15] — 2026-05-29
11
22
 
12
23
  ### Changed
package/dist/cli/index.js CHANGED
@@ -18,7 +18,7 @@ var init_package = __esm({
18
18
  "package.json"() {
19
19
  package_default = {
20
20
  name: "@jefuriiij/synthra",
21
- version: "0.1.15",
21
+ version: "0.1.16",
22
22
  publishConfig: {
23
23
  access: "public"
24
24
  },
@@ -1041,7 +1041,7 @@ var public_default = `<!doctype html>
1041
1041
  return;
1042
1042
  }
1043
1043
  const frag = document.createDocumentFragment();
1044
- for (const g of gates.slice(0, 12)) {
1044
+ for (const g of gates.slice(0, 50)) {
1045
1045
  const row = document.createElement('div');
1046
1046
  row.className = 'gate-row';
1047
1047
  const cls = g.decision === 'block' ? 'block' : 'allow';