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

Commit

Permalink
Bump to 2.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
timusus committed Oct 30, 2019
1 parent e920dcd commit b9db011
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 37 deletions.
65 changes: 29 additions & 36 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions app/src/main/assets/web/info.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
</head>

<body>
<h4>2.0.12</h4>
<ul>
<li>Fixed an issue preventing playlists from showing up</li>
<li>Crash fixes</li>
<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>
</ul>
<h4>2.0.11</h4>
<ul>
<li>Fixed artwork downloading issue (no longer relying on flaky Last.FM API)</li>
Expand Down
6 changes: 6 additions & 0 deletions app/src/main/assets/web/info_dark.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
</head>

<body>
<h4>2.0.12</h4>
<ul>
<li>Fixed an issue preventing playlists from showing up</li>
<li>Crash fixes</li>
<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>
</ul>
<h4>2.0.11</h4>
<ul>
<li>Fixed artwork downloading issue (no longer relying on flaky Last.FM API)</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import android.annotation.SuppressLint;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.support.v4.content.ContextCompat;
import android.view.LayoutInflater;
import android.view.View;
Expand Down Expand Up @@ -44,6 +46,16 @@ public void onPageFinished(WebView view, String url) {
ViewUtils.fadeOut(progressBar, ()
-> ViewUtils.fadeIn(webView, null));
}

@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
if (intent.resolveActivity(context.getPackageManager()) != null) {
context.startActivity(intent);
return true;
}
return false;
}
});

Aesthetic.get(context)
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Config {

const val versionName = "2.0.11"
const val versionName = "2.0.12"

}

0 comments on commit b9db011

Please sign in to comment.