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

Commit 02c1dcf

Browse files
committed
Bump to v2.0.16
1 parent 036dbba commit 02c1dcf

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

app/src/main/assets/web/info.html

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
</head>
99

1010
<body>
11+
<h4>2.0.16</h4>
12+
<ul>
13+
<li>Fixed a character encoding issue preventing artwork downloading on some devices</li>
14+
<li>Updated language around including/excluding songs</li>
15+
<li>Possible fix for playlist editing issues on Android 10</li>
16+
<li>Shuttle is now free - Shuttle+ will be removed, so only one version of Shuttle will exist on the Play Store</li>
17+
<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>
18+
</ul>
1119
<h4>2.0.15</h4>
1220
<ul>
1321
<li>More playlist related crash fixes</li>

app/src/main/assets/web/info_dark.html

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
</head>
99

1010
<body>
11+
<h4>2.0.16</h4>
12+
<ul>
13+
<li>Fixed a character encoding issue preventing artwork downloading on some devices</li>
14+
<li>Updated language around including/excluding songs</li>
15+
<li>Possible fix for playlist editing issues on Android 10</li>
16+
<li>Shuttle is now free - Shuttle+ will be removed, so only one version of Shuttle will exist on the Play Store</li>
17+
<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>
18+
</ul>
1119
<h4>2.0.15</h4>
1220
<ul>
1321
<li>More playlist related crash fixes</li>

app/src/main/java/com/simplecity/amp_library/ui/settings/SupportPresenter.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void bindView(@NonNull SupportView view) {
2727
private void setAppVersion() {
2828
SupportView supportView = getView();
2929
if (supportView != null) {
30-
supportView.setVersion("Shuttle Music Player");
30+
supportView.setVersion("Shuttle Music Player " + BuildConfig.VERSION_NAME);
3131
}
3232
}
3333

@@ -41,7 +41,7 @@ public void faqClicked() {
4141
}
4242

4343
public void helpClicked() {
44-
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://plus.google.com/communities/112365043563095486408"));
44+
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://discord.gg/4Z5EU7K"));
4545
SupportView supportView = getView();
4646
if (supportView != null) {
4747
supportView.showHelp(intent);

app/src/main/res/values/strings.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@
390390
<string name="pref_title_version">Version</string>
391391
<string name="pref_title_faq">FAQ</string>
392392
<string name="pref_summary_faq">Have a question? Need help? Click here to view the FAQ @ www.shuttlemusicplayer.com</string>
393-
<string name="pref_title_gplus">Get Help</string>
394-
<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>
393+
<string name="pref_title_discord">Get Help</string>
394+
<string name="pref_summary_discord">If you have questions or need help, Discord is the best place to go.</string>
395395
<string name="pref_title_rate">Say Thanks</string>
396396
<string name="pref_summary_rate">If you like Shuttle, please consider leaving a review.</string>
397397

app/src/main/res/xml/settings_support.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
<android.support.v7.preference.Preference
2222
android:key="pref_help"
23-
android:summary="@string/pref_summary_gplus"
24-
android:title="@string/pref_title_gplus"/>
23+
android:summary="@string/pref_summary_discord"
24+
android:title="@string/pref_title_discord"/>
2525

2626
<android.support.v7.preference.Preference
2727
android:key="pref_rate"

buildSrc/src/main/kotlin/Config.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
object Config {
22

3-
const val versionName = "2.0.15"
3+
const val versionName = "2.0.16"
44

55
}

0 commit comments

Comments
 (0)