fix for missing last charactor on "close database" button in German

dark status bar color for blue theme
Version 0.9.9 (preview 2)
This commit is contained in:
Philipp Crocoll 2015-10-31 05:02:44 +01:00
parent 88e6c13513
commit bcd7aa722e
4 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<?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"
android:versionCode="61" android:versionCode="62"
android:versionName="0.9.9-pre1" android:versionName="0.9.9"
package="keepass2android.keepass2android" package="keepass2android.keepass2android"
android:installLocation="auto"> android:installLocation="auto">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />

View File

@ -114,6 +114,7 @@ namespace keepass2android
Button btnLock = (Button) FindViewById(Resource.Id.QuickUnlock_buttonLock); Button btnLock = (Button) FindViewById(Resource.Id.QuickUnlock_buttonLock);
btnLock.Text = btnLock.Text.Replace("ß", "ss");
btnLock.Click += (object sender, EventArgs e) => btnLock.Click += (object sender, EventArgs e) =>
{ {
App.Kp2a.LockDatabase(false); App.Kp2a.LockDatabase(false);

View File

@ -35,7 +35,6 @@ android:fitsSystemWindows="true">
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
style="@style/BottomBarButton" style="@style/BottomBarButton"
android:singleLine="true"
android:id="@+id/QuickUnlock_buttonLock" android:id="@+id/QuickUnlock_buttonLock"
android:layout_alignParentLeft="true" android:layout_alignParentLeft="true"
/> />

View File

@ -96,7 +96,7 @@
<style name="MyTheme_Blue" parent="MyTheme"> <style name="MyTheme_Blue" parent="MyTheme">
<item name="colorPrimary">@color/appAccentColor</item> <item name="colorPrimary">@color/appAccentColor</item>
<!-- colorPrimaryDark is used for the status bar --> <!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/appAccentColor</item> <item name="colorPrimaryDark">@color/appAccentColorDark</item>
<!-- colorAccent is used as the default value for colorControlActivated <!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets --> which is used to tint widgets -->
<item name="colorAccent">@color/appAccentColor</item> <item name="colorAccent">@color/appAccentColor</item>