Skip to content

Commit

Permalink
chore: update version to 1.56.0 and fix compatibility issues (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-gustafsson authored Jan 29, 2025
1 parent 4ec4a86 commit a84de83
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.moimob.drinkable"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 15500
versionName "1.55.0"
versionCode 15600
versionName "1.56.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/15600.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
• Fix an issue where app does not work on older devices
2 changes: 1 addition & 1 deletion src/modules/user/backups/backup-drawer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class BackupDrawer {
.withCocktailInformation()
.withShoppingLists();

const formattedName = this.name.replaceAll(' ', '_');
const formattedName = this.name.replace(/ /g, '_');

await Filesystem.writeFile({
path: `${drinkableBackupsPath}/${formattedName}.json`,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"target": "es2021",
"target": "es6",
"moduleResolution": "node",
"baseUrl": "src",
"allowSyntheticDefaultImports": true,
Expand Down

0 comments on commit a84de83

Please sign in to comment.