mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-23 15:30:35 +01:00
Prepared release 0.9.3
This commit is contained in:
parent
22640c24b0
commit
7304bf8da7
@ -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="7"
|
||||
android:versionName="0.9.2" >
|
||||
android:versionCode="8"
|
||||
android:versionName="0.9.3" >
|
||||
|
||||
<!-- <uses-permission android:name="android.permission.ACCESS_ALL_DOWNLOADS" /> -->
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
@ -1,6 +1,12 @@
|
||||
Change Log
|
||||
==========
|
||||
|
||||
Version 0.9.3
|
||||
-------------
|
||||
* MiroGuide integration
|
||||
* Bugfixes in the audio- and videoplayer
|
||||
* Automatically add feeds to the queue when they have been downloaded
|
||||
|
||||
Version 0.9.2
|
||||
-------------
|
||||
* Bugfixes in the user interface
|
||||
|
@ -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.2</p>
|
||||
<p>Antennapod, Version 0.9.3</p>
|
||||
<p>Copyright © 2012 Daniel Oeh</p>
|
||||
<p>Licensed under the MIT License <a href="LICENSE.html">(View)</a></p>
|
||||
</div>
|
||||
|
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
<groupId>de.danoeh</groupId>
|
||||
<artifactId>antennapod</artifactId>
|
||||
<packaging>apk</packaging>
|
||||
<version>0.9.2</version>
|
||||
<version>0.9.3</version>
|
||||
<name>AntennaPod</name>
|
||||
|
||||
|
||||
|
@ -85,7 +85,7 @@ public class FeedImageLoader {
|
||||
|
||||
private ExecutorService createExecutor() {
|
||||
return Executors.newFixedThreadPool(Runtime.getRuntime()
|
||||
.availableProcessors(), new ThreadFactory() {
|
||||
.availableProcessors() + 1, new ThreadFactory() {
|
||||
|
||||
@Override
|
||||
public Thread newThread(Runnable r) {
|
||||
|
Loading…
Reference in New Issue
Block a user