| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
* "Port forwards" menu item in ConsoleActivity goes to PortForwardListActivity now
* Allow users to delete tunnels
|
|
|
|
|
| |
* Start saved port forwards when host is connected
* Add titles to activities to distinguish where user is
|
|
|
|
|
| |
* 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.
|
|
|
|
|
|
|
|
| |
background service
* changed updatehelper so that user preference can change between daily/weekly/never frequency
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
| |
* Password-protected pubkeys now supported
* Fix some dangling database pointers
|
|
|
|
|
|
|
| |
CursorAdapter
* Convert PubkeyListActivity's icons to image states
* Fix typo from last checkin.
|
| |
|
|
|
|
|
| |
* 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.
|
|
|
|
|
| |
* Removed unused cruft
* Changed Class to Object in PromptHelper.java
|
|
|
|
|
| |
* Make sure setMargins in terminal emulation can't be fooled
* Don't force ConsoleActivity to run in landscape orientation
|
| |
|
|
|
|
| |
* Fixed yet another error with scroll regions; this time with cursor movement into them.
|
|
|
|
| |
revisions fix the real bug that this was covering up.
|
|
|
|
| |
* Remove some debugging statements that snuck into the code.
|
|
|
|
| |
* Ignore xterm-style title updates (we could use this for the TerminalManager title, actually).
|
| |
|
|
|
|
| |
with non-default ports.
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
| |
* 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.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
|
|
| |
* added right or left alt- or shift- helping keys (/ and tab), disableable from settings
* fixed a few random bugs
|
|
|
|
|
|
|
|
| |
console to create
* created preference for keep-alive screen feature
|
|
|
|
| |
the BLOB hostkey in the returned cursor
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
there :P
|
|
|
|
|
|
|
|
| |
keydown and up)
* now correctly reading preferences values for scrollback/emulation
|
| |
|
|
|
|
|
|
|
|
|
| |
visual confirmation
* this approach should also work with mutiple auth methods, and handles when switching between multiple consoles correctly
* also simplified wizardactivity
|
| |
|
|
|
|
|
|
|
|
|
| |
* 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
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
* added version check against connectbot.org to help with future updates
* fixed desktop shortcuts
* other minor fixes to prep for market launch
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
| |
* Remove unnecessary imports
* Update onPause to not use deprecated Cursor functions.
* Update onResume to not use deprecated Cursor functions.
|
|
|
|
|
| |
* Fix crash when aborting password dialog.
* Arrange menu selections in a more meaningful way when hosts are selected.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
* Updated deletion to go directly to the ContentProvider
|