Prepared release of version 0.9.8.1

This commit is contained in:
daniel oeh 2014-02-23 18:30:48 +01:00
parent 9d30e697e6
commit 255cb2464d
6 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="33"
android:versionName="0.9.8.0" >
android:versionCode="34"
android:versionName="0.9.8.1" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

View File

@ -1,6 +1,11 @@
Change Log
==========
Version 0.9.8.1
---------------
* Added option to flattr an episode automatically after 80 percent of the episode have been played
* Several bugfixes and improvements
Version 0.9.8.0
---------------
* Added access to the gpodder.net directory

View File

@ -8,6 +8,7 @@ LatinSuD
wseemann
hzulla
andrewgaul
peschmae0
Translations:

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.8.0</p>
<p>AntennaPod, Version 0.9.8.1</p>
<p>Copyright © 2012 Daniel Oeh</p>

View File

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

View File

@ -4,5 +4,5 @@ public final class AppConfig {
/** Should be used for debug logging. */
public final static boolean DEBUG = true;
/** Should be used when setting User-Agent header for HTTP-requests. */
public final static String USER_AGENT = "AntennaPod/0.9.8.0";
public final static String USER_AGENT = "AntennaPod/0.9.8.1";
}