# HG changeset patch # User Carl Byington # Date 1405483180 25200 # Node ID db26984b69f5a72897eeac2047e2c5b25cdd0c42 # Parent 79e6adde6fde01144521997a040a376a2eab7af7 update version; add cursor movement keys to the soft function keypad diff -r 79e6adde6fde -r db26984b69f5 AndroidManifest.xml --- a/AndroidManifest.xml Tue Jul 15 14:23:00 2014 -0700 +++ b/AndroidManifest.xml Tue Jul 15 20:59:40 2014 -0700 @@ -17,8 +17,8 @@ --> diff -r 79e6adde6fde -r db26984b69f5 deployment.connections --- a/deployment.connections Tue Jul 15 14:23:00 2014 -0700 +++ b/deployment.connections Tue Jul 15 20:59:40 2014 -0700 @@ -32,7 +32,7 @@ tn5250://pub1.rzkh.de:23#battleship encryption5250=NONE - fontsize=12.5 + fontsize=20 fixed_size=true fixed_width=80 fixed_height=25 diff -r 79e6adde6fde -r db26984b69f5 src/com/five_ten_sg/connectbot/service/TerminalBridge.java --- a/src/com/five_ten_sg/connectbot/service/TerminalBridge.java Tue Jul 15 14:23:00 2014 -0700 +++ b/src/com/five_ten_sg/connectbot/service/TerminalBridge.java Tue Jul 15 20:59:40 2014 -0700 @@ -1259,7 +1259,7 @@ * Function keys dialog */ public boolean showFKeysDialog() { - final String []pickerStrings = {"F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", "F13", "F14", "F15", "F16", "F17", "F18", "F19", "F20", "F21", "F22", "F23", "F24"}; + final String []pickerStrings = {"F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", "F13", "F14", "F15", "F16", "F17", "F18", "F19", "F20", "F21", "F22", "F23", "F24", "←", "→", "↑", "↓", "tab", "ins", "del", "ret"}; final HashMap keymap = new HashMap(); keymap.put("F1", vt320.KEY_F1); keymap.put("F2", vt320.KEY_F2); @@ -1285,6 +1285,14 @@ keymap.put("F22", vt320.KEY_F22); keymap.put("F23", vt320.KEY_F23); keymap.put("F24", vt320.KEY_F24); + keymap.put("←", vt320.KEY_LEFT); + keymap.put("→", vt320.KEY_RIGHT); + keymap.put("↑", vt320.KEY_UP); + keymap.put("↓", vt320.KEY_DOWN); + keymap.put("tab", vt320.KEY_TAB); + keymap.put("ins", vt320.KEY_INSERT); + keymap.put("del", vt320.KEY_DELETE); + keymap.put("ret", vt320.KEY_ENTER); CharSequence str = ""; Editable content = Editable.Factory.getInstance().newEditable(str); diff -r 79e6adde6fde -r db26984b69f5 xml/510connectbot.in --- a/xml/510connectbot.in Tue Jul 15 14:23:00 2014 -0700 +++ b/xml/510connectbot.in Tue Jul 15 20:59:40 2014 -0700 @@ -24,7 +24,7 @@ - 2014-07-14 + 2014-07-15 Carl Byington @@ -90,16 +90,19 @@ - On a per-host basis, you can either set the font size which allows - the number of rows/columns to change depending on the visibility - of the soft keyboard, or you can set the number of rows and colums - and the initial font will be picked based on the screen size. + On a per-host basis, you can either allow the font size to change + the number of rows/columns depending on the visibility + of the soft keyboard, or you can fix the number of rows and colums. The configurable hardware buttons can now change the font size. + + The soft function keypad now includes the cursor movement keys. + + @@ -331,4 +334,136 @@ + + + 2014-07-15 + + Carl + Byington + 510 Software Group + + + + + @PACKAGE@.deployment + 5 + @PACKAGE@ @VERSION@ + + + + @PACKAGE@.deployment + deployment file for @PACKAGE@ + + + + Description + + The @PACKAGE@.conf deployment + file is show by this example. Comments start with # and + extend to the end of the line. + + + + + + Version + + @VERSION@ + + + +