# HG changeset patch # User Da Risk # Date 1240484096 -7200 # Node ID 89bbb1c560adfd40f4ce22383913343a60a7728a # Parent f63bb1a2fa7c679bff7214006f5c226076910006 Pre release diff -r f63bb1a2fa7c -r 89bbb1c560ad AndroidManifest.xml --- a/AndroidManifest.xml Wed Apr 22 19:53:57 2009 +0200 +++ b/AndroidManifest.xml Thu Apr 23 12:54:56 2009 +0200 @@ -1,7 +1,6 @@ + package="com.beem.project.beem" android:versionCode="1" android:versionName="1.0"> diff -r f63bb1a2fa7c -r 89bbb1c560ad src/com/beem/project/beem/ui/ContactList.java --- a/src/com/beem/project/beem/ui/ContactList.java Wed Apr 22 19:53:57 2009 +0200 +++ b/src/com/beem/project/beem/ui/ContactList.java Thu Apr 23 12:54:56 2009 +0200 @@ -10,6 +10,7 @@ import android.content.Intent; import android.content.SharedPreferences; import android.graphics.drawable.Drawable; +import android.net.Uri; import android.os.Bundle; import android.os.Handler; import android.os.RemoteException; @@ -153,6 +154,8 @@ startActivityForResult(new Intent(this, ContactListSettings.class), PREFERENCECHANGED); return true; case R.id.account_about: + Intent t = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.beem-project.com")); + startActivity(t); return true; case R.id.account_create: startActivity(new Intent(this, AccountCreation.class));