Skip to content

Commit

Permalink
Bumped version to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed Feb 8, 2011
1 parent e8e0a57 commit 15eafde
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
9 changes: 5 additions & 4 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.uploadedlobster.PwdHash" android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
package="com.uploadedlobster.PwdHash" android:versionCode="2"
android:versionName="1.1">
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:description="@string/app_description">
<activity android:name=".PwdHashApp" android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2011-02-08 Philipp Wolfer <[email protected]>

* Release 1.1
* Use density independent pixels
* Set copy button inactive when unusable
* Limit window width on large screens

2010-12-12 Philipp Wolfer <[email protected]>

* Initial release 1.0
3 changes: 3 additions & 0 deletions res/values-de/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Password Hash</string>
<string name="app_description">Leichtgewichtiges Tool zum Erzeugen von diebstahlsicheren Passwörtern. Password Hash kann einfach über die "Seitenlink weiterleiten" Option im Browser oder direkt gestartet werden. Kompatibel mit pwdhash.com.

Diese App ist freie Software, die unter einer Open-Source-Lizenz bereitgestellt wird.</string>
<string name="siteAddress">Adresse der Webseite</string>
<string name="siteAddressHint">http://example.com</string>
<string name="password">Passwort</string>
Expand Down
3 changes: 3 additions & 0 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Password Hash</string>
<string name="app_description">Lightweight tool to generate website specific, theft-resistant passwords. Just use the "Share page" option in the Android browser or open Password Hash directly. Compatible with pwdhash.com.

This app is free software published under an open source license.</string>
<string name="siteAddress">Site Address</string>
<string name="siteAddressHint">http://example.com</string>
<string name="password">Password</string>
Expand Down

0 comments on commit 15eafde

Please sign in to comment.