Prepared release of version 0.9.8.2

This commit is contained in:
daniel oeh 2014-03-04 23:36:02 +01:00
parent 1b7c5f4927
commit 316289aaa0
5 changed files with 9 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="34"
android:versionName="0.9.8.1" >
android:versionCode="35"
android:versionName="0.9.8.2" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

View File

@ -1,6 +1,10 @@
Change Log
==========
Version 0.9.8.2
---------------
* Several bugfixes and improvements
Version 0.9.8.1
---------------
* Added option to flattr an episode automatically after 80 percent of the episode have been played

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.1</p>
<p>AntennaPod, Version 0.9.8.2</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.1</version>
<version>0.9.8.2</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.1";
public final static String USER_AGENT = "AntennaPod/0.9.8.2";
}