diff options
author | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-10-22 13:46:19 +0000 |
---|---|---|
committer | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-10-22 13:46:19 +0000 |
commit | d9588eacbc781fd7d421a4d6c9d286e93cda9bf0 (patch) | |
tree | fc5b93d8a8fcedd25b0441690a86c5140e9edc7c /src/org/theb/ssh/HostsList.java | |
parent | 4204580877b7150fc85a72542df803ec9d989103 (diff) | |
download | connectbot-d9588eacbc781fd7d421a4d6c9d286e93cda9bf0.tar.gz connectbot-d9588eacbc781fd7d421a4d6c9d286e93cda9bf0.tar.bz2 connectbot-d9588eacbc781fd7d421a4d6c9d286e93cda9bf0.zip |
* added wizard activity to show gpl eula and basic tips
* added version check against connectbot.org to help with future updates
* fixed desktop shortcuts
* other minor fixes to prep for market launch
Diffstat (limited to 'src/org/theb/ssh/HostsList.java')
-rw-r--r-- | src/org/theb/ssh/HostsList.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/org/theb/ssh/HostsList.java b/src/org/theb/ssh/HostsList.java index eb0bc53..888d629 100644 --- a/src/org/theb/ssh/HostsList.java +++ b/src/org/theb/ssh/HostsList.java @@ -149,7 +149,7 @@ public class HostsList extends ListActivity { //setupListStripes(); - mCursor = managedQuery(getIntent().getData(), PROJECTION, null, null); + //mCursor = managedQuery(getIntent().getData(), PROJECTION, null, null); ListAdapter adapter = new HostListCursorAdapter(this, android.R.layout.simple_list_item_1, mCursor, @@ -280,7 +280,7 @@ public class HostsList extends ListActivity { private void showAbout() { Dialog about = new Dialog(this); - about.setContentView(R.layout.about_dialog); + //about.setContentView(R.layout.about_dialog); about.setTitle(getResources().getString(R.string.app_name) + " " + getResources().getString(R.string.msg_version)); @@ -313,9 +313,10 @@ public class HostsList extends ListActivity { //startActivity(new Intent(Intent.ACTION_PICK, url)); // collect all connection details - Cursor cursor = managedQuery(url, new String[] { "nickname", - "username", "hostname", "port", "emulation", "scrollback", - "hostkey" }, null, null); + Cursor cursor = null; +// managedQuery(url, new String[] { "nickname", +// "username", "hostname", "port", "emulation", "scrollback", +// "hostkey" }, null, null); cursor.moveToFirst(); // try finding an already-open bridge for this connection |