Modernize repo links

This commit is contained in:
Ross Nelson 2021-07-09 20:18:35 -05:00
parent e8a107eb06
commit 0e4585b9ea
5 changed files with 12 additions and 12 deletions

View file

@ -21,15 +21,15 @@ object Constants {
const val PRO_VERSION_PRODUCT_ID = "pro_version"
const val RATE_ON_GOOGLE_PLAY =
"https://play.google.com/store/apps/details?id=code.name.monkey.retromusic"
const val TRANSLATE = "https://github.com/h4h13/RetroMusicPlayer"
const val GITHUB_PROJECT = "https://github.com/h4h13/RetroMusicPlayer"
const val TRANSLATE = "https://github.com/RetroMusicPlayer/RetroMusicPlayer"
const val GITHUB_PROJECT = "https://github.com/RetroMusicPlayer/RetroMusicPlayer"
const val TELEGRAM_CHANGE_LOG = "https://t.me/retromusiclog"
const val USER_PROFILE = "profile.jpg"
const val USER_BANNER = "banner.jpg"
const val APP_INSTAGRAM_LINK = "https://www.instagram.com/retromusicapp/"
const val APP_TELEGRAM_LINK = "https://t.me/retromusicapp/"
const val APP_TWITTER_LINK = "https://twitter.com/retromusicapp"
const val FAQ_LINK = "https://github.com/h4h13/RetroMusicPlayer/blob/master/FAQ.md"
const val FAQ_LINK = "https://github.com/RetroMusicPlayer/RetroMusicPlayer/blob/dev/FAQ.md"
const val PINTEREST = "https://in.pinterest.com/retromusicapp/"
const val AUDIO_SCROBBLER_URL = "https://ws.audioscrobbler.com/2.0/"

View file

@ -230,7 +230,7 @@ open class BugReportActivity : AbsThemeActivity() {
onSaveExtraInfo()
val report = Report(bugTitle, bugDescription, deviceInfo, extraInfo)
val target = GithubTarget("h4h13", "RetroMusicPlayer")
val target = GithubTarget("RetroMusicPlayer", "RetroMusicPlayer")
ReportIssueAsyncTask.report(this, report, target, login)
}
@ -337,6 +337,6 @@ open class BugReportActivity : AbsThemeActivity() {
private const val STATUS_BAD_CREDENTIALS = 401
private const val STATUS_ISSUES_NOT_ENABLED = 410
private const val ISSUE_TRACKER_LINK = "https://github.com/h4h13/RetroMusicPlayer"
private const val ISSUE_TRACKER_LINK = "https://github.com/RetroMusicPlayer/RetroMusicPlayer"
}
}