Skip to content

Commit

Permalink
Switch to new lib-carabiner snapshot, #73
Browse files Browse the repository at this point in the history
It looks like lib-carabiner can be built for Java 8 compatibility,
which might enable me to proceed with this project in Afterglow.
  • Loading branch information
brunchboy committed Jan 24, 2022
1 parent b1aea7d commit 95cbd7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
[org.clojure/tools.nrepl "0.2.13"]
[org.clojure/tools.reader "1.3.6"]
[org.deepsymmetry/beat-link "0.6.3" :exclusions [org.slf4j/slf4j-api]]
#_[org.deepsymmetry/lib-carabiner "1.1.6"] ; Can't use until Netlify Java 9 issue resolved.
[org.deepsymmetry/lib-carabiner "1.1.7-SNAPSHOT"]
[org.deepsymmetry/wayang "0.1.8"]
[java3d/vecmath "1.3.1"]
[java3d/j3d-core "1.3.1"]
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/afterglow/web/routes/show_control.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(ns afterglow.web.routes.show-control
(:require [afterglow.controllers :as controllers]
[afterglow.controllers.tempo :as tempo]
#_[afterglow.carabiner :as carabiner] ; Can't use until Netlify Java 9 support issue resolved.
[afterglow.carabiner :as carabiner]
[afterglow.dj-link :as dj-link]
[afterglow.effects.cues :as cues]
[afterglow.effects.dimmer :as dimmer]
Expand Down Expand Up @@ -484,7 +484,7 @@
(concat [{:label "Manual (no automatic sync)."
:value "manual"
:selected (= :manual (:type (show/sync-status)))}]
#_(when (carabiner/active?) ; Can't use until Netlify Java 9 compatibility issue resolved.
(when (carabiner/active?)
[{:label "Ableton Link"
:value "ableton"
:selected (= :ableton (:type (show/sync-status)))}])
Expand Down

0 comments on commit 95cbd7c

Please sign in to comment.