nandi/frqpublic Fork 0
5326d79a94ae05525665ebd465f56ac2f279023b
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.

Show the list and the conversation at once on a wide window 10a1bd0 · on 5326d79a94ae05525665ebd465f56ac2f279023b · nandi · 19d ago
deps.edn · 27 lines · 1.3 KBClojure Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{:paths ["src"]

 ;; glimmer owns the reactive half (ratom, components, reconciler);
 ;; glimmer-vidya paints it as Vidya/egui through libvidya's retained-tree ABI.
 ;; Our fork of glimmer, until the reconciler fixes in it land upstream. A
 ;; component unmounted between a cell firing and the queued render running
 ;; used to render anyway, into widgets the backend had already freed and
 ;; handed out again — which took the message list apart in a busy channel.
 ;; And replacing a native node with one of another tag left every watcher
 ;; under it subscribed, so swapping the phone layout for the split one and
 ;; back shredded the chat: one component's props painted onto another's
 ;; widget.
 :deps {jolt-lang/glimmer   {:git/url "https://gitlab.com/nandithebull/glimmer"
                             :git/sha "399df371c790d690fb6e4560c3d4d7f838502857"}
        nandi/glimmer-vidya {:local/root "../vidya/glimmer"}}

 ;; libvidya, the Rust/egui build (the C/raylib one does not export the tree
 ;; ABI the backend binds):
 ;;   cd ../vidya && just ffi
 ;;   LD_LIBRARY_PATH=../vidya/build jolt -M:frq
 :jolt/native [{:name "vidya"
                :darwin ["libvidya.dylib"]
                :linux ["libvidya.so"]}]

 :aliases {:frq {:main-opts ["-m" "frq.app"]}}

 :tasks {frq "jolt -M:frq"}}