Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.u17od.upm"
android:versionCode="15"
android:versionName="1.14">
android:versionCode="14"
android:versionName="1.13">

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
Expand Down
4 changes: 0 additions & 4 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ Features

History
-------
v1.14 28-Oct-2012
* Added support for syncing to Dropbox
* Hide account details in screenshots and task manager

v1.13 12-Aug-2012
* Added support for all API levels up to and including 16
* Fixed a few bugs
Expand Down
13 changes: 13 additions & 0 deletions src/com/u17od/upm/AccountsList.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
import com.u17od.upm.database.PasswordDatabase;

public class AccountsList extends ListActivity {
private static final int DELETE_DIALOG = 5;
public static AccountInformation account;
private int editAccountResultCode = 0;

@Override
public void onCreate(Bundle savedInstanceState) {
Expand Down Expand Up @@ -67,9 +70,19 @@ public boolean onContextItemSelected(MenuItem item) {
case R.id.launch_url:
launchURL(getURL(getAccount(info.targetView)));
return true;
case R.id.delete:
if (Utilities.isSyncRequired(this)) {
UIUtilities.showToast(this, R.string.sync_required);
} else {
showDialog(DELETE_DIALOG);
}
break;
}
return super.onContextItemSelected(item);
}




private void setClipboardText(String text) {
ClipboardManager clipboardManager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
Expand Down