Prepared release of version 0.9.9.4

This commit is contained in:
daniel oeh 2014-09-28 22:22:29 +02:00
parent 6da0fd9ea5
commit 24b49f1a13
5 changed files with 11 additions and 5 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.danoeh.antennapod"
android:versionCode="40"
android:versionName="0.9.9.3">
android:versionCode="41"
android:versionName="0.9.9.4">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

View File

@ -1,6 +1,12 @@
Change Log
==========
Version 0.9.9.4
---------------
* Added support for MP4 chapters (currently only for arm devices and downloaded episodes)
* Fixed a bug where episode images were not loaded correctly
* Fixed battery usage problems
Version 0.9.9.3
---------------
* Fixed video playback problems

View File

@ -41,7 +41,7 @@
<div id="header" align="center">
<img src="logo.png" alt="Logo" width="100px" height="100px"/>
<p>AntennaPod, Version 0.9.9.3</p>
<p>AntennaPod, Version 0.9.9.4</p>
<p>Copyright © 2014 Daniel Oeh</p>

View File

@ -5,7 +5,7 @@
<groupId>de.danoeh</groupId>
<artifactId>antennapod</artifactId>
<packaging>apk</packaging>
<version>0.9.9.3</version>
<version>0.9.9.4</version>
<name>AntennaPod</name>

View File

@ -2,6 +2,6 @@ package de.danoeh.antennapod;
public final class AppConfig {
/** Should be used when setting User-Agent header for HTTP-requests. */
public final static String USER_AGENT = "AntennaPod/0.9.9.3";
public final static String USER_AGENT = "AntennaPod/0.9.9.4";
}