Skip to content

Commit a604379

Browse files
committed
release notes clarification
1 parent e9e974a commit a604379

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/integrating/release-notes.mdx

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ private static async Task UpdateMyApp()
1616

1717
var newVersion = await mgr.CheckForUpdatesAsync();
1818
if (newVersion != null) {
19-
new ReleaseNotesHtmlWindow(newVersion.TargetFullRelease.ReleaseNotesHtml).Show();
19+
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();
2023
}
2124
}
2225
```

0 commit comments

Comments
 (0)