Prepared release 0.9
This commit is contained in:
parent
7fbf418760
commit
f564c9a6e2
|
@ -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="3"
|
||||
android:versionName="0.8.2" >
|
||||
android:versionCode="4"
|
||||
android:versionName="0.9" >
|
||||
|
||||
<!-- <uses-permission android:name="android.permission.ACCESS_ALL_DOWNLOADS" /> -->
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
|
|
@ -1,6 +1,13 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
Version 0.9
|
||||
-------------
|
||||
|
||||
* OPML export
|
||||
* Flattr integration
|
||||
* Sleep timer
|
||||
|
||||
Version 0.8.2
|
||||
-------------
|
||||
|
||||
|
|
|
@ -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.2</p>
|
||||
<p>Antennapod, Version 0.9</p>
|
||||
<p>Copyright © 2012 Daniel Oeh</p>
|
||||
</div>
|
||||
<h1>Used libraries</h1>
|
||||
|
|
|
@ -43,7 +43,9 @@
|
|||
-keep interface android.support.v4.app.** { *; }
|
||||
-keep class com.actionbarsherlock.** { *; }
|
||||
-keep interface com.actionbarsherlock.** { *; }
|
||||
|
||||
-keep class org.shredzone.flattr4j.** { *; }
|
||||
-dontskipnonpubliclibraryclasses
|
||||
-keepattributes *Annotation*
|
||||
-dontwarn android.support.**
|
||||
-dontwarn org.shredzone.flattr4j.**
|
||||
-dontwarn org.shredzone.flattr4j.connector.impl.NewFlattrHttpClient
|
||||
-libraryjars /Users/daniel/src/android/podcatcher/libs
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package de.danoeh.antennapod;
|
||||
|
||||
public final class AppConfig {
|
||||
public final static boolean DEBUG = true;
|
||||
public final static boolean DEBUG = false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue