aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * Add port forward list activity so port forwards can be saved in databaseKenny Root2008-11-0714-178/+1065
| | | | | * Start saved port forwards when host is connected * Add titles to activities to distinguish where user is
* * Update manifest for version 1.2 releaseKenny Root2008-11-031-2/+2
|
* * Don't repeat a notification if it's the same as the last one.Kenny Root2008-11-035-20/+28
| | | | | * Allow users to copy to the end of the screen. * Strip blank space off the end of each copied line and don't append a return on the last line.
* * fixed bug where we might try loading passworded keys on startup in ↵Jeffrey Sharkey2008-11-039-20/+77
| | | | | | | | background service * changed updatehelper so that user preference can change between daily/weekly/never frequency
* * oops, forgot this newly added res fileJeffrey Sharkey2008-11-031-0/+36
|
* * added "in-memory" function to backend service so that unlocked keys can be ↵Jeffrey Sharkey2008-11-0222-228/+712
| | | | | | | | | | | | | | stored there. this is also disable-able from settings * "use any key" for a host will only look through unlocked in-memory keys * implemented "load on start" functionality in backend service * implemented "import key" which lets you select any openssh-formatted key (including passworded-ones) from simple /sdcard browser * cleaned up context menu in pubkeylist, now includes toggle checkbox for "load at start" but only available when password-less and non-imported * clicking a key in pubkeylist will toggle its backend status (decrypt and put in memory, or remove from memory) * created preference for screen orientation forcing versus auto, but still need to test * created preference for camera button behavior, but still need to test
* * Allow users to force screen size to specific dimensions.Kenny Root2008-11-025-9/+198
|
* * Allow hosts to specify which pubkey to useKenny Root2008-11-019-35/+194
| | | | | * Password-protected pubkeys now supported * Fix some dangling database pointers
* * Convert PubkeyListActivity to use a ViewBinder instead of a custom ↵Kenny Root2008-11-014-62/+52
| | | | | | | CursorAdapter * Convert PubkeyListActivity's icons to image states * Fix typo from last checkin.
* * Allow users to change password for pubkey entries.Kenny Root2008-11-014-10/+231
|
* * Added patch from Issue 61. Thanks, armooo.Kenny Root2008-10-311-5/+24
| | | | | * Corrected some character drawing weirdness. Looks much closer to a real terminal now. * Close pubkey cursor when we're done with it instead of having Android complain about it.
* * Added automatic version number insertion via AntKenny Root2008-10-308-9/+319
| | | | | * Removed unused cruft * Changed Class to Object in PromptHelper.java
* * Add icons for PubkeyListActivity and an empty-list hint TextViewKenny Root2008-10-309-34/+61
| | | | | * Make sure setMargins in terminal emulation can't be fooled * Don't force ConsoleActivity to run in landscape orientation
* * Fix crash if user tries to type during authentication.Kenny Root2008-10-301-0/+3
|
* Okay, you're not going to believe this:Kenny Root2008-10-301-6/+2
| | | | * Fixed yet another error with scroll regions; this time with cursor movement into them.
* * Fix bug introduced that makes lines scroll too much. I think the last two ↵Kenny Root2008-10-301-1/+1
| | | | revisions fix the real bug that this was covering up.
* * Fix delete line bug in emulation that was messing up irssi clock updates.Kenny Root2008-10-303-17/+6
| | | | * Remove some debugging statements that snuck into the code.
* * Fix scrolling region setting bug.Kenny Root2008-10-302-6/+49
| | | | * Ignore xterm-style title updates (we could use this for the TerminalManager title, actually).
* * Fix breaking out of scroll regions when the line wraps.Kenny Root2008-10-291-1/+7
|
* * Add ports to the end of nicknames created for hosts added by quick-connect ↵Kenny Root2008-10-291-2/+8
| | | | with non-default ports.
* * Allow scrolling in Pubkey Generator Activity until we get landscape ↵Kenny Root2008-10-293-84/+78
| | | | | | | | orientation looking better. * Don't drop and recreate HostDatabase on every new version. * Remove some unused pubkey helper functions debug statements. * Fix a typo in debug stateent.
* * First pass at publickey authentication.Kenny Root2008-10-2919-17/+1344
| | | | | | | | * RSA and DSA keys can be generated (not imported yet). * RSA and DSA keys can be copied to the clipboard and deleted. * Encrypted keys are not tried right now, only unencrypted. * Restore Marcus's name (Jeffrey, fix your editor!) * Fix a typo in the EULA.
* * Only release wakelock if we have it acquired. Reference Issue 37Kenny Root2008-10-281-3/+1
|
* * Added support for hosts that don't require authentication.Kenny Root2008-10-271-0/+9
|
* * added better keyboard shortcut into to wizardJeffrey Sharkey2008-10-2711-149/+189
| | | | | | | | * moved a large chunk of strings into strings.xml, still need to think harder about how to handle in TerminalBridge because it needs a Resources object * udpated version strings in manifest to 1.1 and 110 * removed R.java file to help svn-build-bot
* * finished implementing copy functionalityJeffrey Sharkey2008-10-2713-84/+286
| | | | | | | | * added right or left alt- or shift- helping keys (/ and tab), disableable from settings * fixed a few random bugs
* * added port forwarding--tested to work with local "-L" tunnels, tap menu on ↵Jeffrey Sharkey2008-10-2610-120/+244
| | | | | | | | console to create * created preference for keep-alive screen feature
* * fixed bug that causes crash when editing host--we shouldnt be including ↵Jeffrey Sharkey2008-10-261-1/+1
| | | | the BLOB hostkey in the returned cursor
* * refactored prompting gui component into PromptHelper, makes it easier now ↵Jeffrey Sharkey2008-10-2611-162/+473
| | | | | | | | | | because it offers blocking methods to get strings * also added boolean prompt support for hostkey yes/no from user * added checking and storing of hostkeys into backend database, successfully tested * created new icon using android style guide pdf, older icon is still here
* * fixed disconnect in several places so that it correctly disposes of any ↵Jeffrey Sharkey2008-10-2511-85/+292
| | | | | | | | | | | visible gui consoles * now handling remote socket dropping that disconnects sessions * added disconnected icon to stateful connected.xml list and updated binder to use it * added "post-login automation" in host settings to run commands once authenticated (like screen -dr) * bitmaps are now integral w.r.t. char size, which should resolve "cruft" at bottom of views
* First pass at keyboard-interactiveKenny Root2008-10-251-9/+45
|
* * okay loool got rid of all those warnings for all those anal people out ↵Jeffrey Sharkey2008-10-2510-38/+10
| | | | there :P
* * changed preferences to use explicit stringsJeffrey Sharkey2008-10-252-3/+6
|
* * fixed double-password bug when hitting enter (was submitting twice, on ↵Jeffrey Sharkey2008-10-256-20/+48
| | | | | | | | keydown and up) * now correctly reading preferences values for scrollback/emulation
* * fixed last-console disconnect bug crashJeffrey Sharkey2008-10-251-1/+2
|
* * updated prefs to handle enter key nicely (singleLine)Jeffrey Sharkey2008-10-255-23/+68
| | | | | | | * moved wizard stuff around so scrollview works as expected between different steps (instead of fixed height) * added password dialog to console--it will manage showing/hiding as needed
* * added real password prompt to help with special chars and also offer ↵Jeffrey Sharkey2008-10-256-179/+277
| | | | | | | | | visual confirmation * this approach should also work with mutiple auth methods, and handles when switching between multiple consoles correctly * also simplified wizardactivity
* * there we goJeffrey Sharkey2008-10-241-83/+19
|
* * removed older res filesJeffrey Sharkey2008-10-2421-478/+222
|
* * removed one more unused adpater, were using the binder approach nowJeffrey Sharkey2008-10-241-130/+0
|
* * removed older code to clean stuff upJeffrey Sharkey2008-10-2432-3236/+737
| | | | | | | | | * renamed some classes to make clearer * added javadoc everywhere to help explain stuff * separated private key db from host db * removed older "surface" bridge/view because they are painfully slow on hardware, didnt speed up things like we expected they would because lock/unlock of accelerated surface is expensive
* Add explicit intent for the WizardActivity so that you can start from a ↵Kenny Root2008-10-241-0/+1
| | | | fresh install.
* Add back in regressed CTRL and ESC sending by using center DPAD.Kenny Root2008-10-231-0/+18
|
* * forgot to add several files in last passJeffrey Sharkey2008-10-238-1/+200
| | | | | | * wizard layouts, buttons, and connected stateful drawable
* * now updating cursor once we delete hostJeffrey Sharkey2008-10-221-3/+11
|
* * implemented "delete host"Jeffrey Sharkey2008-10-223-45/+61
|
* * added wizard activity to show gpl eula and basic tipsJeffrey Sharkey2008-10-228-101/+352
| | | | | | | | | * added version check against connectbot.org to help with future updates * fixed desktop shortcuts * other minor fixes to prep for market launch
* * connected up host bulbs (green/gray) to backend serviceJeffrey Sharkey2008-09-1811-93/+249
| | | | | | | | | * switch to using a Binder and SimpleCursorAdapter instead of Adapter (slightly less efficient, but easier to update) * added gray color for host category * connected up easy-connect box on front screen to auto-create and launch new connection
* * changed handling of Console window to accept ↵Jeffrey Sharkey2008-09-1513-153/+556
| | | | | | | | | | 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
* * WARNING: this build is broken lolJeffrey Sharkey2008-09-1122-36/+990
| | | | | | | | | | * moving more stuff over to new frontend gui in org.connectbot * found out that we dont need a contentprovider to make desktop shortcuts, will be easy to add ssh://user@host/ uri shortcut handling * new host-editing backend that uses preferences hack, will blog about this technique later today * using colors to categorize hosts (does this work?) * moved host-specific options (like disconnect/edit/delete) to long-tap menu instead of main menu