Updated changelog and version code

This commit is contained in:
Karim Abou Zeid 2015-12-27 21:03:09 +01:00
commit 69769346cb
3 changed files with 17 additions and 5 deletions

View file

@ -63,8 +63,8 @@ android {
renderscriptTargetApi 23 renderscriptTargetApi 23
applicationId "com.kabouzeid.gramophone" applicationId "com.kabouzeid.gramophone"
versionCode 81 versionCode 82
versionName "0.9.50 PREVIEW 1" versionName "0.9.50 PREVIEW 2"
} }
buildTypes { buildTypes {
release { release {

View file

@ -25,10 +25,22 @@
<p>You can view the changelog dialog again at any time from the <i>about</i> section.</p> <p>You can view the changelog dialog again at any time from the <i>about</i> section.</p>
<h3>Version 0.9.50 PREVIEW 1</h3> <h3>Version 0.9.50 PREVIEW 2</h3>
<p>You can always downgrade by downloading the old apk from <i>APKMirror</i> for example.</p> <p>You can always downgrade by downloading the old apk from <i>APKMirror</i> for example.</p>
<ol>
<li><b>NEW:</b>Added option to disable the blurred album cover on the lockscreen.</li>
<li><b>IMPROVEMENT:</b> Finished the menu for the current song in the playing queue.</li>
<li><b>IMPROVEMENT:</b> Better drag and drop inside playlists.</li>
<li><b>IMPROVEMENT:</b> Synced translations.</li>
<li><b>IMPROVEMENT:</b> Some other minor improvements.</li>
<li><b>FIX:</b> Colored navigation bar issue.</li>
<li><b>FIX:</b> Wrong titles shown in the toolbar when selecting an item.</li>
</ol>
<h3>Version 0.9.50 PREVIEW 1</h3>
<ol> <ol>
<li><b>NEW:</b> All new now playing screen. The old one will be available again in the full <li><b>NEW:</b> All new now playing screen. The old one will be available again in the full
update as an option. update as an option.

View file

@ -66,9 +66,9 @@ public class ChangelogDialog extends LeakDetectDialogFragment {
final WebView webView = (WebView) customView.findViewById(R.id.web_view); final WebView webView = (WebView) customView.findViewById(R.id.web_view);
try { try {
// Load from changelog.html in the assets folder // Load from phonograph-changelog.html in the assets folder
StringBuilder buf = new StringBuilder(); StringBuilder buf = new StringBuilder();
InputStream json = getActivity().getAssets().open("changelog.html"); InputStream json = getActivity().getAssets().open("phonograph-changelog.html");
BufferedReader in = new BufferedReader(new InputStreamReader(json, "UTF-8")); BufferedReader in = new BufferedReader(new InputStreamReader(json, "UTF-8"));
String str; String str;
while ((str = in.readLine()) != null) while ((str = in.readLine()) != null)