-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add in-app Donation link in Termux Settings for non google playstore …
…releases The `TermuxConstants` class has been updated to `v0.22.0`. Check its Changelog sections for info on changes.
- Loading branch information
1 parent
79df863
commit 6de3713
Showing
5 changed files
with
105 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,8 +144,11 @@ | |
* | ||
* - 0.21.0 (2021-05-13) | ||
* - Added `APK_RELEASE_FDROID`, `APK_RELEASE_FDROID_SIGNING_CERTIFICATE_SHA256_DIGEST`, | ||
* - Added `APK_RELEASE_GITHUB_DEBUG_BUILD`, `APK_RELEASE_GITHUB_DEBUG_BUILD_SIGNING_CERTIFICATE_SHA256_DIGEST`, | ||
* - Added `APK_RELEASE_GOOGLE_PLAYSTORE`, `APK_RELEASE_GOOGLE_PLAYSTORE_SIGNING_CERTIFICATE_SHA256_DIGEST`. | ||
* `APK_RELEASE_GITHUB_DEBUG_BUILD`, `APK_RELEASE_GITHUB_DEBUG_BUILD_SIGNING_CERTIFICATE_SHA256_DIGEST`, | ||
* `APK_RELEASE_GOOGLE_PLAYSTORE`, `APK_RELEASE_GOOGLE_PLAYSTORE_SIGNING_CERTIFICATE_SHA256_DIGEST`. | ||
* | ||
* - 0.22.0 (2021-05-13) | ||
* - Added `TERMUX_DONATE_URL`. | ||
* | ||
*/ | ||
|
||
|
@@ -200,24 +203,6 @@ public final class TermuxConstants { | |
/** Termux Github organization url */ | ||
public static final String TERMUX_GITHUB_ORGANIZATION_URL = "https://github.com" + "/" + TERMUX_GITHUB_ORGANIZATION_NAME; // Default: "https://github.com/termux" | ||
|
||
/** Termux support email url */ | ||
public static final String TERMUX_SUPPORT_EMAIL_URL = "[email protected]"; // Default: "[email protected]" | ||
|
||
/** Termux support email mailto url */ | ||
public static final String TERMUX_SUPPORT_EMAIL_MAILTO_URL = "mailto:" + TERMUX_SUPPORT_EMAIL_URL; // Default: "mailto:[email protected]" | ||
|
||
/** Termux Wiki */ | ||
public static final String TERMUX_WIKI = "Termux Wiki"; // Default: "Termux Wiki" | ||
|
||
/** Termux Wiki url */ | ||
public static final String TERMUX_WIKI_URL = "https://wiki.termux.com"; // Default: "https://wiki.termux.com" | ||
|
||
/** Termux Reddit subreddit */ | ||
public static final String TERMUX_REDDIT_SUBREDDIT = "r/termux"; // Default: "r/termux" | ||
|
||
/** Termux Reddit subreddit url */ | ||
public static final String TERMUX_REDDIT_SUBREDDIT_URL = "https://www.reddit.com/r/termux"; // Default: "https://www.reddit.com/r/termux" | ||
|
||
/** F-Droid packages base url */ | ||
public static final String FDROID_PACKAGES_BASE_URL = "https://f-droid.org/en/packages"; // Default: "https://f-droid.org/en/packages" | ||
|
||
|
@@ -239,8 +224,6 @@ public final class TermuxConstants { | |
public static final String TERMUX_GITHUB_REPO_URL = TERMUX_GITHUB_ORGANIZATION_URL + "/" + TERMUX_GITHUB_REPO_NAME; // Default: "https://github.com/termux/termux-app" | ||
/** Termux Github issues repo url */ | ||
public static final String TERMUX_GITHUB_ISSUES_REPO_URL = TERMUX_GITHUB_REPO_URL + "/issues"; // Default: "https://github.com/termux/termux-app/issues" | ||
/** Termux Github wiki repo url */ | ||
public static final String TERMUX_GITHUB_WIKI_REPO_URL = TERMUX_GITHUB_REPO_URL + "/wiki"; // Default: "https://github.com/termux/termux-app/wiki" | ||
/** Termux F-Droid package url */ | ||
public static final String TERMUX_FDROID_PACKAGE_URL = FDROID_PACKAGES_BASE_URL + "/" + TERMUX_PACKAGE_NAME; // Default: "https://f-droid.org/en/packages/com.termux" | ||
|
||
|
@@ -392,8 +375,6 @@ public final class TermuxConstants { | |
public static final String TERMUX_PACKAGES_GITHUB_REPO_URL = TERMUX_GITHUB_ORGANIZATION_URL + "/" + TERMUX_PACKAGES_GITHUB_REPO_NAME; // Default: "https://github.com/termux/termux-packages" | ||
/** Termux Packages Github issues repo url */ | ||
public static final String TERMUX_PACKAGES_GITHUB_ISSUES_REPO_URL = TERMUX_PACKAGES_GITHUB_REPO_URL + "/issues"; // Default: "https://github.com/termux/termux-packages/issues" | ||
/** Termux Packages wiki repo url */ | ||
public static final String TERMUX_PACKAGES_GITHUB_WIKI_REPO_URL = TERMUX_PACKAGES_GITHUB_REPO_URL + "/wiki"; // Default: "https://github.com/termux/termux-packages/wiki" | ||
|
||
|
||
/** Termux Game Packages Github repo name */ | ||
|
@@ -439,6 +420,44 @@ public final class TermuxConstants { | |
|
||
|
||
|
||
/* | ||
* Termux miscellaneous urls. | ||
*/ | ||
|
||
/** Termux Wiki */ | ||
public static final String TERMUX_WIKI = TERMUX_APP_NAME + " Wiki"; // Default: "Termux Wiki" | ||
|
||
/** Termux Wiki url */ | ||
public static final String TERMUX_WIKI_URL = "https://wiki.termux.com"; // Default: "https://wiki.termux.com" | ||
|
||
/** Termux Github wiki repo url */ | ||
public static final String TERMUX_GITHUB_WIKI_REPO_URL = TERMUX_GITHUB_REPO_URL + "/wiki"; // Default: "https://github.com/termux/termux-app/wiki" | ||
|
||
/** Termux Packages wiki repo url */ | ||
public static final String TERMUX_PACKAGES_GITHUB_WIKI_REPO_URL = TERMUX_PACKAGES_GITHUB_REPO_URL + "/wiki"; // Default: "https://github.com/termux/termux-packages/wiki" | ||
|
||
|
||
/** Termux support email url */ | ||
public static final String TERMUX_SUPPORT_EMAIL_URL = "[email protected]"; // Default: "[email protected]" | ||
|
||
/** Termux support email mailto url */ | ||
public static final String TERMUX_SUPPORT_EMAIL_MAILTO_URL = "mailto:" + TERMUX_SUPPORT_EMAIL_URL; // Default: "mailto:[email protected]" | ||
|
||
|
||
/** Termux Reddit subreddit */ | ||
public static final String TERMUX_REDDIT_SUBREDDIT = "r/termux"; // Default: "r/termux" | ||
|
||
/** Termux Reddit subreddit url */ | ||
public static final String TERMUX_REDDIT_SUBREDDIT_URL = "https://www.reddit.com/r/termux"; // Default: "https://www.reddit.com/r/termux" | ||
|
||
|
||
/** Termux donate url */ | ||
public static final String TERMUX_DONATE_URL = TERMUX_PACKAGES_GITHUB_REPO_URL + "/wiki/Donate"; // Default: "https://github.com/termux/termux-packages/wiki/Donate" | ||
|
||
|
||
|
||
|
||
|
||
/* | ||
* Termux app core directory paths. | ||
*/ | ||
|