Skip to content

Commit

Permalink
release notes clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
caesay committed Jun 3, 2024
1 parent e9e974a commit a604379
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/integrating/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ private static async Task UpdateMyApp()

var newVersion = await mgr.CheckForUpdatesAsync();
if (newVersion != null) {
new ReleaseNotesHtmlWindow(newVersion.TargetFullRelease.ReleaseNotesHtml).Show();
var releaseNotesHtml = newVersion.TargetFullRelease.ReleaseNotesHtml;
// show a window here with the release notes
// possibly ask the user if they wish to update or not?
// eg. new ReleaseNotesHtmlWindow().Show();
}
}
```

0 comments on commit a604379

Please sign in to comment.