Skip to content

Commit

Permalink
Update TermuxConstants
Browse files Browse the repository at this point in the history
The `TermuxConstants` class has been updated to `v0.18.0`. Check its Changelog section for info on changes.
  • Loading branch information
agnostic-apollo committed Apr 10, 2021
1 parent 0c9b85a commit 64fb2ce
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import java.io.File;

/*
* Version: v0.17.0
* Version: v0.18.0
*
* Changelog
*
Expand Down Expand Up @@ -125,6 +125,10 @@
* `TERMUX_PLUGIN_COMMAND_ERRORS_NOTIFICATION_CHANNEL_ID`, `TERMUX_PLUGIN_COMMAND_ERRORS_NOTIFICATION_CHANNEL_NAME`,
* `TERMUX_CRASH_REPORTS_NOTIFICATION_CHANNEL_ID`, `TERMUX_CRASH_REPORTS_NOTIFICATION_CHANNEL_NAME`.
* - Updated javadocs.
*
* - 0.18.0 (2021-04-11)
* - Updated `TERMUX_SUPPORT_EMAIL_URL` to a valid email.
* - Removed `TERMUX_SUPPORT_EMAIL`.
*/

/**
Expand Down Expand Up @@ -178,14 +182,11 @@ 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 */
public static final String TERMUX_SUPPORT_EMAIL = "support"; // Default: "support"

/** Termux support email url */
public static final String TERMUX_SUPPORT_EMAIL_URL = "email@example.com"; // Default: "email@example.com"
public static final String TERMUX_SUPPORT_EMAIL_URL = "termuxreports@groups.io"; // Default: "termuxreports@groups.io"

/** Termux support email mailto url */
public static final String TERMUX_SUPPORT_EMAIL_MAILTO_URL = "mailto:" + TERMUX_SUPPORT_EMAIL_URL; // Default: "mailto:email@example.com"
public static final String TERMUX_SUPPORT_EMAIL_MAILTO_URL = "mailto:" + TERMUX_SUPPORT_EMAIL_URL; // Default: "mailto:termuxreports@groups.io"

/** Termux Reddit subreddit */
public static final String TERMUX_REDDIT_SUBREDDIT = "r/termux"; // Default: "r/termux"
Expand Down

0 comments on commit 64fb2ce

Please sign in to comment.