nandi/frqpublic Fork 0
58e0f71
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.

Merge remote-tracking branch 'origin/main' into claude/apk-device-deployment-921e81

nandi committed 2026-08-30T18:41:44-07:00 Browse files
58e0f71 parents: 2308a7e 13e70a4
modified src/frq/app.jolt +11 -6
@@ -138,14 +138,19 @@
138138 (let [name (:name buffer)
139139 unread (:unread buffer)]
140140 [:card {:key name}
141- ;; Name, membership and unread count on one line — they describe the same
142- ;; thing, and the row below is for the button alone.
143- [:hbox {:spacing 12}
144- [:title-2 {:label name}]
141+ ;; The name gets the line, and membership and unread count the one under
142+ ;; it. All three on one line is what the list pane has no room for: the
143+ ;; name takes what it likes, the badges are left the remainder, and a
144+ ;; long name squeezes them into a status reading "joine/d" and a count
145+ ;; split down two lines — while the card, sized to a row that no longer
146+ ;; fits, sticks out past the cards above and below it.
147+ ;;
148+ ;; `:wrap false` on the badges: they sit beside each other or not at all.
149+ [:title-2 {:label name}]
150+ [:hbox {:spacing 12 :wrap false}
145151 [:status {:label (if (:joined? buffer) "joined" "not joined")
146152 :live (boolean (:joined? buffer))}]
147- [:vbox {:key :unread}
148- (when (pos? unread) [:label {:label (str "● " unread)}])]]
153+ (when (pos? unread) [:label {:label (str "● " unread)}])]
149154 [:dim-label {:label (s/last-preview buffer)}]
150155 [:button {:label "Open" :kind :primary :on-click #(s/open-channel! name)}]]))
151156
@@ -138,14 +138,19 @@
138 (let [name (:name buffer)138 (let [name (:name buffer)
139 unread (:unread buffer)]139 unread (:unread buffer)]
140 [:card {:key name}140 [:card {:key name}
141- ;; Name, membership and unread count on one line — they describe the same141+ ;; The name gets the line, and membership and unread count the one under
142- ;; thing, and the row below is for the button alone.142+ ;; it. All three on one line is what the list pane has no room for: the
143- [:hbox {:spacing 12}143+ ;; name takes what it likes, the badges are left the remainder, and a
144- [:title-2 {:label name}]144+ ;; long name squeezes them into a status reading "joine/d" and a count
145+ ;; split down two lines — while the card, sized to a row that no longer
146+ ;; fits, sticks out past the cards above and below it.
147+ ;;
148+ ;; `:wrap false` on the badges: they sit beside each other or not at all.
149+ [:title-2 {:label name}]
150+ [:hbox {:spacing 12 :wrap false}
145 [:status {:label (if (:joined? buffer) "joined" "not joined")151 [:status {:label (if (:joined? buffer) "joined" "not joined")
146 :live (boolean (:joined? buffer))}]152 :live (boolean (:joined? buffer))}]
147- [:vbox {:key :unread}153+ (when (pos? unread) [:label {:label (str "● " unread)}])]
148- (when (pos? unread) [:label {:label (str "● " unread)}])]]
149 [:dim-label {:label (s/last-preview buffer)}]154 [:dim-label {:label (s/last-preview buffer)}]
150 [:button {:label "Open" :kind :primary :on-click #(s/open-channel! name)}]]))155 [:button {:label "Open" :kind :primary :on-click #(s/open-channel! name)}]]))
151 156