0.9.14 release

This commit is contained in:
Adrian Ulrich 2012-10-21 17:16:46 +02:00
parent 31c7a65ad3
commit 0c428f8646
4 changed files with 5 additions and 5 deletions

View File

@ -23,8 +23,8 @@ THE SOFTWARE.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ch.blinkenlights.android.vanilla"
android:versionName="0.9.13"
android:versionCode="0913"
android:versionName="0.9.14"
android:versionCode="0914"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

View File

@ -8,7 +8,7 @@ Building
To build you will need:
* A Java compiler compatible with Java 1.6
* The Android SDK with platform 15 (Android 4.0.3) installed
* The Android SDK with platform 16 (JellyBean) installed
Building from command-line
--------------------------

View File

@ -19,7 +19,7 @@ function show(n) {
</head>
<body>
<h1>Vanilla Music</h1>
<p><b>Version:</b> 0.9.13 released October 7, 2012<br><br>
<p><b>Version:</b> 0.9.14 released October 21, 2012<br><br>
<b>Website:</b> <a href='https://github.com/adrian-bl/vanilla'>https://github.com/adrian-bl/vanilla</a><br>
<b>Issue tracker:</b> <a href='https://github.com/adrian-bl/vanilla/issues'>https://github.com/adrian-bl/vanilla/issues</a><br>
<h2>Contributors</h2>

View File

@ -1047,7 +1047,7 @@ public final class PlaybackService extends Service
if(mPreparedMediaPlayer != null &&
mPreparedMediaPlayer.isPlaying()) {
Log.v("VanillaMusic", "Replacing existing mediaplayer object with prepared version");
Log.d("VanillaMusic", "Replacing existing mediaplayer object with prepared version");
mMediaPlayer.release();
mMediaPlayer = mPreparedMediaPlayer;
mPreparedMediaPlayer = null;