overtone

plexus 2023-11-18T09:19:43.854229Z

Friends of Overtone, what are your personal top three things you'd like to see "fixed" in Overtone. Answer in the thread. Think about it first, so you don't get influenced by the previous answers. 🧵👇

plexus 2023-11-22T10:58:21.740089Z

What's wrong with at? "local SC server" do you mean the internal or external server?

denik 2023-11-22T16:58:12.908689Z

internal

denik 2023-11-22T16:58:32.119419Z

https://github.com/overtone/overtone/issues/480

plexus 2023-11-22T19:08:09.526819Z

The plan is to remove the internal one so that should maybe resolve itself

denik 2023-11-22T21:40:01.723329Z

okay, curious what the tradeoffs are in doing that other things to fix • config validation or matching conflict casing with SuperCollider. I’ve set some config params and can’t be confident that they actually did anything because of lacking validation and custom spelling. Overall preference would be simple pass through casing matching SC. E.g. s.options.numOutputBusChannels = 8; in sc becomes (config-set! :numOutputBusChannels 2) rather than (config-set! :max-output-bus 2) as it is currently. Also, since config is now persisted, is there a way to reset it?

denik 2023-11-21T22:55:27.018559Z

• fixing at when running the local SC server • better docs/wiki on the existing synth functions and proxies

plexus 2023-11-23T09:32:13.583739Z

I wrote up my thoughts about removing the internal supercollider https://groups.google.com/g/overtone/c/qndjDV5FS9Y

👀 1
plexus 2023-11-18T13:55:07.507859Z

Spend a morning getting MiniBeast running again https://github.com/overtone/mini-beast/pull/42

❤️ 1
plexus 2023-11-18T13:55:31.658499Z

To try it out

clojure -Sdeps '{:deps {overtone/mini-beast {:git/url "" :git/sha "b315addc1fc1b3125fce778a953500089c908781"}}}' -M -m minibeast.core 

plexus 2023-11-19T09:20:03.179269Z

That version still has some issues, this one should be better

clojure -Sdeps '{:deps {overtone/mini-beast {:git/url "" :git/sha "ea5894e074eb1f42dc1fa9cbb2b31fcc3783f909"}}}' -M -m minibeast.core

plexus 2023-11-19T10:01:56.600939Z

And now there's also a jar people can run.

denik 2023-11-21T22:55:40.902139Z

nice work!