Skip to content

Commit e18aa39

Browse files
committed
add back up manager migration from schema version 17 to 18
1 parent 415bdc0 commit e18aa39

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
_See the changes from previous 3.0 Beta releases as well._
44

5-
#### TO BE RELEASED
5+
#### 1 April 2025
66

77
## Added
88
- #320 🗂️ Key map groups! You can now sort key maps into groups and share constraints across all the key maps in the group.

app/src/main/java/io/github/sds100/keymapper/backup/BackupManager.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,9 @@ class BackupManagerImpl(
256256

257257
// Do nothing just added nullable column for when a group was last opened
258258
JsonMigration(16, 17) { json -> json },
259+
260+
// Do nothing. It just removed the group name index.
261+
JsonMigration(17, 18) { json -> json },
259262
)
260263

261264
if (keyMapListJsonArray != null) {

app/src/main/java/io/github/sds100/keymapper/data/migration/AutoMigration17To18.kt

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)