Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Become Ko-fi #146

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/java/com/OxGames/Pluvia/Constants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ object Constants {
}

object Misc {
const val TIP_JAR_LINK = "https://buy.stripe.com/5kAaFU1bx2RFeLmbII"
const val KO_FI_LINK = "https://ko-fi.com/pluvia_client"
const val GITHUB_LINK = "https://github.com/oxters168/Pluvia"
const val PRIVACY_LINK = "https://github.com/oxters168/Pluvia/tree/master/PrivacyPolicy"
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/OxGames/Pluvia/ui/PluviaMain.kt
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ fun PluviaMain(
when (msgDialogState.type) {
DialogType.SUPPORT -> {
onConfirmClick = {
uriHandler.openUri(Constants.Misc.TIP_JAR_LINK)
uriHandler.openUri(Constants.Misc.KO_FI_LINK)
PrefManager.tipped = true
msgDialogState = MessageDialogState(visible = false)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fun SettingsGroupInfo() {
subtitle = { Text(text = "Contribute to ongoing development") },
icon = { Icon(imageVector = Icons.Filled.MonetizationOn, contentDescription = "Tip") },
onClick = {
uriHandler.openUri(Constants.Misc.TIP_JAR_LINK)
uriHandler.openUri(Constants.Misc.KO_FI_LINK)
askForTip = false
PrefManager.tipped = !askForTip
},
Expand Down