Skip to content

Commit b44fa3e

Browse files
authored
Merge pull request #146 from oxters168/tip-link
Become Ko-fi
2 parents 92e2244 + ab50bd2 commit b44fa3e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/src/main/java/com/OxGames/Pluvia/Constants.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ object Constants {
3434
}
3535

3636
object Misc {
37-
const val TIP_JAR_LINK = "https://buy.stripe.com/5kAaFU1bx2RFeLmbII"
37+
const val KO_FI_LINK = "https://ko-fi.com/pluvia_client"
3838
const val GITHUB_LINK = "https://github.com/oxters168/Pluvia"
3939
const val PRIVACY_LINK = "https://github.com/oxters168/Pluvia/tree/master/PrivacyPolicy"
4040
}

app/src/main/java/com/OxGames/Pluvia/ui/PluviaMain.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ fun PluviaMain(
201201
when (msgDialogState.type) {
202202
DialogType.SUPPORT -> {
203203
onConfirmClick = {
204-
uriHandler.openUri(Constants.Misc.TIP_JAR_LINK)
204+
uriHandler.openUri(Constants.Misc.KO_FI_LINK)
205205
PrefManager.tipped = true
206206
msgDialogState = MessageDialogState(visible = false)
207207
}

app/src/main/java/com/OxGames/Pluvia/ui/screen/settings/SettingsGroupInfo.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fun SettingsGroupInfo() {
3737
subtitle = { Text(text = "Contribute to ongoing development") },
3838
icon = { Icon(imageVector = Icons.Filled.MonetizationOn, contentDescription = "Tip") },
3939
onClick = {
40-
uriHandler.openUri(Constants.Misc.TIP_JAR_LINK)
40+
uriHandler.openUri(Constants.Misc.KO_FI_LINK)
4141
askForTip = false
4242
PrefManager.tipped = !askForTip
4343
},

0 commit comments

Comments
 (0)