Prepared release of version 0.9.6.3
This commit is contained in:
parent
55be2344ce
commit
aa630554dd
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest package="de.danoeh.antennapod"
|
<manifest package="de.danoeh.antennapod"
|
||||||
android:versionCode="23"
|
android:versionCode="24"
|
||||||
android:versionName="0.9.6.2" xmlns:android="http://schemas.android.com/apk/res/android">
|
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.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
Change Log
|
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
|
Version 0.9.6.2
|
||||||
---------------
|
---------------
|
||||||
* Fixed import problems with some OPML files
|
* Fixed import problems with some OPML files
|
||||||
|
|
25
README.md
25
README.md
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
This is the official repository of AntennaPod, a podcast manager for Android.
|
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">
|
<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">
|
<img src="http://www.android.com/images/brand/android_app_on_play_large.png">
|
||||||
</a>
|
</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.
|
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
|
## Dependencies
|
||||||
|
|
||||||
AntennaPod has the following 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
|
- 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
|
- Navigate from your Android SDK directory into tools/support
|
||||||
- Execute the following command:
|
- Execute the following command:
|
||||||
|
<pre>
|
||||||
mvn install:install-file -Dfile=./annotations.jar -DgroupId=android.tools.support -DartifactId=annotations -Dversion=1.0 -Dpackaging=jar
|
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:
|
- In the root directory of this project, you can then execute the following command to build it:
|
||||||
|
<pre>mvn clean package</pre>
|
||||||
mvn clean package
|
|
||||||
|
|
||||||
## Flattr API
|
## 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.
|
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.
|
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
|
## Donate
|
||||||
If you want to translate AntennaPod into another language, you can visit the [Transifex project page](https://www.transifex.com/projects/p/antennapod/).
|
|
||||||
|
[![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>
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
<body>
|
<body>
|
||||||
<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.6.2</p>
|
<p>AntennaPod, Version 0.9.6.3</p>
|
||||||
<p>Copyright © 2012 Daniel Oeh</p>
|
<p>Copyright © 2012 Daniel Oeh</p>
|
||||||
<p>Licensed under the MIT License <a href="LICENSE.html">(View)</a></p>
|
<p>Licensed under the MIT License <a href="LICENSE.html">(View)</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
<groupId>de.danoeh</groupId>
|
<groupId>de.danoeh</groupId>
|
||||||
<artifactId>antennapod</artifactId>
|
<artifactId>antennapod</artifactId>
|
||||||
<packaging>apk</packaging>
|
<packaging>apk</packaging>
|
||||||
<version>0.9.6.2</version>
|
<version>0.9.6.3</version>
|
||||||
<name>AntennaPod</name>
|
<name>AntennaPod</name>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue