Skip to content

Commit

Permalink
the address of the connected server is now displayed into the window/…
Browse files Browse the repository at this point in the history
…tab title (thanks Zak)
  • Loading branch information
cedrozor committed Nov 6, 2019
1 parent a10f185 commit 5fcf751
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2019-11-05 Version 2.7.0 (stable)
2019-11-06 Version 2.7.0 (stable)
* HOTFIX * fixed a critical issue with FreeRDP (exit code 131085) when using an RD license server configured in "per device" mode, past the 120 days of the RDS grace period
updated readme and documentation about the RDS role
the browser "heartbeat" (used to detect if the browser window/tab was closed) is now on a different timer than the periodical fullscreen update (config.js; default 10 secs)
Expand All @@ -20,6 +20,7 @@
fixed an issue related to the disconnect callback (which was sometimes not received by the gateway due a WCF deadlock)
scripts and styles now have computed hashes to prevent browser caching (in case content is changed); they could also be minified, as needed (see comments in BundleConfig.cs)
re-enabled multiple connections/tabs (web.config, read comments about security)
the address of the connected server is now displayed into the window/tab title (thanks Zak)

2019-09-02 Version 2.6.0 (stable)
resynced FreeRDP (2.0.0-dev5)
Expand Down
2 changes: 1 addition & 1 deletion Myrtille.Web/Default.aspx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<!-- mobile devices -->
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>

<title>Myrtille</title>
<title>Myrtille<%=RemoteSession != null && (RemoteSession.State == RemoteSessionState.Connecting || RemoteSession.State == RemoteSessionState.Connected) && !string.IsNullOrEmpty(RemoteSession.ServerAddress) ? " - " + RemoteSession.ServerAddress.ToString() : ""%></title>

<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<link rel="stylesheet" type="text/css" href="<%=BundleTable.Bundles.ResolveBundleUrl("~/css/Default.css", true)%>"/>
Expand Down

0 comments on commit 5fcf751

Please sign in to comment.