Skip to content

Commit

Permalink
Release 2023-07-13T12:37
Browse files Browse the repository at this point in the history
  • Loading branch information
unclebob committed Jul 13, 2023
1 parent fb23b4f commit 901fa11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/more_speech/config.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
(def read-contact-lists-days-ago 0.5)

(def migration-level 11)
(def version "2023-05-23T09:23")
(def version "2023-07-13T12:37")

(def kinds-not-to-validate [7])

Expand Down
5 changes: 3 additions & 2 deletions src/more_speech/mem.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
[more-speech.types.tabs-window :as tabs-window-type]
[more-speech.types.user-window :as user-window-type]
[more-speech.types.zaps :as zaps-type])
(:import (javax.swing JFrame)
(:import (clojure.core.async.impl.channels ManyToManyChannel)
(javax.swing JFrame)
(javax.swing.tree DefaultMutableTreeNode)))


Expand Down Expand Up @@ -41,7 +42,7 @@
(s/def ::frame #(instance? JFrame %)) ;The main frame
(s/def ::selected-event ::id) ;The id of the currently selected event
(s/def ::selected-tab ::tab-index) ;index of the selected tab within :tabs-list
(s/def ::send-chan #(= clojure.core.async.impl.channels.ManyToManyChannel (type %)))
(s/def ::send-chan #(= ManyToManyChannel (type %)))
(s/def ::incoming-events int?) ;number of events processed since startup.

;count of events received from a given relay.
Expand Down

0 comments on commit 901fa11

Please sign in to comment.