Skip to content

Commit

Permalink
chore: bump app version and add toast for not implemented methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash-Garg committed Mar 25, 2023
1 parent 17afce0 commit 3804811
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ android {
applicationId = "dev.yashgarg.qbit"
minSdk = 24
targetSdk = 33
versionCode = 15
versionName = "v0.2.3-$commitHash"
versionCode = 16
versionName = "v0.2.4-$commitHash"

multiDexEnabled = true
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class RemoveTorrentDialog : DialogFragment() {

// TODO: Switch to string resources below
alertDialogBuilder.apply {
setTitle("Are you sure you want to delete this torrent?")
setTitle("Are you sure you want to delete the torrent(s)?")
setView(R.layout.delete_files_dialog)
setPositiveButton("Yes", null)
setNegativeButton("No") { dialog, _ -> dialog.dismiss() }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ class ServerFragment : Fragment(R.layout.server_fragment) {
when (menuItem.itemId) {
R.id.category,
R.id.sort_list -> {
Toast.makeText(requireContext(), "Not implemented", Toast.LENGTH_SHORT)
.show()
true
}
R.id.speed_toggle -> {
Expand Down

0 comments on commit 3804811

Please sign in to comment.