Prepared release of version 0.9.8.3

This commit is contained in:
daniel oeh 2014-03-19 23:16:30 +01:00
parent 54051da5f7
commit dc0d2738a1
6 changed files with 13 additions and 5 deletions

View File

@ -12,6 +12,7 @@ trans.de = res/values-de/strings.xml
trans.es = res/values-es/strings.xml trans.es = res/values-es/strings.xml
trans.es_ES = res/values-es-rES/strings.xml trans.es_ES = res/values-es-rES/strings.xml
trans.fr = res/values-fr/strings.xml trans.fr = res/values-fr/strings.xml
trans.he_IL = res/values-he-rIL/strings.xml
trans.hi_IN = res/values-hi-rIN/strings.xml trans.hi_IN = res/values-hi-rIN/strings.xml
trans.it_IT = res/values-it-rIT/strings.xml trans.it_IT = res/values-it-rIT/strings.xml
trans.ko = res/values-ko/strings.xml trans.ko = res/values-ko/strings.xml

View File

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

View File

@ -1,6 +1,13 @@
Change Log Change Log
========== ==========
Version 0.9.8.3
---------------
* Added support for password-protected feeds and episodes
* Added support for more types of episode images
* Added Hebrew translation
* Several bugfixes and improvements
Version 0.9.8.2 Version 0.9.8.2
--------------- ---------------
* Several bugfixes and improvements * Several bugfixes and improvements

View File

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

View File

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

View File

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