Browse Source

preparing alpha9 release

fysx 12 years ago
parent
commit
9e7e31ba05
2 changed files with 15 additions and 6 deletions
  1. 4 4
      AndroidManifest.xml
  2. 11 2
      README.md

+ 4 - 4
AndroidManifest.xml

@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <manifest package="org.love2d.android"
-      android:versionCode="8"
-      android:versionName="0.9.0-alpha8"
+      android:versionCode="9"
+      android:versionName="0.9.0-alpha9"
       android:installLocation="auto" xmlns:android="http://schemas.android.com/apk/res/android">
     <uses-permission android:name="android.permission.INTERNET"/>
     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
@@ -11,12 +11,12 @@
     <application
         android:allowBackup="true"
         android:icon="@drawable/ic_launcher"
-        android:label="Löve for Android"
+        android:label="LÖVE for Android"
         android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
         <activity
             android:name="GameActivity"
             android:configChanges="orientation|screenSize"
-            android:label="Löve for Android"
+            android:label="LÖVE for Android"
             android:screenOrientation="landscape" >
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />

+ 11 - 2
README.md

@@ -1,5 +1,5 @@
 Android Port of LÖVE, the awesome 2D game engine LÖVE (http://love2d.org)
-Copyright (c) 2013 Martin Felis <[email protected]>
+Copyright (c) 2013-2014 Martin Felis <[email protected]>
 
 Instructions:
 -------------
@@ -27,11 +27,20 @@ Bugs:
 -----
 
 Bugs and feature requests should be reported to the [issue
-tracker](issues).
+tracker](issues?status=new&status=open).
 
 Changelog:
 ----------
 
+alpha9:
+
+* Packaged games do not get duplicated for loading, instead are loaded from memory (!!!)
+* Using inofficial physfs 2.1
+* Removed love.android.getDisplayMetrics(), instead use love.window.getPixelScale() 
+* Properly link LGPL libraries dynamically. Everything else is linked statically
+* Added an icon (design by @josefnpat)
+* Fixed crash on startup on OUYA (and possibly other devices)
+
 alpha8:
 
 * Exposing DisplayMetrics in love.android.getDisplayMetrics())