Prepared release 0.9.3

This commit is contained in:
daniel oeh 2012-08-06 13:09:12 +02:00
parent 22640c24b0
commit 7304bf8da7
5 changed files with 11 additions and 5 deletions

View File

@ -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" />

View File

@ -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

View File

@ -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>

View File

@ -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>

View File

@ -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) {