Move the Backup & Restore card to the bottom of Settings (v0.16.1)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Reactorcoremeltdown
2026-07-21 11:45:42 +02:00
parent 3c4c30bf1f
commit 682418d69e
2 changed files with 3 additions and 3 deletions

View File

@@ -22,8 +22,8 @@ android {
// (android.media.midi) and AAudio low-latency audio we rely on. // (android.media.midi) and AAudio low-latency audio we rely on.
minSdk = 26 minSdk = 26
targetSdk = 34 targetSdk = 34
versionCode = 41 versionCode = 42
versionName = "0.16.0" versionName = "0.16.1"
// We provide our own instrumentation runner if/when tests are added. // We provide our own instrumentation runner if/when tests are added.
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

View File

@@ -94,7 +94,6 @@ fun SettingsScreen(vm: AppViewModel) {
) { ) {
item { PanicButton(vm) } item { PanicButton(vm) }
item { ProjectCard(vm) } item { ProjectCard(vm) }
item { BackupCard(vm) }
item { HelpCard() } item { HelpCard() }
item { AudioDevicesCard(vm) } item { AudioDevicesCard(vm) }
item { InterfaceCard(vm) } item { InterfaceCard(vm) }
@@ -114,6 +113,7 @@ fun SettingsScreen(vm: AppViewModel) {
section = SettingsSection.MIDI section = SettingsSection.MIDI
} }
} }
item { BackupCard(vm) }
} }
SettingsSection.GAMEPAD -> LazyColumn( SettingsSection.GAMEPAD -> LazyColumn(