Skip to content

Commit

Permalink
Merge pull request #460 from openziti/release-next
Browse files Browse the repository at this point in the history
Release 1.10.6
  • Loading branch information
mary-dcouto authored Oct 11, 2021
2 parents 17a579d + 28b679f commit b8487ee
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 15 deletions.
6 changes: 3 additions & 3 deletions DesktopEdge/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.10.5.0")]
[assembly: AssemblyVersion("1.10.5.0")]
[assembly: AssemblyFileVersion("1.10.5.0")]
// [assembly: AssemblyVersion("1.10.6.0")]
[assembly: AssemblyVersion("1.10.6.0")]
[assembly: AssemblyFileVersion("1.10.6.0")]
2 changes: 1 addition & 1 deletion DesktopEdge/Views/ItemRenderers/IdentityItem.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ private void TimerTicked(object sender, EventArgs e) {
private void ShowMFAToast(string message, ZitiIdentity identity) {
logger.Info("Shwoing Notification from identity " + _identity.Name + " " + message + ".");
new ToastContentBuilder()
.AddText(_identity.Name+" Service Access Timed Out")
.AddText(_identity.Name+" Service Access Warning")
.AddText(message)
.AddArgument("fingerprint", identity.Fingerprint)
.SetBackgroundActivation()
Expand Down
4 changes: 2 additions & 2 deletions Installer/ZitiDesktopEdge.aip
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<ROW Property="CTRLS" Value="2"/>
<ROW Property="Manufacturer" Value="NetFoundry, Inc."/>
<ROW Property="MsiLogging" MultiBuildValue="AnyCPU_Release:vp"/>
<ROW Property="ProductCode" Value="1033:{15F4DF1B-9E64-4383-BD41-AB0C9BA475E4} " Type="16"/>
<ROW Property="ProductCode" Value="1033:{5452420C-0907-48D1-9080-7570A0AC0CEA} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="Ziti Desktop Edge"/>
<ROW Property="ProductVersion" Value="1.10.5" Type="32"/>
<ROW Property="ProductVersion" Value="1.10.6" Type="32"/>
<ROW Property="REBOOT" MultiBuildValue="AnyCPU_Release:Suppress"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND;AI_SETUPEXEPATH;SETUPEXEDIR"/>
<ROW Property="UpgradeCode" Value="{CB7E173A-663D-4A23-BB22-D1E8D885C2F3}"/>
Expand Down
6 changes: 3 additions & 3 deletions ZitiUpdateService/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.10.5.0")]
[assembly: AssemblyVersion("1.10.5.0")]
[assembly: AssemblyFileVersion("1.10.5.0")]
// [assembly: AssemblyVersion("1.10.6.0")]
[assembly: AssemblyVersion("1.10.6.0")]
[assembly: AssemblyFileVersion("1.10.6.0")]

15 changes: 15 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Release 1.10.6

## What's New
* none

## Other changes:
* Notification Title correction

## Bugs fixed:
* [#458](https://github.com/openziti/desktop-edge-win/issues/458) When user start tunnel and then immediately stop it, WDE crashes because of null value in the context
* [#461](https://github.com/openziti/desktop-edge-win/issues/461) ZDEW crashes when controller/router certificate expires

## Dependency Updates
* update t-sdk v0.15.18 and c-sdk 0.26.9

# Release 1.10.5

## What's New
Expand Down
2 changes: 1 addition & 1 deletion service/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ REM See the License for the specific language governing permissions and
REM limitations under the License.
REM
SET REPO_URL=https://github.com/openziti/ziti-tunnel-sdk-c.git
SET ZITI_TUNNEL_REPO_BRANCH=v0.15.17
SET ZITI_TUNNEL_REPO_BRANCH=v0.15.18
REM override the c sdk used in the build - leave blank for the same as specified in the tunneler sdk
SET ZITI_SDK_C_BRANCH=
REM the number of TCP connections the tunneler sdk can have at any one time
Expand Down
2 changes: 1 addition & 1 deletion service/ziti-tunnel/service/ipc.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func SubMain(ops chan string, changes chan<- svc.Status, winEvents <-chan Window

log.Debug("shutting down. start a ZitiDump")
for _, id := range rts.ids {
if id.CId != nil {
if id.CId != nil && id.CId.Loaded {
cziti.ZitiDumpOnShutdown(id.CId)
}
}
Expand Down
6 changes: 3 additions & 3 deletions service/ziti-tunnel/version.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.5
1.10.6

0 comments on commit b8487ee

Please sign in to comment.