From d3a304e9e899fbc338490e95858de28b0b975ded Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Sun, 5 Apr 2015 16:13:45 -0700 Subject: Fix link in CHANGELOG Change-Id: I30ef735f468da663c5ce5e70cec717711aef7d2c --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddfccf0..dce610c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,3 +10,5 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added - More context is given for failures to connect via SSH which should reveal why a host might be incompatible with ConnectBot. + +[unreleased]: https://github.com/connectbot/connectbot/compare/v1.8.3...HEAD -- cgit v1.2.3 From 9d23e76add914cfa58eaef6ecd900778a3d5a71b Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Sun, 5 Apr 2015 16:22:49 -0700 Subject: Add changelog entries for 1.8.3 Change-Id: Ifeefc557aaae1e3d6085c17988c728b045e32ee6 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dce610c..4e02609 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,4 +11,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). - More context is given for failures to connect via SSH which should reveal why a host might be incompatible with ConnectBot. +## [1.8.3][1.8.3] - 2014-04-02 +### Fixed +- Only enable EC support when the device supports it. +- Default font size scales with the device display density. +- Color picker scales correctly depending on device density. +- Color picker color numbers are now localized + + [unreleased]: https://github.com/connectbot/connectbot/compare/v1.8.3...HEAD +[1.8.3]: https://github.com/connectbot/connectbot/compare/v1.8.2...v1.8.3 -- cgit v1.2.3 From 149080bc7dcbdbe310e39891e6a9dff0ceec8e8b Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Sun, 5 Apr 2015 17:25:43 -0700 Subject: Fix ssh-dss host key support 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 --- CHANGELOG.md | 1 + src/com/trilead/ssh2/transport/KexManager.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e02609..3c857f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Key exchange and host key algorithm preference order was not being respected. +- DSA host key support was broken from the beginning of the v1.8 series. ### Added - More context is given for failures to connect via SSH which should diff --git a/src/com/trilead/ssh2/transport/KexManager.java b/src/com/trilead/ssh2/transport/KexManager.java index acf2812..ee0784a 100644 --- a/src/com/trilead/ssh2/transport/KexManager.java +++ b/src/com/trilead/ssh2/transport/KexManager.java @@ -70,7 +70,7 @@ public class KexManager HOSTKEY_ALGS.add("ecdsa-sha2-nistp521"); } HOSTKEY_ALGS.add("ssh-rsa"); - HOSTKEY_ALGS.add("ssh-dsa"); + HOSTKEY_ALGS.add("ssh-dss"); } private static final Set KEX_ALGS = new LinkedHashSet(); -- cgit v1.2.3