Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
Bump version to v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dluvian committed Oct 4, 2023
1 parent 1928db2 commit 0d0cf0b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId "com.dluvian.nozzle"
minSdk 23
targetSdk 34
versionCode 24
versionName "v0.9.1"
versionCode 25
versionName "v0.9.2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class PostViewModel(
content = post.content,
mentions = post.mentions,
hashtags = post.hashtags,
relays = selectedRelays
relays = selectedRelays // TODO: Add read relays of mentioned pubkeys
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class ReplyViewModel(
content = post.content,
mentions = (post.mentions + parentPost.pubkey).distinct(),
hashtags = post.hashtags,
relays = selectedRelays
relays = selectedRelays // TODO: Add read relays of mentioned pubkeys
)
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<resources>
<string name="app_name" translatable="false">Nozzle</string>
<string name="nozzle_version" translatable="false">v0.9.1</string>
<string name="nozzle_version" translatable="false">v0.9.2</string>
<string name="profile">Profile</string>
<string name="feed">Feed</string>
<string name="search">Search</string>
Expand Down

0 comments on commit 0d0cf0b

Please sign in to comment.