Skip to content

Commit

Permalink
nassh: release 0.8.37
Browse files Browse the repository at this point in the history
Change-Id: I66210f444cc90270636e42c790bb2af6e29783e7
  • Loading branch information
vapier committed Sep 12, 2017
1 parent af89c0b commit 3b12767
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
4 changes: 4 additions & 0 deletions nassh/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,10 @@
"description": "Helpful tip shown to user advertising features",
"message": "You can rebind keys/shortcuts: https://goo.gl/LWRndr"
},
"TIP_12": {
"description": "Helpful tip shown to user advertising features",
"message": "Use Yubikeys and other smart cards for ssh auth: https://goo.gl/3ZEU1w"
},
"UNEXPECTED_ERROR": {
"description": "Generic message displayed when we encounter an unexpected error.",
"message": "An unexpected error occurred, please check the JavaScript console for more details."
Expand Down
4 changes: 4 additions & 0 deletions nassh/concat/release-highlights.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,7 @@
# release: 0.8.36.11 (stable August 29)
% The SSH command line can handle basic quoting rules (e.g. -o "Feature yes").
% Unicode combining character processing has been overhauled.

# release: 0.8.37
% Unicode tables updated to 10.0.0 release.
% Use Yubikeys and other smart cards for ssh auth: https://goo.gl/3ZEU1w
13 changes: 13 additions & 0 deletions nassh/doc/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 0.8.37, 2017-09-12, Unicode updates and ssh-agent frameworks.

* Update to libdot 1.18. Unicode 10.0.0 updates (from Unicode 5).
* Update to hterm 1.72. Misc bugfixes.
* Implement an extensible SSH agent (stub backend).
* Integrate Google Smart Card Connector client.
* Add an agent backend for smart card keys.
* Also set relay page to black background.
* Fail gracefully when loading an unknown profile.
* Fix argstr parsing when connecting via URIs.
* Fix opening a new window from the omnibox.
* Use lib.f.getStack helper in more places.

# 0.8.36.12, 2017-09-01, Bugfixes galore.

* Update to libdot 1.17. Better handling for Unicode combining characters.
Expand Down
2 changes: 1 addition & 1 deletion nassh/js/nassh_command_instance.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ nassh.CommandInstance.prototype.run = function() {
}

// Display a random tip every time they launch to advertise features.
var num = lib.f.randomInt(1, 11);
var num = lib.f.randomInt(1, 12);
this.io.println('');
this.io.println(nassh.msg('WELCOME_TIP_OF_DAY',
[num, nassh.msg(`TIP_${num}`)]));
Expand Down
2 changes: 1 addition & 1 deletion nassh/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"manifest_version": 2,
"content_security_policy": "script-src 'self'; object-src 'self'",
"name": "Secure Shell (tot)",
"version": "0.8.36.12",
"version": "0.8.37",
"default_locale": "en",
"icons": {
"128": "images/dev/icon-128.png",
Expand Down

0 comments on commit 3b12767

Please sign in to comment.