Update to version 2.2.0-alpha-5 and adjust octave display logic in KeyboardComponent

This commit is contained in:
2025-06-15 13:16:23 +02:00
parent 7c87274a04
commit ed0b76dc06
2 changed files with 3 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ plugins {
}
group = "nl.astraeus"
version = "2.2.0-alpha-4"
version = "2.2.0-alpha-5"
repositories {
mavenCentral()

View File

@@ -164,7 +164,8 @@ class KeyboardComponent(
div(KeyboardOctaveCls.name) {
// Show current octave the piano is being played at
+"Octave: $octave"
// minus one to keep it in line with custom notes ranges
+"Octave: ${octave -1}"
}
}