We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e974a commit a604379Copy full SHA for a604379
docs/integrating/release-notes.mdx
@@ -16,7 +16,10 @@ private static async Task UpdateMyApp()
16
17
var newVersion = await mgr.CheckForUpdatesAsync();
18
if (newVersion != null) {
19
- new ReleaseNotesHtmlWindow(newVersion.TargetFullRelease.ReleaseNotesHtml).Show();
+ var releaseNotesHtml = newVersion.TargetFullRelease.ReleaseNotesHtml;
20
+ // show a window here with the release notes
21
+ // possibly ask the user if they wish to update or not?
22
+ // eg. new ReleaseNotesHtmlWindow().Show();
23
}
24
25
```
0 commit comments