nandi/frqpublic Fork 0
85dfca6
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Take the jvui that reads :active and keeps a field's text inside it

Two things the screenshot showed. The TLS tick was empty and clicking it
did nothing — not because the default was wrong, it has always been true,
but because the backend read :checked where frq and libvidya both write
:active, and fired :on-change where frq listens for :on-toggled. And a
handle typed into the field ran out past its border and over what was
beside it.

Both are prop-level, which is why the tag diff missed them: a tag being
handled is not the same as a tag reading the props a client writes.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
nandi committed 2026-09-10T06:20:08-07:00 Browse files
85dfca6 parent: e4c62cd
modified deps.edn +1 -1
@@ -17,7 +17,7 @@
1717 :deps {jolt-lang/glimmer {:git/url "https://gitlab.com/nandithebull/glimmer"
1818 :git/sha "399df371c790d690fb6e4560c3d4d7f838502857"}
1919 nandi/glimmer-jvui {:git/url "https://gitlab.com/nandithebull/jolt-native"
20- :git/sha "58ad86aa2dca060f90c0bbfe7843e249e0f08402"
20+ :git/sha "c131fc627e173c8f2ca84d0f2809ac8b22dc1a03"
2121 :deps/root "glimmer-backends/glimmer-jvui"}}
2222
2323 ;; What the UI loads is SDL, and jvui declares it itself — SDL3, SDL3_ttf
@@ -17,7 +17,7 @@
17 :deps {jolt-lang/glimmer {:git/url "https://gitlab.com/nandithebull/glimmer"17 :deps {jolt-lang/glimmer {:git/url "https://gitlab.com/nandithebull/glimmer"
18 :git/sha "399df371c790d690fb6e4560c3d4d7f838502857"}18 :git/sha "399df371c790d690fb6e4560c3d4d7f838502857"}
19 nandi/glimmer-jvui {:git/url "https://gitlab.com/nandithebull/jolt-native"19 nandi/glimmer-jvui {:git/url "https://gitlab.com/nandithebull/jolt-native"
20- :git/sha "58ad86aa2dca060f90c0bbfe7843e249e0f08402"20+ :git/sha "c131fc627e173c8f2ca84d0f2809ac8b22dc1a03"
21 :deps/root "glimmer-backends/glimmer-jvui"}}21 :deps/root "glimmer-backends/glimmer-jvui"}}
22 22
23 ;; What the UI loads is SDL, and jvui declares it itself — SDL3, SDL3_ttf23 ;; What the UI loads is SDL, and jvui declares it itself — SDL3, SDL3_ttf
modified flake.lock +5 -5
@@ -155,16 +155,16 @@
155155 "rust-overlay": "rust-overlay"
156156 },
157157 "locked": {
158- "lastModified": 1789046037,
159- "narHash": "sha256-MjvqS/bWAjGZ88vGPtaCrl7W9+nuZOBNvs+mD6movHg=",
158+ "lastModified": 1789046340,
159+ "narHash": "sha256-JPUcAoRXKjEez+tTo0n8WWe3ZFjOtv1huWDz3RIUDq0=",
160160 "ref": "refs/heads/main",
161- "rev": "58ad86aa2dca060f90c0bbfe7843e249e0f08402",
162- "revCount": 78,
161+ "rev": "c131fc627e173c8f2ca84d0f2809ac8b22dc1a03",
162+ "revCount": 79,
163163 "type": "git",
164164 "url": "https://gitlab.com/nandithebull/jolt-native"
165165 },
166166 "original": {
167- "rev": "58ad86aa2dca060f90c0bbfe7843e249e0f08402",
167+ "rev": "c131fc627e173c8f2ca84d0f2809ac8b22dc1a03",
168168 "type": "git",
169169 "url": "https://gitlab.com/nandithebull/jolt-native"
170170 }
@@ -155,16 +155,16 @@
155 "rust-overlay": "rust-overlay"155 "rust-overlay": "rust-overlay"
156 },156 },
157 "locked": {157 "locked": {
158- "lastModified": 1789046037,158+ "lastModified": 1789046340,
159- "narHash": "sha256-MjvqS/bWAjGZ88vGPtaCrl7W9+nuZOBNvs+mD6movHg=",159+ "narHash": "sha256-JPUcAoRXKjEez+tTo0n8WWe3ZFjOtv1huWDz3RIUDq0=",
160 "ref": "refs/heads/main",160 "ref": "refs/heads/main",
161- "rev": "58ad86aa2dca060f90c0bbfe7843e249e0f08402",161+ "rev": "c131fc627e173c8f2ca84d0f2809ac8b22dc1a03",
162- "revCount": 78,162+ "revCount": 79,
163 "type": "git",163 "type": "git",
164 "url": "https://gitlab.com/nandithebull/jolt-native"164 "url": "https://gitlab.com/nandithebull/jolt-native"
165 },165 },
166 "original": {166 "original": {
167- "rev": "58ad86aa2dca060f90c0bbfe7843e249e0f08402",167+ "rev": "c131fc627e173c8f2ca84d0f2809ac8b22dc1a03",
168 "type": "git",168 "type": "git",
169 "url": "https://gitlab.com/nandithebull/jolt-native"169 "url": "https://gitlab.com/nandithebull/jolt-native"
170 }170 }
modified flake.nix +1 -1
@@ -64,7 +64,7 @@
6464 # drift this comment warns about wearing a different hat: one input, and
6565 # the window and the terminal are the same library either way.
6666 jolt-native = {
67- url = "git+https://gitlab.com/nandithebull/jolt-native?rev=58ad86aa2dca060f90c0bbfe7843e249e0f08402";
67+ url = "git+https://gitlab.com/nandithebull/jolt-native?rev=c131fc627e173c8f2ca84d0f2809ac8b22dc1a03";
6868 inputs.nixpkgs.follows = "nixpkgs";
6969 };
7070
@@ -64,7 +64,7 @@
64 # drift this comment warns about wearing a different hat: one input, and64 # drift this comment warns about wearing a different hat: one input, and
65 # the window and the terminal are the same library either way.65 # the window and the terminal are the same library either way.
66 jolt-native = {66 jolt-native = {
67- url = "git+https://gitlab.com/nandithebull/jolt-native?rev=58ad86aa2dca060f90c0bbfe7843e249e0f08402";67+ url = "git+https://gitlab.com/nandithebull/jolt-native?rev=c131fc627e173c8f2ca84d0f2809ac8b22dc1a03";
68 inputs.nixpkgs.follows = "nixpkgs";68 inputs.nixpkgs.follows = "nixpkgs";
69 };69 };
70 70