diff --git a/docs/index.md b/docs/index.md index 9853151..d930184 100644 --- a/docs/index.md +++ b/docs/index.md @@ -15,11 +15,11 @@ We have a Github Actions pipeline that builds, tests and publishes to Clojars for each OS, each has a suffix for its version, check below: - OSX universal - - `io.github.pfeodrippe/vybe {:mvn/version "0.7.444-macos-universal"}` + - `io.github.pfeodrippe/vybe {:mvn/version "0.7.469-macos-universal"}` - Linux (x64) - - `io.github.pfeodrippe/vybe {:mvn/version "0.7.444-linux-x64"}` + - `io.github.pfeodrippe/vybe {:mvn/version "0.7.469-linux-x64"}` - Windows (x64)g - - `io.github.pfeodrippe/vybe {:mvn/version "0.7.444-win-x64"}` + - `io.github.pfeodrippe/vybe {:mvn/version "0.7.469-win-x64"}` ## Getting started diff --git a/src/vybe/audio.clj b/src/vybe/audio.clj index 8ca8d54..4b73815 100644 --- a/src/vybe/audio.clj +++ b/src/vybe/audio.clj @@ -119,10 +119,9 @@ "Macro used to wrap audio calls so we can use it safely for users who have overtone installed." [& body] - (let [body-form (list 'do body)] - `(when @*audio-enabled? - #_(eval '(require '[overtone.core :refer :all])) - (eval (quote ~body-form))))) + `(when @*audio-enabled? + #_(eval '(require '[overtone.core :refer :all])) + ~@body)) ;; ---------------- EXPERIMENTAL (defonce *buffers (atom []))