Skip to content

Commit be1a83b

Browse files
chore: added release notes for 2.24.x
1 parent b3f9ce2 commit be1a83b

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

RELEASE_NOTES_2.24.x.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Release notes for Pymakr v2.24.x
2+
3+
This version of Pymakr brings a couple of features and a range of smaller fixes.
4+
5+
# <br>
6+
7+
## Feature Highlights
8+
9+
[New Home View](#new-home-view)
10+
11+
[Device Summary Page](#device-summary-page)
12+
13+
# <br>
14+
15+
## New Home View
16+
17+
- A new view has been added to the Pymakr tab. This view provides quick access to settings and documentation.
18+
- The projects tree view has been moved to the Explorer tab by default. It can still be moved into other tabs, eg. Pymakr, but we feel this setting is a better default for most.
19+
20+
If there's anything you'd like to see in the new home view, please let us know.
21+
22+
# <br>
23+
24+
## Device Summary Page
25+
26+
The Device Summary Page provides a quick overview of connected devices, including a history of device actions.
27+
28+
To speed up troubleshooting, the page includes a `Create an issue on Github` which will create an issue template based on your device and system. We hope you never have to use it, but look forward to helping you, if you do.
29+
30+
# <br>
31+
32+
For a complete summary of changes, please see
33+
https://github.com/pycom/pymakr-vsc/releases

src/providers/HomeProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class HomeProvider {
2020
*/
2121
resolveWebviewView(webviewView, context, _token) {
2222
const toolkitUri = this.toolkitUri(webviewView);
23-
const releaseNotes = ["RELEASE_NOTES_2.22.0.md"].map((path) => ({
23+
const releaseNotes = ["RELEASE_NOTES_2.22.x.md", "RELEASE_NOTES_2.24.x.md"].map((path) => ({
2424
name: path,
2525
url: "command:pymakr.showMarkdownDocument?" + encodeURIComponent(JSON.stringify([path])),
2626
}));

src/utils/Notifier.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,8 @@ class Notifier {
258258
});
259259
},
260260
showReleaseNotes: async () => {
261-
const uri = vscode.Uri.file(`${__dirname}/../../RELEASE_NOTES_2.22.0.md`);
261+
const uri = vscode.Uri.file(`${__dirname}/../../RELEASE_NOTES_2.24.x.md`);
262+
262263
if (this.state.lastReadReleaseNotes.get() !== uri.fsPath) {
263264
this.state.lastReadReleaseNotes.set(uri.fsPath);
264265
vscode.commands.executeCommand("markdown.showPreview", uri);

0 commit comments

Comments
 (0)