Changelog History
Page 1
-
v4.3.0 Changes
<!-- (view commits): -->
🛠 This is another maintenance and bugfix release - primarily addressing a critical issue with configuring external sound cards for audio input. This was accidentally introduced in v4.2. An issue with the auto-indentation preference in the GUI has also been addressed.
The GUI is now restricted to having one instance open at any one time. Having multiple instances of Sonic Pi running simultaneously can cause conflicts. This is now no longer possible, which should reduce any issues users may have observed when accidentally opening the app multiple times in quick succession. Now, only the first instance will open and all the subsequent others will exit before starting if they detect another instance already running.
GUI
- Restrict running instances to only allow one instance of Sonic Pi to be running at any one time on a given machine.
🌐 Translations
- 👌 Improvements to the Dutch, Estonian, Japanese and Polish translations.
🛠 Bugfixes
- 🔧 The behaviour of external audio card configuration should now be as it was in v4.1.
- The auto-indent preference in the GUI now works as expected. Unchecking will stop the GUI from automatically reformatting the code.
-
v4.2.0 Changes
14th September 2022 <!-- (view commits): -->
🚀 The main purpose of this release is to address a booting issue discovered on a school Windows cluster with common security restrictions. This issue was reported by Adam Cooper from Moor Park High School & Sixth Form in the UK. Adam was wonderfully helpful in finding the specific issue and testing potential solutions. Thanks Adam!
🚀 If you happen to have had any trouble running v4 of Sonic Pi on your school clusters, please give this release a go! (Note, this issue didn't affect v3 of Sonic Pi).
🌐 In addition, there have been some translation improvements, Global Time Warp now has a greater range and a couple of
time_warp
related bugs were found and dealt with. Have fun!GUI
- 🔄 Change Global Time Warp range from +-250 to -250 -> 999. This lets users access the full phase down to a BPM of 48.
👌 Improvements
- 🏁 Booting process on Windows has been modified to enable it to run when executing in an environment which restricts access to CMD (which prevents terminal usage and running .bat files). This is typical in schools.
- Sonic Pi stores all its history, configuration and logs in a folder called
.sonic-pi
which is typically placed in the user's home directory. If the user happens to not have permission to write to their home directory, Sonic Pi now raises a descriptive error on boot and explains that the fix is to set an environment variable calledSONIC_PI_HOME
to point to a directory the user does have permission to write to.
🌐 Translations
- 👌 Improvements to the Dutch, Hungarian and Indonesian translations.
🛠 Bugfixes
- Teach timing safety system that
time_warp
doesn't sleep (even if it contains calls tosleep
internally). This now means that wrapping all code within alive_loop
withtime_warp
no longer causes the thread to spin out of control. It instead reports that the live loop did not sleep as expected. - 🔀 Throw error when attempting to call
sync
within atime_warp
. This is because time warps are effectively timeless andsync
asks the running thread to wait for an unknown period (until a matching event appears). Attempting to wait within a timeless context is clearly nonsensical!
-
v4.1.0 Changes
30th August 2022 <!-- (view commits): -->
🚀 The release of v4 of Sonic Pi introduced the ability to change the tempo of live running code to an external beat. This is possible either by setting the tempo manually to a specific BPM (Beats Per Minute) or by using the Tap Tempo button to tap along to an external rhythm. However, even when you do this, it's quite likely that things still don't sound quite right as there's a good chance that the two rhythms are out of phase despite being at the same tempo. This release introduces a new feature - Global Time Warp which lets you shift the phase of Sonic Pi's timing back or forward up to 250 milliseconds to let you align it with an external rhythm.
🛠 Taking a quick step back, what does it mean for two rhythms to be out of phase and why is it a problem? Imagine you had two metronomes ticking away. If one has a higher tempo than the other, then one will be ticking faster than the other. This can be fixed by setting the tempos to be the same. However, unless they were both started at exactly the same time, they both wont be ticking at the same time. Instead, one will tick, then the other, then the first, then the second, etc. The second will always be a little later than the first and as they are at the same tempo, they will never catch up with each other, they will always tick at different times. This is called being out of phase. When two rhythms are out of phase it can sound very messy. Therefore, being able to get rhythms to start at exactly the same time is really important to being able to jam together and for it to sound good.
The new Global Time Warp control lets you shift the timing of all triggered synths, MIDI and OSC messages forwards or backwards by a specified time in milliseconds. You can either slide a slider or type in a specific time to adjust the phase of Sonic Pi's timing to match the phase of an external rhythm.
This means you can now easily jam to an external track - first by tapping out the tempo and then by shifting the phase using the new Global Time Warp controls until it sounds right. This is essentially what DJs do when they mix tracks together in a live set - only now you can layer coded rhythms, basslines and riffs on top of external music with code. This is not only a great way to perform live, but it's also a wonderful way to practice - by jamming along to music you love.
💻 In addition to this, the accuracy of the Tap Tempo functionality has been improved in addition to UI tweaks to all the metronome controls.
Have fun jamming in phase to external music and take your live coding collaborations to the next level!
GUI
- 🆕 New Global Time Warp controls. This lets you adjust the timing of all scheduled events (synths, samples, MIDI and OSC) forwards or backwards up to 250 milliseconds. This is important for matching the phase of an external rhythm.
- 👌 Improved Tap Tempo logic aimed towards increased BPM detection accuracy and speed.
- BPM scrubber and new Global Time Warp scrubber now respond to mouse wheel changes.
👌 Improvements
- Clearly specify in the tutorial that user-defined function names should start with a lower case letter. Therefore use
define :foo
rather thandefine :Foo
.
🌐 Translations
- 🌐 Minor improvements to the Indonesian, Korean Portuguese (Brazil) and Russian translations.
🛠 Bugfixes
- The
duration:
opt formidi_clock_beat
has been fixed. - Fix
scsynth_opts
andscsynth_opts_override
options in the~/.sonic-pi/config/audio-settings.toml
config file. - 🍎 Audio output via external soundcards on macOS should now work without requiring audio inputs to be enabled in the GUI.
- 0️⃣
current_debug
now correctly returnstrue
if logging/debug is enabled (the default). Previously it reported the inverse. - 📚 Minor improvements to documentation layout.
-
v4.0.3 Changes
18th July 2022 <!-- (view commits): -->
🛠 This is a minor bugfix and maintenance release.
👌 Improvements
- ⚡️ The docs for
beat
have been updated to reflect the beat value can no longer be assumed to start at0
. This changed since Ableton Link integration in v4 which now defines the initial beat value based on its internal state.
🌐 Translations
- 🌐 Minor improvements to the Vietnamese translation.
🛠 Bugfixes
- A regression in the function
midi_sysex
introduced in v4 has been resolved.midi_sysex
can now be called as expected.
- ⚡️ The docs for
-
v4.0.2 Changes
15th July 2022 <!-- (view commits): -->
🛠 Hot on the heals of v4.0.1 here's another bugfix release addressing an issue with the translations.
🚀 During the last year there has been significant upheaval of the process used to build Sonic Pi. Somehow, during this upheaval, the translations never got added into the final release builds, despite being part of the dev builds. This has been true since v4.0 BETA 1 back in August 2021 - yet it somehow went unnoticed until now. Apologies! This release fixes this and re-introduces the translations which are so important for lowering the barrier to entry across the world.
As a bonus, a couple of nice improvements also managed to sneak in for good measure. Have fun!
GUI
- 🚀 All the translations are now available again - including the vast amount of new translation effort since v3.3.1 was released.
- Loading a file no longer erases the undo history. This means that you can now "undo" a file load in the current buffer and return it to the state prior to the load.
- The BPM-scrubbing behaviour (clicking your mouse and dragging to change the BPM) has been tweaked to make it easier to use.
- 👌 Improvements for the Portuguese translation.
-
v4.0.1 Changes
12th July 2022 <!-- (view commits): -->
🛠 This is a bugfix release addressing a startup issue for a number of users with non-ASCII characters within audio harware information on macOS.
🌐 We also sadly say goodbye to Core Team member Hanno Zulla who did amazing work with Linux packaging - especially getting Sonic Pi into Debian. Hanno also spearheaded the translation work setting up the crowdsourced translation system which has now enabled Sonic Pi to be translated into over 50 languages. Thank-you so much Hanno - we wish you success and happiness in all you do going forwards.
🚀 This release also includes Italian and Polish translation updates.
-
v4.0.0 Changes
6th July, 2022 <!-- (view commits): -->
Get ready to Jam with v4 of Sonic Pi.
🔄 In this release, the internal timing algorithms have been completely refactored to enable them to link to a new global metronome. The GUI now features a new metronome panel which will let you dynamically change the BPM of your code whilst it is running. You can also use the new "Tap Tempo" button to click out a tempo and Sonic Pi will automatically shift to play in time with your taps. Additionally, you can link the metronome with other versions of Sonic Pi running on other computers connected to the same network (wifi or ethernet). This means it is now possible to gather some laptops together to form an ensemble or turn a whole classroom of computers into an orchestra of live coders - and for everyone to be in time with each other. You can even dynamically change the BPM for everyone on the network whilst code is running on everyone's computers independently and everything maintains synchronised and in time. It's a real jam.
🔀 Finally, you're not limited to syncing tempo with other copies of Sonic Pi. The new global metronome is built on top of a wonderful piece of technology called Link which was developed and open sourced by Ableton who also make Live and Push, both widely used by professional musicians and also automatically sync using Link. Additionally there are also over 200 other apps or hardware products that also sync with Link. Sonic Pi can therefore now automatically jam with any of these with just a click of a button. It's so exciting to imagine the new kinds of bands and collaborations that are going to be possible with this new timing system.
🚀 There's also a large number of other improvements and fixes within this release that together combine to form the most powerful and exciting release of Sonic Pi yet. See below for a full breakdown of visible changes.
🚀 This release would not have been possible without the huge number of fabulous contributors that have been involved. Key contributions have been a huge refactoring of our GUI by Chris Maughan, the wrapping of Link as an Erlang NIF by Luis Lloret and the tireless and constant attention to detail by Ethan Crawford. Thanks so much to you all. Thanks also to José Valim for financially supporting development during a tricky period. José is the creator of the programming language Elixir which is now integrated into the internals of Sonic Pi. Elixir opens up a rich world of exciting opportunities within Sonic Pi which we have already started exploring with earnest. Expect exciting things for the future and consider becoming a Patreon supporter to automatically get access to all upcoming BETAs.....
🐧 Finally, we would love for you all to extend a warm welcome to the latest member of the Sonic Pi Core Team: Lily Foster. She brings a huge depth of Linux knowledge to the team and we're terrifically excited to have her on board.
Now, go and get your Live Coded Jam On!
💥 Breaking Changes
- 🔗 The default BPM is now set to the new global Link metronome. This is set to 60 by default, so on the surface the behaviour will appear identical. However, if you change the Link metronome BPM using the GUI or the new fn
set_link_bpm!
it will change the BPM for all threads dynamically. Previous behaviour (a static BPM of 60 unlinked to the global metronome) can be obtained by starting your code withuse_bpm 60
. - 🛠 Previously it was possible that the
onset:
option forsample
silently ignored the last onset of a given sample. This has now been fixed. Some samples may therefore have an additional onset index which won't affect any code using earlier indexes but will affect code which uses indexes larger than the number of onsets (and therefore relying on the index wrapping behaviour). - 🚚 The Minecraft Pi Edition API has been removed (all
mc_
fns). Minecraft Pi Edition appears to no longer ship on Raspberry Pi OS and the Pi Edition API is not the same as the standard Minecraft API. - The main mixer settings have been modified to reduce load on the limiter in common scenaries with the GUI volume slider set to a high position. This caused distortion and other unwanted audio issues. This change should be an improvement for most users - however if you wish to return to the old behaviour, you can run the following at the start of your session:
set_mixer_control! pre_amp: 1, amp: 1
. - The value returned by
beat
no longer starts at0
. Instead it is now initialised with Ableton Link's current beat value. Other than the initial value not being0
,beat
's behaviour remains unchanged.
🆕 New
- 👌 Support for Ableton Link. This enables you to synchronise the tempo of Sonic Pi running on multiple computers connected on the same network. It will also enable automatic BPM synchronisation with music production tools such as Ableton Live, VJ tools such as Resolume, DJ hardware such as the MPC and many compatible iPad music apps. For a full list see: https://www.ableton.com/link/products/,,
- 🆕 New
:link
option to fnuse_bpm
. This enables Link mode for the current thread which automatically syncs the BPM to the Link metronome (which also syncs it with all other Link-capable apps running on any computer connected to the local (wired or wifi) network. - 🆕 New fn
link
which sets the BPM to a new:link
mode and also waits until the start of the next bar (as determined by Link) before continuing. This lets you automatically sync tempo and beat phase in one command. - 🆕 New fn
link_sync
which sets the BPM to a new:link
mode, waits for the Link session to be playing and also waits until the start of the next bar (as determined by Link) before continuing. This lets you automatically "arm" Sonic Pi to sync tempo and beat phase and wait for an external "play" command from another Link device - such as Ableton Live. - 🔗 New fn
set_link_bpm!
to change the BPM/tempo of the Link metronome (and simultaneously change the tempo of all connected Link-capable apps on the network). - New fn
current_random_source
which returns the current random number source kind (seeuse_random_source
). - 🆕 New fn
load_synthdef
which lets you load a single synthdef file. load_synthdefs
now loads both directories and single files (by dispatching toload_synthdef
where necessary).
Synths & FX
- 🆕 New synth
:winwood_lead
- a lead synth inspired by the Winwood songs from the early 80s. - 🆕 New synth
:bass_foundation
- a soft bass synth inspired by the sounds of the 80s. - New synth
:bass_highend
- an addition to the :bass_foundation synth inspired by the sounds of the 80s.
Examples
- 🆕 New Algomancer example - Blockgame coded by DJ_Dave.
- 🆕 New Sorcerer example - Lorezzed.
GUI
- 🐎 Preference pane is now an overlay which hovers over the main window. This means that opening and closing it does not inadvertently modify a carefully chosen layout e.g. for a performance.
- 🆕 New preference option to show and hide the pane titles such as Scope, Log, Cues, Context, Help, etc.
- 🆕 New preference option to hide the menubar when in fullscreen mode (Windows and Linux only as this behaviour is standard on macOS).
- 🆕 New preference option for enabling audio inputs (now disabled by default). Modifying this setting requires a reboot to take effect.
- 🆕 New preference option for selecting the default language translation. Modifying this setting requires a reboot to take effect.
- Preferences now show audio hardware information such as connected input/out devices, sample rate, block size etc. The amount of information displayed varies by platform.
- 🆕 New GUI controls for interacting with the new Link Metronome. You can connect/disconnect to the network (to share tempo with others), change the tempo (in BPM) and tap out a new tempo.
- Increase width of panel dividers and highlight on mouse hover.
- Highlight scrollbars and preference checkbox descriptions on mouse hover.
- Scrollbars now have rounded edges.
- Teach autocompletion about random source choices:
:white
,:light_pink
,:pink
, etc. - 👌 Improve syntax indentation.
- 👌 Improvements for Arabic, Catalan, Chinese (Simplified), Dutch, Estonian, French, German, Italian, Japanese, Korean, Persian, Polish, Portuguese (Brazil), Russian, Sinhala, Spanish, Swedish, Ukrainian.
- 🌐 Introduced new translations for Basque, Gaelic.
👌 Improvements
- 📚 Many minor documentation fixes and improvements.
- 0️⃣ When running on Raspberry Pi, Sonic Pi connects to PulseAudio by default.
- ⏱ The scheduling accuracy of outgoing OSC and MIDI messages is improved on Windows.
- Optimise
midi_clock_beat
. note_range
can now handle both increasing and decreasing note ranges.- 🍎 No longer connect to the input sound device on macOS by default - this also means audio input/output rate mismatches no longer cause boot issues on macOS by default.
- 🌲 SuperCollider audio server boot issues are now immediately detected and reported as a specific issue to the user alongside the full scsynth log file.
🛠 Bugfixes
- 👌 Improve robustness of outgoing OSC messages in the case where an outgoing hostname is malformed and can't be resolved.
- Synths
:dull_bell
and:pretty_bell
now properly free themselves when they finish playing, which now means the resources they consumed are also properly freed. - Indexing into an empty ring no longer causes a divide by zero error.
- 🏁 No longer attempt to increase audio server priority on Windows which causes booting errors in some cases.
- 🛠 Fixed encoding issues when saving/loading files containing non-ascii characters on Windows.
range
no longer loops infinitely with a step size of 0. Instead it now throws an error.- In some circumstances having the lissajous visualiser visible caused the GUI to crash on startup. This has now been addressed.
- Stop thread hanging when passing
0
as the first argument tospread
. Now just returns a ring of false values.
- 🔗 The default BPM is now set to the new global Link metronome. This is set to 60 by default, so on the surface the behaviour will appear identical. However, if you change the Link metronome BPM using the GUI or the new fn
-
v3.3.1 Changes
1st Feb, 2021 (view commits):
🚀 This is a compatibility release addressing two issues with macOS Big Sur:
🌐 1. Correct language translations now used based on user's current locale 🍎 2. The language server is no longer killed by macOS Gatekeeper when a sample's onset times are queried.
🚀 This release also includes minor translation updates.
-
v3.3.0 Changes
28th Jan, 2021 (view commits):
Ten months of development, over 700 individual commits, loving contributions from many many people have gone into this new version of 🚀 Sonic Pi. This release is also the result of a 3 month long community beta process which took place over on 👍 Patreon where supporters got access 🚀 to early releases and really helped polish and shape development. Huge 👍 thanks to everyone that has supported continued development. We're 🚀 really excited and proud to share this new release with you all.
In terms of significant changes, there have been many internal 👌 improvements, including a full rewrite of our MIDI subsystem. This shouldn't result in much change as a user (although some MIDI cue names might have changed slightly) but it really sets us up for some exciting developments in the future. We're essentially moving much more of the core input/output functionality of Sonic Pi into a special system called the BEAM and a language called Erlang. This is 🚤 a system that has a strong emphasis on low latency, low jitter and high concurrency which is exactly what the IO of a music system requires! 👀 We're so excited to see what we'll be able to achieve with this new 🚀 approach that the BEAM features as the codename of this release.
👀 Another area that has seen a lot of love and attention is our strong focus on accessibility. We now have a much improved menu bar which essentially duplicates much of the functionality found in the preferences but in a format that's extremely easy to work with via a screen reader. We've also added a new context pane that displays the current line and character position as a direct result of a collaboration with Leiden University's accessibility group. There have already been numerous studies that are reporting success for blind and low-vision users of Sonic Pi - so we're confident we're on the right track with respect to accessibility. We're also not stopping here and are always looking for ways to lower the many barriers to entry for creative experiences with code for everyone.
🚀 This is also the first release where we officially welcome Chris Maughan ✅ as the latest member of the Sonic Pi core team. Chris has made significant contributions over the last year including improvements to 🏗 the scope and a complete reworking of our build process. I hope you join us in welcoming Chris to the team.
🍎 Finally, we have official support for macOS Big Sur, some lovely new 🌐 synths and FX, improved translations, support for advanced configuration 🛠 (audio and colour theming), new Turkish scales and many, many bug fixes and improvements.
We really hope you love this version of Sonic Pi as much as we do.
Happy Live Coding!
💥 Breaking Changes
- ⚡️ MIDI port description names may be slightly different from previous versions. Precise matches on MIDI ports via
sync
andget
will have to be updated accordingly. - 🚀 Incoming MIDI cues now no longer include clock tick events. Optionally re-enabling these and new ways of working with incoming timing systems will feature in a future release.
🆕 New
- Completely new MIDI subsystem.
use/with_random_source
- change the current random stream used when selecting random values. We now have:white
,:light_pink
,:pink
,:dark_pink
and:perlin
. Default is:white
which is the same stream as previous releases to preserve compatibility.- Many Turkish scales (makams) have been added.
- 🆕 New user config directory for fine tuning aspects of the app such as advanced audio settings. See
~/.sonic-pi/config/README.md
for more information.
Synths & FX
- 🆕 New synth
:rodeo
- emulating an electric piano. - 🆕 New synth
:kalimba
- an African thumb piano. - ➕ Add sliding to
:autotuner
FX optsnote:
andformant_ratio:
. mix
,pre_mix
andpre_amp
opts are now affected byslide:
.
GUI
- 🆕 New context pane which displays the current line number and position making this information accessible to screen readers. This may be shown/hidden with a preference setting.
- 🆕 New keyboard shortcuts for switching directly to a buffer. S-M-1 (hold shift and Meta and the number 1) will jump to buffer 1. Meta is Cmd on macOS and alt on Windows/Linux.
- Autocompletion system can now be enabled or disabled. This is intended to help those using screen readers for which the autocompletion system is currently incompatible.
- Sample listings in the help system now have a handy play button that allows you to preview them by clicking rather than having to write any code.
- 👌 Improvements for Catalan, Chinese, Danish, Dutch, Finnish, French, German, Hebrew, Hungarian, Icelandic, Italian, Korean, Norwegian, Polish, Portuguese, Portuguese (Brazil), Russian, Slovak, Spanish, Swedish, Thai, Turkish and Vietnamese translations.
- 🌐 Sinhalese translation added.
- GUI now has a much more complete menu bar which duplicates the functionality of the preferences pane whilst making it easily accessible to screen readers.
- MIDI port names are now autocompleted.
- ⏪ The GUI now correctly saves and restores the visibility preferences for the buttons, tabs and log pane.
👌 Improvements
- 📚 Many minor improvements to the documentation.
- Unsent external MIDI messages are now flushed and no longer sent after hitting the Stop button.
- 🚚 The common mistake of calling both
play
andsample
on the same line such asplay sample :loop_amen
is now an error with an appropriately helpful description to explain thatplay
should be removed.
🛠 Bugfixes
- Fix
pulse_width_curve:
andpulse_width_slide:
opts which were incorrectly swapped onpulse
,subpulse
anddpulse
synths. - 👌 Improve boot on Windows systems that have default locale code pages currently unsupported by Ruby. We now force UTF-8.
- 🛠 Fix issue causing the incorrect error line to be highlighted in the GUI.
- 🛠 Fix issue when syncing with cues with
-
symbols in their paths. - 🔀 Fix bug with
use_merged_synth_defaults
after a call touse_synth_defaults
. This bug was triggered in the "Sonic Dreams" example which now plays through correctly again. - 🍎 MIDI device hotswapping (detecting whether devices were connected or disconnected) now works on macOS.
- 🛠 Fix
.take_last
to no longer returnnil
for min and max of the range. - 🛠 Fix off-by-one error in
line
fn. Now should always return rings of the correct length.
- ⚡️ MIDI port description names may be slightly different from previous versions. Precise matches on MIDI ports via
-
v3.2.2 Changes
April 05, 20205th April, 2020 (view commits):
🛠 This is a minor bugfix and maintenance release.
GUI
- 🌐 Significant improvements to the Danish and Swedish translations.
🛠 Bugfixes
- 🛠 Fixed a build issue on macOS that stopped recording from working.
- 🛠 Fixed issues rendering images in the documentation for non-English translations.