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

Commit b9db011

Browse files
committed
Bump to 2.0.12
1 parent e920dcd commit b9db011

File tree

5 files changed

+54
-37
lines changed

5 files changed

+54
-37
lines changed

.idea/codeStyles/Project.xml

+29-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

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

1010
<body>
11+
<h4>2.0.12</h4>
12+
<ul>
13+
<li>Fixed an issue preventing playlists from showing up</li>
14+
<li>Crash fixes</li>
15+
<li>I've been rebuilding Shuttle from scratch for almost a year now! DM me your Play Store email address on Discord <a href="https://discord.gg/4Z5EU7K">Discord</a> if you're interested in testing the alpha :D</li>
16+
</ul>
1117
<h4>2.0.11</h4>
1218
<ul>
1319
<li>Fixed artwork downloading issue (no longer relying on flaky Last.FM API)</li>

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

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

1010
<body>
11+
<h4>2.0.12</h4>
12+
<ul>
13+
<li>Fixed an issue preventing playlists from showing up</li>
14+
<li>Crash fixes</li>
15+
<li>I've been rebuilding Shuttle from scratch for almost a year now! DM me your Play Store email address on Discord <a href="https://discord.gg/4Z5EU7K">Discord</a> if you're interested in testing the alpha :D</li>
16+
</ul>
1117
<h4>2.0.11</h4>
1218
<ul>
1319
<li>Fixed artwork downloading issue (no longer relying on flaky Last.FM API)</li>

app/src/main/java/com/simplecity/amp_library/ui/dialog/ChangelogDialog.java

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import android.annotation.SuppressLint;
44
import android.content.Context;
5+
import android.content.Intent;
6+
import android.net.Uri;
57
import android.support.v4.content.ContextCompat;
68
import android.view.LayoutInflater;
79
import android.view.View;
@@ -44,6 +46,16 @@ public void onPageFinished(WebView view, String url) {
4446
ViewUtils.fadeOut(progressBar, ()
4547
-> ViewUtils.fadeIn(webView, null));
4648
}
49+
50+
@Override
51+
public boolean shouldOverrideUrlLoading(WebView view, String url) {
52+
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
53+
if (intent.resolveActivity(context.getPackageManager()) != null) {
54+
context.startActivity(intent);
55+
return true;
56+
}
57+
return false;
58+
}
4759
});
4860

4961
Aesthetic.get(context)

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.11"
3+
const val versionName = "2.0.12"
44

55
}

0 commit comments

Comments
 (0)