diff options
author | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-08-27 10:47:56 +0000 |
---|---|---|
committer | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-08-27 10:47:56 +0000 |
commit | cbf1af86640c76facfc140b5dfb83f2393c02d19 (patch) | |
tree | 0af4a26136f833765cc444cbfeaa52c465c83c81 /src/org/theb/provider/HostDb.java | |
parent | ba0d4f5a28170e52956705fe75a6763ce79e6264 (diff) | |
download | connectbot-cbf1af86640c76facfc140b5dfb83f2393c02d19.tar.gz connectbot-cbf1af86640c76facfc140b5dfb83f2393c02d19.tar.bz2 connectbot-cbf1af86640c76facfc140b5dfb83f2393c02d19.zip |
* moved all terminal logic into a Service backend. connections are held in place by a TerminalBridge, which keeps the connection alive and renders the screen to a
bitmap if provided. a Console creates TerminalViews for each bridge while it is active, and handles panning back/forth between them.
* volume up/down controls will change console font size
* extended trilead library to support resizePTY() command
* left/right screen gestures will pan between various open consoles
* up/down screen gestures on right-half will look through scrollback buffer
* up/down screen gestures on left-half will trigger pageup/down keys
* broke ctrl+ keyboard mapping, will need to bring back over from older code
Diffstat (limited to 'src/org/theb/provider/HostDb.java')
-rw-r--r-- | src/org/theb/provider/HostDb.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/org/theb/provider/HostDb.java b/src/org/theb/provider/HostDb.java index 3a15c8f..1ed7c0c 100644 --- a/src/org/theb/provider/HostDb.java +++ b/src/org/theb/provider/HostDb.java @@ -27,11 +27,14 @@ public final class HostDb { public static final Uri CONTENT_URI = Uri.parse("content://org.theb.provider.HostDb/hosts"); - public static final String DEFAULT_SORT_ORDER = "hostname DESC"; + public static final String DEFAULT_SORT_ORDER = "nickname DESC"; + public static final String NICKNAME = "nickname"; public static final String USERNAME = "username"; public static final String HOSTNAME = "hostname"; public static final String PORT = "port"; + public static final String EMULATION = "emulation"; + public static final String SCROLLBACK = "scrollback"; public static final String HOSTKEY = "hostkey"; } } |