summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AndroidManifest.xml4
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md25
-rw-r--r--assets/about.html2
-rw-r--r--pom.xml2
5 files changed, 26 insertions, 13 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index e4618af40..281bed29c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="de.danoeh.antennapod"
- android:versionCode="23"
- android:versionName="0.9.6.2" xmlns:android="http://schemas.android.com/apk/res/android">
+ android:versionCode="24"
+ android:versionName="0.9.6.3" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6b3c9fb6d..b7c65c4d8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
Change Log
==========
+Version 0.9.6.3
+---------------
+* Added the ability change the location of AntennaPod's data folder
+* Added Spanish translation (Thanks frandavid100!)
+* Solved problems with several feeds
+
Version 0.9.6.2
---------------
* Fixed import problems with some OPML files
diff --git a/README.md b/README.md
index cc7da5614..636664484 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
This is the official repository of AntennaPod, a podcast manager for Android.
-[![Flattr Button](http://api.flattr.com/button/button-static-50x60.png "Flattr This!")](https://flattr.com/thing/745609/Antennapod "AntennaPod")
+
<a href="https://play.google.com/store/apps/details?id=de.danoeh.antennapod" alt="Download from Google Play">
<img src="http://www.android.com/images/brand/android_app_on_play_large.png">
</a>
@@ -12,6 +12,10 @@ This is the official repository of AntennaPod, a podcast manager for Android.
AntennaPod is licensed under the MIT License. You can find the license text in the LICENSE file.
+## Translating AntennaPod
+If you want to translate AntennaPod into another language, you can visit the [Transifex project page](https://www.transifex.com/projects/p/antennapod/).
+
+
## Dependencies
AntennaPod has the following dependencies:
@@ -37,17 +41,20 @@ You can already build unsigned packages with maven, if you add annotations.jar f
- Make sure the ANDROID_HOME variable is set to the location of your Android SDK installation
- Navigate from your Android SDK directory into tools/support
- Execute the following command:
-
- mvn install:install-file -Dfile=./annotations.jar -DgroupId=android.tools.support -DartifactId=annotations -Dversion=1.0 -Dpackaging=jar
-
-- In the root directory of this project, you can then execute the following command to build it:
-
- mvn clean package
+ <pre>
+mvn install:install-file -Dfile=./annotations.jar -DgroupId=android.tools.support -DartifactId=annotations -Dversion=1.0 -Dpackaging=jar
+</pre>
+- In the root directory of this project, you can then execute the following command to build it:
+ <pre>mvn clean package</pre>
## Flattr API
AntennaPod accesses the flattr API for flattring podcasts. In order to gain access, a client ID and a client secret is required, which you can get by registering a new app on the flattr website. The official API credentials have been excluded from the public source code.
In order to successfully build the project, a java class called FlattrConfig with two fields containing the credentials has to be created in src/de/danoeh/antennapod/util/flattr . You can also use the file called FlattrConfig.java.example to do that. If you leave the two fields blank, everything except the authentication process will work.
-## Translating AntennaPod
-If you want to translate AntennaPod into another language, you can visit the [Transifex project page](https://www.transifex.com/projects/p/antennapod/).
+## Donate
+
+[![Flattr Button](http://api.flattr.com/button/button-static-50x60.png "Flattr This!")](https://flattr.com/thing/745609/Antennapod "AntennaPod")
+
+Bitcoin donations can be sent to this address: <pre>1DzvtuvdW8VhDsq9GUytMyALmsHeaHEKbg</pre>
+
diff --git a/assets/about.html b/assets/about.html
index a708b8e4f..6ea2f37f5 100644
--- a/assets/about.html
+++ b/assets/about.html
@@ -40,7 +40,7 @@
<body>
<div id="header" align="center">
<img src="logo.png" alt="Logo" width="100px" height="100px"/>
- <p>AntennaPod, Version 0.9.6.2</p>
+ <p>AntennaPod, Version 0.9.6.3</p>
<p>Copyright © 2012 Daniel Oeh</p>
<p>Licensed under the MIT License <a href="LICENSE.html">(View)</a></p>
</div>
diff --git a/pom.xml b/pom.xml
index 9045a5b30..30d4c2234 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
<groupId>de.danoeh</groupId>
<artifactId>antennapod</artifactId>
<packaging>apk</packaging>
- <version>0.9.6.2</version>
+ <version>0.9.6.3</version>
<name>AntennaPod</name>