aboutsummaryrefslogtreecommitdiffstats
path: root/res/xml/preferences.xml
diff options
context:
space:
mode:
authorJeffrey Sharkey <jsharkey@jsharkey.org>2008-09-15 05:19:47 +0000
committerJeffrey Sharkey <jsharkey@jsharkey.org>2008-09-15 05:19:47 +0000
commit345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d (patch)
tree2780d2ca523d1c9e8b65a96cac8071e4aa8bef48 /res/xml/preferences.xml
parent071e39dc7e7d06c021a6d65ae7a65242c8ea99ed (diff)
downloadconnectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.tar.gz
connectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.tar.bz2
connectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.zip
* changed handling of Console window to accept ssh://user@host:port/#nickname intents, which will also be used by desktop shortcuts later
* changed terminalbridge to handle all hostkey and password authentication through console instead of android gui (mimics traditional openssh) * added disconnect and paste functionality to Console menu
Diffstat (limited to 'res/xml/preferences.xml')
-rw-r--r--res/xml/preferences.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
new file mode 100644
index 0000000..2d19670
--- /dev/null
+++ b/res/xml/preferences.xml
@@ -0,0 +1,20 @@
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <ListPreference
+ android:key="emulation"
+ android:title="Emulation mode"
+ android:summary="Terminal emulation mode to use for PTY connections"
+ android:entries="@array/list_emulation_modes"
+ android:defaultValue="screen"
+ android:entryValues="@array/list_emulation_modes"
+ />
+
+ <EditTextPreference
+ android:key="scrollback"
+ android:title="Scrollback size"
+ android:summary="Size of scrollback buffer to keep in memory for each console"
+ android:defaultValue="140"
+ />
+
+
+</PreferenceScreen> \ No newline at end of file