Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bubelov committed Jan 25, 2025
1 parent 327598a commit 85dab9d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [0.9.2] - 2025-01-25

- Add merchant boosts
- Add comments screen
- Speed up element search within an area
- Show user location marker
- Improve Material theme support
- Remove Google blob from APK
- Show more info on deleted elements
- Add Polish translation
- Add Brazilian translation
- Fix issue with reports
- Fix issue with distance units
- Fix crashes under certain conditions

- Allow users to post merchant comments
- Fix issue with cold sync
- Add special icon for debug builds
- Improve error handling

## [0.9.1] - 2025-01-18

- Allow users to post merchant comments
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId = "org.btcmap"
minSdk = 29
targetSdk = 35
versionCode = 53
versionName = "0.9.1"
versionCode = 54
versionName = "0.9.2"
}

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/kotlin/app/AppModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import area_element.AreaElementQueries
import area_element.AreaElementRepo

val appModule = module {
single { Database(get<Context>().getDatabasePath("btcmap-2025-01-22.db").absolutePath).conn }
single { Database(get<Context>().getDatabasePath("btcmap-2025-01-25.db").absolutePath).conn }

single { ApiImpl() }.bind(Api::class)

Expand Down

0 comments on commit 85dab9d

Please sign in to comment.