aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Move drawing into UI thread instead of SSH receiver threadKenny Root2009-01-192-15/+9
|
* Don't allow fonts to be zero or negative sizes.Kenny Root2009-01-191-0/+3
|
* Hack to disable volume key beeps.Kenny Root2009-01-191-0/+3
|
* Fill deleted last line with space characterKenny Root2009-01-171-0/+1
|
* Fill inserted lines with space characterKenny Root2009-01-171-0/+1
|
* Scroll to bottom of window on keyboard inputKenny Root2009-01-161-0/+4
|
* Some call optimizations to make terminal emulation fasterKenny Root2009-01-162-40/+62
| | | | | | * Instead of making a String and then breaking it down again, pass in our Character array * Don't bother checking the type of a Character below or equal to 0x7F because it's ASCII * We don't always need to know the bottom and top margins, so only call getTopMargin() or getBottomMargin() when we do
* Handling for incomplete UTF-8 byte sequencesKenny Root2009-01-141-6/+98
|
* Bounds checkingKenny Root2009-01-131-2/+4
|
* A smaller fix to the ViewFlipper bugKenny Root2009-01-132-67/+10
|
* Workaround for ViewAnimator bugKenny Root2009-01-132-8/+74
| | | | * Was causing the last still-connected hosts to not show the correct options menu after a preceeding connection was closed.
* Allow hosts to be disconnected/closed once you have a dead session.Kenny Root2009-01-072-38/+45
|
* Only remove bridge after we get an answer from the user if applicableKenny Root2009-01-061-7/+5
|
* Fix race condition when writing to local pre-connection buffer.Kenny Root2009-01-061-4/+13
|
* Restore DEC special for GR sets as wellKenny Root2009-01-041-2/+0
|
* Terminal emulation fixesKenny Root2009-01-041-42/+19
| | | | | | * Only display DEC special graphics when it's in the correct range (GL only) * Make sure terminal reset is consistent * Change the default graphics set to be compliant with ANSI level 1 (all ASCII, basically) instead of 0
* Disable DEC special characters for nowKenny Root2008-12-311-0/+4
| | | | | | * It appears that DEC special characters were enabled when they shouldn't be * Specification for VT emulation should be reviewed to determine when to enable * Precomposed Unicode characters should work better now
* Correctly handle bold black foreground on black backgroundKenny Root2008-12-311-10/+13
| | | | | * We were interpreting bold as being really bold, but it should just be a brighter ANSI color * We're now fake bolding all text, but we should just increase the brightness of the colors
* * Fixed bug where irssi somehow shows black-on-black text. I think it's ↵Jeffrey Sharkey2008-12-301-2/+0
| | | | | | | | using some other formatting flag that we don't recognize, but this corrects it for now. This might break other apps that intentionally hide something using black-on-black?
* * Added "bumpy arrows" so that arrow keys trigger vibration, useful for ↵Jeffrey Sharkey2008-12-293-8/+39
| | | | | | | | | laggy connections. Also added preference to turn off if desired. * Created windowNoTitle style to prevent brief flashing of title bar on ConsoleActivity, instead of requesting programatically. * Slight padding change to EULA screen.
* Change secret key encryption algorithm to be more secureKenny Root2008-12-273-19/+245
|
* Allow unencrypted export of private keys in PKCS#8 formatKenny Root2008-12-266-13/+192
|
* * Prepare for private key exportKenny Root2008-12-261-1/+1
|
* * fresh check-out build fixKenny Root2008-12-263-9/+12
| | | | | * Various cosmetic bugs with pubkeys
* Add (limited) support for switching encodings on host connections; a more ↵Kenny Root2008-12-165-8/+1099
| | | | | | | radical change is needed to be fully Unicode. * This only supports Unicode characters that can be precomposed for now (e.g., no combining marks or other zero-width characters) which will break a lot of languages. * This does not support full-width characters (e.g., Asian languages)
* Add extra bit for default color supportKenny Root2008-12-123-14/+14
|
* * Support more xterm attributes ESC [90m - 97m and 100m - 107mKenny Root2008-12-123-60/+129
| | | | | | * Move onus of color tracking to VDUDisplay implementors * Fix some indentation to match mud.de style * Add color resets to "ESC c" functionality
* Add in xterm-style 256 color supportKenny Root2008-12-123-30/+87
|
* Output algorithm during connection.Kenny Root2008-12-111-2/+24
|
* Only react to the slash and tab keys on keyUp and don't print anything if it ↵Kenny Root2008-12-111-11/+39
| | | | was used as a modifier
* * Fix inverted logic in loading pubkeysKenny Root2008-12-111-1/+1
|
* * Make sure we catch rebinds to cancel timerKenny Root2008-12-111-6/+34
|
* * Only release Wi-Fi lock when it's held (darn you, inaccurate SDK ↵Kenny Root2008-12-112-20/+55
| | | | | | | documentation) * Stop service immediately if ConnectBot is exited with no connected hosts if there are no loaded pubkeys, OR * Stop service after timeout if there are loaded pubkeys
* Duplicate ESC-c reset functionality in vt320.reset() (perhaps should be inlined)Kenny Root2008-11-241-0/+5
|
* Wrap local output lines before we connectKenny Root2008-11-241-7/+33
|
* Only lock Wi-Fi if our active network is Wi-Fi upon connectionKenny Root2008-11-241-2/+7
|
* Display the reason a connection couldn't be made if connection fails before ↵Kenny Root2008-11-241-2/+4
| | | | authentication.
* Added preference for Wi-Fi lockingKenny Root2008-11-211-34/+60
|
* Continued pubkey bean conversionKenny Root2008-11-205-86/+42
|
* Fix typo in last commitKenny Root2008-11-201-1/+1
|
* Convert Pubkey handling to PubkeyBean in preparation for backup/restore ↵Kenny Root2008-11-209-214/+425
| | | | functionality
* Change things from public and protected to protected and private where they ↵Kenny Root2008-11-2014-94/+77
| | | | should be (being private helps with dead code detection in Eclipse)
* Only prompt user whether to close session when remote side closed it.Kenny Root2008-11-204-21/+24
|
* * Respond to channel EOF instead of exit status.Kenny Root2008-11-192-11/+21
| | | | * Make ESC-c clear the buffer like other terminal emulators.
* Catch when our remote shell is killed.Kenny Root2008-11-191-4/+5
|
* * Fix disconnect prompt when in port orientationKenny Root2008-11-196-66/+185
| | | | | * Fix answerback to send back current terminal emulation mode * Abstract beans to allow serialization into XML
* * Handle not-yet-connected hosts correctlyKenny Root2008-11-182-38/+66
| | | | * Fix annoying pre-connection row movement bug when resizing to a larger number of rows.
* * Refactor a bit of the help screenKenny Root2008-11-185-378/+437
| | | | * Don't close view when host disconnects (user must explicitly close now)
* * Add rudimentary help system.Kenny Root2008-11-165-19/+197
|
* * Restore compression option.Kenny Root2008-11-141-0/+1
|