Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Commit

Permalink
Bump to v2.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
timusus committed Jul 12, 2020
1 parent 036dbba commit 02c1dcf
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 7 deletions.
8 changes: 8 additions & 0 deletions app/src/main/assets/web/info.html
Expand Up @@ -8,6 +8,14 @@
</head>

<body>
<h4>2.0.16</h4>
<ul>
<li>Fixed a character encoding issue preventing artwork downloading on some devices</li>
<li>Updated language around including/excluding songs</li>
<li>Possible fix for playlist editing issues on Android 10</li>
<li>Shuttle is now free - Shuttle+ will be removed, so only one version of Shuttle will exist on the Play Store</li>
<li>Shuttle 2 is in alpha testing! DM me your Play Store email address on <a href="https://discord.gg/4Z5EU7K">Discord</a> if you're interested in testing.</li>
</ul>
<h4>2.0.15</h4>
<ul>
<li>More playlist related crash fixes</li>
Expand Down
8 changes: 8 additions & 0 deletions app/src/main/assets/web/info_dark.html
Expand Up @@ -8,6 +8,14 @@
</head>

<body>
<h4>2.0.16</h4>
<ul>
<li>Fixed a character encoding issue preventing artwork downloading on some devices</li>
<li>Updated language around including/excluding songs</li>
<li>Possible fix for playlist editing issues on Android 10</li>
<li>Shuttle is now free - Shuttle+ will be removed, so only one version of Shuttle will exist on the Play Store</li>
<li>Shuttle 2 is in alpha testing! DM me your Play Store email address on <a href="https://discord.gg/4Z5EU7K">Discord</a> if you're interested in testing.</li>
</ul>
<h4>2.0.15</h4>
<ul>
<li>More playlist related crash fixes</li>
Expand Down
Expand Up @@ -27,7 +27,7 @@ public void bindView(@NonNull SupportView view) {
private void setAppVersion() {
SupportView supportView = getView();
if (supportView != null) {
supportView.setVersion("Shuttle Music Player");
supportView.setVersion("Shuttle Music Player " + BuildConfig.VERSION_NAME);
}
}

Expand All @@ -41,7 +41,7 @@ public void faqClicked() {
}

public void helpClicked() {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://plus.google.com/communities/112365043563095486408"));
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://discord.gg/4Z5EU7K"));
SupportView supportView = getView();
if (supportView != null) {
supportView.showHelp(intent);
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Expand Up @@ -390,8 +390,8 @@
<string name="pref_title_version">Version</string>
<string name="pref_title_faq">FAQ</string>
<string name="pref_summary_faq">Have a question? Need help? Click here to view the FAQ @ www.shuttlemusicplayer.com</string>
<string name="pref_title_gplus">Get Help</string>
<string name="pref_summary_gplus">There is a very active community of Shuttle users on Google+. If you have questions or need help, this is the best place to go.</string>
<string name="pref_title_discord">Get Help</string>
<string name="pref_summary_discord">If you have questions or need help, Discord is the best place to go.</string>
<string name="pref_title_rate">Say Thanks</string>
<string name="pref_summary_rate">If you like Shuttle, please consider leaving a review.</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/xml/settings_support.xml
Expand Up @@ -20,8 +20,8 @@

<android.support.v7.preference.Preference
android:key="pref_help"
android:summary="@string/pref_summary_gplus"
android:title="@string/pref_title_gplus"/>
android:summary="@string/pref_summary_discord"
android:title="@string/pref_title_discord"/>

<android.support.v7.preference.Preference
android:key="pref_rate"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
@@ -1,5 +1,5 @@
object Config {

const val versionName = "2.0.15"
const val versionName = "2.0.16"

}

0 comments on commit 02c1dcf

Please sign in to comment.