Skip to content

Commit

Permalink
Temporarily back out changes for #73
Browse files Browse the repository at this point in the history
Unfortunately, the build infrastructure on Netlify that creates the
Afterglow developer guide can't handle libraries compiled for Java 9
or later yet! And lib-carabiner is a Java 9 library. So this is
temporarily dead in the water.
  • Loading branch information
brunchboy committed Jan 24, 2022
1 parent 0588bd7 commit b1aea7d
Show file tree
Hide file tree
Showing 3 changed files with 5 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"]
#_[org.deepsymmetry/lib-carabiner "1.1.6"] ; Can't use until Netlify Java 9 issue resolved.
[org.deepsymmetry/wayang "0.1.8"]
[java3d/vecmath "1.3.1"]
[java3d/j3d-core "1.3.1"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,3 +373,5 @@ shutting down."
;; [x] Always offer Ableton Link as a sync option if Carabiner connected successfully. (done!)
;; [ ] Figure out where that menu gets handled and implement the request to sync to Ableton.
;; [ ] Start Carabiner if possible when starting up a show.

;; TODO: Is there an interface for choosing sync on the Push? If so add support there too.
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]
#_[afterglow.carabiner :as carabiner] ; Can't use until Netlify Java 9 support issue resolved.
[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?)
#_(when (carabiner/active?) ; Can't use until Netlify Java 9 compatibility issue resolved.
[{:label "Ableton Link"
:value "ableton"
:selected (= :ableton (:type (show/sync-status)))}])
Expand Down

0 comments on commit b1aea7d

Please sign in to comment.