Preparing release 0.8.2

This commit is contained in:
daniel oeh 2012-07-25 12:46:49 +02:00
parent a85a369f3a
commit caed8de179
3 changed files with 4 additions and 4 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="2"
android:versionName="0.8.1" >
android:versionCode="3"
android:versionName="0.8.2" >
<!-- <uses-permission android:name="android.permission.ACCESS_ALL_DOWNLOADS" /> -->
<uses-permission android:name="android.permission.INTERNET" />

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.8.1</p>
<p>Antennapod, Version 0.8.2</p>
<p>Copyright © 2012 Daniel Oeh</p>
</div>
<h1>Used libraries</h1>

View File

@ -1,5 +1,5 @@
package de.danoeh.antennapod;
public final class AppConfig {
public final static boolean DEBUG = true;
public final static boolean DEBUG = false;
}