Prepared release of version 0.9.7.5
This commit is contained in:
parent
88cfe71f75
commit
862b8db20b
|
@ -21,6 +21,7 @@ trans.ru-RU = res/values-ru/strings.xml
|
|||
trans.ru_RU = res/values-ru/strings.xml
|
||||
trans.uk_UA = res/values-uk-rUA/strings.xml
|
||||
trans.zh_CN = res/values-zh-rCN/strings.xml
|
||||
trans.sv_SE = res/values-sv-rSE/strings.xml
|
||||
|
||||
[antennapod.description]
|
||||
file_filter = description/<lang>.txt
|
||||
|
|
|
@ -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="31"
|
||||
android:versionName="0.9.7.4" >
|
||||
android:versionCode="32"
|
||||
android:versionName="0.9.7.5" >
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
Version 0.9.7.5
|
||||
---------------
|
||||
* Reduced application startup time
|
||||
* Reduced memory usage
|
||||
* Added option to change the playback speed
|
||||
* Added Swedish translation
|
||||
* Several bugfixes and improvements
|
||||
|
||||
Version 0.9.7.4
|
||||
---------------
|
||||
* Episode cache size can now be set to unlimited
|
||||
|
|
|
@ -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.7.4</p>
|
||||
<p>AntennaPod, Version 0.9.7.5</p>
|
||||
<p>Copyright © 2012 Daniel Oeh</p>
|
||||
<p>Licensed under the MIT License <a href="LICENSE.html">(View)</a></p>
|
||||
</div>
|
||||
|
@ -57,5 +57,7 @@
|
|||
licensed under the Apache 2.0 license
|
||||
<h2>drag-sort-listview <a href="https://github.com/bauerca/drag-sort-listview">(Link)</a></h2>
|
||||
licensed under the Apache 2.0 license
|
||||
<h2>Presto Client <a href="http://www.aocate.com/presto/">(Link)</a></h2>
|
||||
licensed under the Apache 2.0 license
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -25,7 +25,7 @@ dependencies {
|
|||
|
||||
compile 'com.android.support:appcompat-v7:18.0.+'
|
||||
compile 'org.apache.commons:commons-lang3:3.1'
|
||||
compile ('org.shredzone.flattr4j:flattr4j-core:2.4') {
|
||||
compile ('org.shredzone.flattr4j:flattr4j-core:2.7') {
|
||||
exclude group: 'org.apache.httpcomponents', module: 'httpcore'
|
||||
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
||||
exclude group: 'org.json', module: 'json'
|
||||
|
|
Loading…
Reference in New Issue