Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to automatically copy password to clipboard after decryption #23

Merged
merged 3 commits into from
Oct 29, 2014
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix namespaces for showAsAction attributes to icons show in ActioBar
  • Loading branch information
jbaiter committed Oct 29, 2014
commit 741ce31abb9bcb82262461f9b8ec8101b962e6f0
3 changes: 2 additions & 1 deletion app/src/main/res/menu/agp_intents.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:pwstore="http://schemas.android.com/apk/res-auto"
tools:context="com.zeapo.pwdstore.AgpIntentsActivity" >
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never" />
pwstore:showAsAction="never" />
</menu>
3 changes: 2 additions & 1 deletion app/src/main/res/menu/git_clone.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:pwstore="http://schemas.android.com/apk/res-auto"
tools:context="com.zeapo.pwdstore.GitHandler" >
<item android:id="@+id/user_pref"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never" />
pwstore:showAsAction="never" />
</menu>
3 changes: 2 additions & 1 deletion app/src/main/res/menu/pgp_handler.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:pwstore="http://schemas.android.com/apk/res-auto"
tools:context="com.zeapo.pwdstore.crypto.PgpHandler" >
<item android:title="Copy password"
android:icon="@drawable/ico_copy"
android:showAsAction="ifRoom"
pwstore:showAsAction="ifRoom"
android:id="@+id/copy_password"
/>
</menu>
5 changes: 3 additions & 2 deletions app/src/main/res/menu/pwdstore.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:pwstore="http://schemas.android.com/apk/res-auto"
tools:context=".pwdstore" >

<item android:id="@+id/menu_add_password"
android:icon="@drawable/ico_add"
android:showAsAction="always"
pwstore:showAsAction="always"
android:title="New password"/>

<!--<item android:id="@+id/menu_add_category"-->
Expand All @@ -17,7 +18,7 @@

<item android:id="@+id/referesh"
android:title="Refresh list"
android:showAsAction="never"
pwstore:showAsAction="never"
android:icon="@drawable/ico_sync"/>

<item android:id="@+id/user_pref"
Expand Down