aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Telnet: ensure port number is below maximumKenny Root2015-04-172-2/+3
| | | | Closes #62
* Update CHANGELOG for TerminalManager fixKenny Root2015-04-161-0/+1
| | | | | In change 613bc40cdd458c7127902d1fd0b7b4b12fb27268 there was a fix that could be significant for some, so update the CHANGELOG to reflect that.
* Keep TerminalManager alive even during rebindKenny Root2015-04-161-15/+11
|
* Update translationsKenny Root2015-04-1429-87/+0
| | | | Remove unused bind_{minutes,seconds,days} from other languages.
* Use DateUtils.getRelativeTimeSpanStringPeter Collingbourne2015-04-142-19/+3
| | | | Closes #2
* ECDH there should be no negative bigintKenny Root2015-04-053-3/+5
| | | | | | | | | Since the hash is over the canonical values of the agreed parameters when the shared secret was encoded as a negative biginteger, the two sides didn't agree. Make sure this doesn't occur by setting the bigint signum to 1. Change-Id: Ib0581cd7dc280dcce8cc3309d7102f8f5a444158
* Fix ssh-dss host key supportKenny Root2015-04-052-1/+2
| | | | | | | | This string was accidentally renamed to "ssh-dsa" during refactoring. DSA should die and go away, but the SSH standard said that was the only required algorithm when it was created. Change-Id: Ia533eac55692289de8042f6f95714b577941ca3f
* Add changelog entries for 1.8.3Kenny Root2015-04-051-0/+9
| | | | Change-Id: Ifeefc557aaae1e3d6085c17988c728b045e32ee6
* Fix link in CHANGELOGKenny Root2015-04-051-0/+2
| | | | Change-Id: I30ef735f468da663c5ce5e70cec717711aef7d2c
* Provide more context for SSH connection failuresKenny Root2015-04-052-1/+9
| | | | | | | | | | Since the Trilead SSH stack throws IOException on failures and then higher levels of the stack catch those, we need to descend into the causes of each Exception to give the user more context. Unfortunately this information is not localized. Change-Id: I8b1fdf9eab65e5d2f6f1956562cbf9f56a2adb9d
* Keep order for crypto wishlistKenny Root2015-04-052-2/+6
| | | | | | | | Switch from TreeSet to LinkedHashMap since the preference is determined by iterating over the Set for both KEX_ALGS and HOST_KEY_ALGS. The order before was based on string comparisons(!) Change-Id: Ia4573d67f35a5371eb8c70dde631085d61570fe9
* Add a CHANGELOGKenny Root2015-04-051-0/+5
| | | | Change-Id: I7031e8bc379ed52ea8eb06e79cefb871204d530c
* Update version code for v1.8.3Kenny Root2015-04-021-2/+2
| | | | Change-Id: I18026baf76d25af3dc30d46144d3f941bde6f16c
* Update translationsKenny Root2015-04-024-515/+240
| | | | Change-Id: I370370d4cbe6f0f2510cc32f64f51946650ba8e2
* Check for EC support before enabling itKenny Root2015-04-031-6/+24
| | | | Fixes #69
* Break circle since connectionLost should not call closeKenny Root2015-04-031-2/+2
|
* Fix JavaDoc (okay, not much of an improvement)Kenny Root2015-04-031-1/+2
|
* Return empty port forward list if host arg is nullKenny Root2015-03-291-1/+4
| | | | | There would be a NullPointerException if the host passed in was null, so just preclude it by checking.
* Fix last merge request to not undo final of bridgeKenny Root2015-03-281-4/+1
| | | | Change-Id: I47a0d6a0dfcdf735f26dcc09dc4b98d58cb0aa33
* Fix indentation in last pull requestKenny Root2015-03-282-4/+5
| | | | Change-Id: Ib80ec5184ae7b329979580fd0a0c187f8ac01fbf
* Merge pull request #60 from sblackshear/service_npe_fixKenny Root2015-03-291-1/+3
|\ | | | | Fix possible NPE in HostListActivity.onCreateContextMenu
| * Fix possible NPE in HostListActivity.onCreateContextMenuSam Blackshear2015-03-201-1/+3
| |
* | Merge pull request #61 from sblackshear/pubkeylist_npe_fixKenny Root2015-03-291-2/+2
|\ \ | | | | | | Fixing possible NPE in PubkeyListActivity
| * | Fixing possible NPE in PubkeyListActivitySam Blackshear2015-03-251-2/+2
| |/
* | Fix typo in new translationsKenny Root2015-03-281-1/+1
| | | | | | | | Change-Id: I64e8f92ea6a6c58b204bf94eee3820e72bd0d578
* | Merge pull request #68 from pejakm/srtrKenny Root2015-03-291-0/+516
|\ \ | | | | | | Add Serbian translation
| * | Add Serbian translationMladen Pejaković2015-03-281-0/+516
|/ /
* | Localize numbers in ColorsActivityKenny Root2015-03-281-1/+5
| |
* | Update translationsKenny Root2015-03-2712-49/+61
| | | | | | | | Change-Id: Iabc1d6dee20517eba48e22c72784b2d06f887651
* | Do not try to resize local PTY before connectionKenny Root2015-03-271-0/+5
| | | | | | | | | | | | | | At that point shellFd is null and trying to get a field from it via JNI will cause the runtime to abort. Fixes #65
* | Use a sane default font sizeKenny Root2015-03-273-58/+74
| | | | | | | | | | | | | | This will also try to scale existing host entries down by the appropriate amount. Fixes #44
* | Add a close-on-disconnect optionmendhak2015-03-275-5/+31
| | | | | | | | | | | | | | | | Defaults to off to preserve previous behavior. Original patch by Jeff King (@peff) Fixes #23
* | Remove newer API level layout parameterKenny Root2015-03-271-1/+0
| |
* | Make the color picker scale with display densityKenny Root2015-03-274-165/+217
| | | | | | | | | | | | | | | | The UberColorPickerDialog was written when there was only one display density (mdpi). Scale all of the values appropriately for modern multi-density displays. Fixes #64
* | Move new scaled icons out of res/ because they're not allowed in therePaul "LeoNerd" Evans2015-03-262-0/+0
| |
* | Added 64px and 14px rescaled versions of the icon, for launchpad brandingPaul "LeoNerd" Evans2015-03-262-0/+0
| |
* | Update translationsKenny Root2015-03-267-9/+52
| | | | | | | | Change-Id: I7973910fc038dc7d593f0e516d6a4fcd8c41f63a
* | Add updated zh_TW translationsKenny Root2015-03-261-0/+2
| | | | | | | | Change-Id: If5cf2e451c92313eb727de535861dbc9791ed5ed
* | Add translation context for description stringsKenny Root2015-03-261-0/+3
| | | | | | | | Change-Id: Iea226b10973fe418d3a8e3bf6f5067dd0b1ded26
* | Add context for new sticky key modifier preferenceKenny Root2015-03-261-0/+1
| | | | | | | | Change-Id: If34064f1dd42ebdc3887a54fc51ee16a0119687e
* | Update version code for v1.8.2Torne Wuff2015-03-221-2/+2
| |
* | Only enable right modifier directory shortcuts on Dream.Torne Wuff2015-03-224-5/+13
| | | | | | | | | | Disable right modifier directory shortcut keys by default unless running on a Dream.
* | Handle the ins/del/home/end/pageup/pagedown keysPaul "LeoNerd" Evans2015-03-221-0/+31
| |
* | Make sticky modifiers an option, off by default.Torne Wuff2015-03-217-5/+67
| | | | | | | | | | | | | | | | | | | | | | | | Users with near-full-size keyboards (tablet docks/cases, or usb/bluetooth keyboards) probably don't want sticky modifier keys. Make it an option that's off by default (except on the Dream where it's likely desirable). Also, include a third state to make only "alt" sticky, for the benefit of the crazy keyboard driver on the TF101/201 that doesn't emit real key events for alt+key pressed together. Also, implement stickiness for the control key on physical keyboards that have one, for consistency.
* | Reorganise preferences, add category for keyboard prefsTorne Wuff2015-03-212-21/+28
| |
* | Remove update frequency preference.Torne Wuff2015-03-2136-188/+0
| | | | | | | | | | The update checker code was already removed; remove the now-unused pref that controlled it.
* | Cope with keymaps that don't understand ALT modifier by falling back on the ↵Paul "LeoNerd" Evans2015-03-211-1/+5
|/ | | | un-modified Unicode char if it is unknown with
* Update version code for v1.8.1Kenny Root2014-10-211-2/+2
| | | | Change-Id: I9abd1c9ad4b6abed6a2cf6cf9f144aaacb857322
* Update translationsKenny Root2014-09-211-60/+66
| | | | Change-Id: I137f80cc7e8f6d5101134b54b83936f64062ec3e
* New notification icons, also by TwllPaul "LeoNerd" Evans2014-10-215-0/+0
|