V0.1.1: Final Commit

This commit is contained in:
Evan Debenham 2014-08-15 23:51:33 -04:00
parent fb115114f4
commit af01b4e3e8
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shatteredpixel.shatteredpixeldungeon" package="com.shatteredpixel.shatteredpixeldungeon"
android:versionCode="1" android:versionCode="2"
android:versionName="0.1.0" android:versionName="0.1.1"
android:installLocation="auto"> android:installLocation="auto">
<uses-permission android:name="android.permission.VIBRATE"/> <uses-permission android:name="android.permission.VIBRATE"/>

View File

@ -108,9 +108,9 @@ public class TitleScene extends PixelScene {
source.y = h - source.height(); source.y = h - source.height();
add( source ); add( source );
BitmapText version = new BitmapText( "v " + Game.version, font1x ); BitmapText version = new BitmapText( "v " + Game.version + " ", font1x );
version.measure(); version.measure();
version.hardlight( 0x888888 ); version.hardlight( 0xCCCCCC );
version.x = w - version.width(); version.x = w - version.width();
version.y = h - version.height() - source.height(); version.y = h - version.height() - source.height();
add( version ); add( version );