Skip to content

Releases: mono4loop/rp6

v1.0.0-alpha.8

Choose a tag to compare

@github-actions github-actions released this 09 Jul 23:12
bump version

v1.0.0-alpha.7

Choose a tag to compare

@github-actions github-actions released this 09 Jul 22:19
bump version

v1.0.0-alpha.6

Choose a tag to compare

@github-actions github-actions released this 09 Jul 21:36
fix: keep Android piano keys connected

v1.0.0-alpha.5

Choose a tag to compare

@github-actions github-actions released this 09 Jul 20:51
feat: use multiple MIDI controllers at once

You can now play a MIDI keyboard and a pad controller (such as a MacroPad)
at the same time, instead of only the first one that's plugged in. Each
controller can also be plugged in or unplugged on the fly.

v1.0.0-alpha.4

Choose a tag to compare

@github-actions github-actions released this 09 Jul 16:59
feat: keep the sample store open while installing packs

Installing a pack no longer closes the store; its button becomes Select
so you can install several packs and then load one.

v1.0.0-alpha.3

Choose a tag to compare

@github-actions github-actions released this 08 Jul 22:01
fix: use a null ALSA device for emulator sink tests in CI

The snd-dummy kernel module isn't available on the GitHub runner kernel,
so modprobe failed. Point ALSA's default PCM at its built-in null backend
instead: miniaudio opens the "default" device, so a null default lets the
emulator sink open a silent device with no hardware or kernel module.

v1.0.0-alpha.2

Choose a tag to compare

@github-actions github-actions released this 08 Jul 16:35
README updated

v1.0.0-alpha.1

Choose a tag to compare

@github-actions github-actions released this 07 Jul 20:34
fix: avoid allocating on every audio-capture callback

The VU meter's capture path allocated a fresh buffer on every audio
callback (many times a second), adding needless garbage-collection
pressure. It now reuses one buffer, matching the emulator's playback
path.