Prepared release of next version
This commit is contained in:
parent
c78297d6b4
commit
24538d7ebb
|
@ -1,6 +1,12 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
Version 0.9.9.6
|
||||
---------------
|
||||
- Fixed problems related to variable speed playback
|
||||
- Fixed automatic feed update problems
|
||||
- Several other bugfixes and improvements
|
||||
|
||||
Version 0.9.9.5
|
||||
---------------
|
||||
* Added support for paged feeds
|
||||
|
|
|
@ -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="42"
|
||||
android:versionName="0.9.9.5">
|
||||
android:versionCode="43"
|
||||
android:versionName="0.9.9.6">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
<div id="header" align="center">
|
||||
<img src="logo.png" alt="Logo" width="100px" height="100px"/>
|
||||
|
||||
<p>AntennaPod, Version 0.9.9.5</p>
|
||||
<p>AntennaPod, Version 0.9.9.6</p>
|
||||
|
||||
<p>Copyright © 2014 Daniel Oeh</p>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import de.danoeh.antennapod.core.ClientConfig;
|
|||
public class ClientConfigurator {
|
||||
|
||||
static {
|
||||
ClientConfig.USER_AGENT = "AntennaPod/0.9.9.5";
|
||||
ClientConfig.USER_AGENT = "AntennaPod/0.9.9.6";
|
||||
ClientConfig.applicationCallbacks = new ApplicationCallbacksImpl();
|
||||
ClientConfig.downloadServiceCallbacks = new DownloadServiceCallbacksImpl();
|
||||
ClientConfig.gpodnetCallbacks = new GpodnetCallbacksImpl();
|
||||
|
|
Loading…
Reference in New Issue