From 10aee2adc7b4797378f50f0a383fc20a9c6a5ffb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 13:47:13 +0000 Subject: [PATCH] Version Packages --- .changeset/numeric-field-clear.md | 11 ------- .changeset/step-status-dots.md | 22 -------------- packages/java-memory-playground/CHANGELOG.md | 31 ++++++++++++++++++++ packages/java-memory-playground/package.json | 2 +- packages/web-component/CHANGELOG.md | 7 +++++ packages/web-component/package.json | 2 +- platforms/vscode/CHANGELOG.md | 7 +++++ platforms/vscode/package.json | 2 +- platforms/web/CHANGELOG.md | 7 +++++ platforms/web/package.json | 2 +- 10 files changed, 56 insertions(+), 37 deletions(-) delete mode 100644 .changeset/numeric-field-clear.md delete mode 100644 .changeset/step-status-dots.md diff --git a/.changeset/numeric-field-clear.md b/.changeset/numeric-field-clear.md deleted file mode 100644 index 33844ee..0000000 --- a/.changeset/numeric-field-clear.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@java-memory-playground/java-memory-playground": patch ---- - -Let a numeric attribute or local variable be cleared while typing. - -The field rendered `value || 0`, so deleting the last digit put a `0` straight back. To enter `5` -you had to type it in front of that zero and then delete the zero — `50`, then backspace. - -An emptied field now stays empty for as long as it has focus, and falls back to `0` on blur, so a -field left blank still holds a number. diff --git a/.changeset/step-status-dots.md b/.changeset/step-status-dots.md deleted file mode 100644 index 71648b2..0000000 --- a/.changeset/step-status-dots.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -"@java-memory-playground/java-memory-playground": patch ---- - -Say how each step went, one dot per step. - -There was one verdict for the whole diagram, and nothing cleared it: solving a step turned the bar -green, and walking on to the next step left the green standing under a step nobody had answered -yet. The same went for red. - -A check now belongs to the step it judged, and the bar carries a dot for every step: black for a -step of the trace, with nothing to do; yellow for an exercise not checked yet; green for one that -was got right; red for one that was not. A tick and a cross inside the green and the red dots say -it again for anyone who cannot tell the two hues apart, and for the printer. - -The dots are the walk through the steps as well: the arrows sit either side of the strip, clicking -a dot goes to that step, and the "3 / 7" count they replaced is gone. - -A verdict is kept with a fingerprint of the diagram it judged, so changing the step puts it back to -not-checked rather than leaving a stale answer standing; moving a node, which changes nothing a -check looks at, leaves it alone. Being shown the solution is no longer scored as having got it -right. diff --git a/packages/java-memory-playground/CHANGELOG.md b/packages/java-memory-playground/CHANGELOG.md index 77a3825..3834fc4 100644 --- a/packages/java-memory-playground/CHANGELOG.md +++ b/packages/java-memory-playground/CHANGELOG.md @@ -1,5 +1,36 @@ # @openpatch/java-memory-playground +## 0.2.4 + +### Patch Changes + +- [`76690bb`](https://github.com/openpatch/java-memory-playground/commit/76690bbbd5a57e8aabd483202bd5b5f6b62aeee0) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Let a numeric attribute or local variable be cleared while typing. + + The field rendered `value || 0`, so deleting the last digit put a `0` straight back. To enter `5` + you had to type it in front of that zero and then delete the zero — `50`, then backspace. + + An emptied field now stays empty for as long as it has focus, and falls back to `0` on blur, so a + field left blank still holds a number. + +- [`4d10ddd`](https://github.com/openpatch/java-memory-playground/commit/4d10ddd1e9e21f0b9a3a8ab76b57567d0d961413) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Say how each step went, one dot per step. + + There was one verdict for the whole diagram, and nothing cleared it: solving a step turned the bar + green, and walking on to the next step left the green standing under a step nobody had answered + yet. The same went for red. + + A check now belongs to the step it judged, and the bar carries a dot for every step: black for a + step of the trace, with nothing to do; yellow for an exercise not checked yet; green for one that + was got right; red for one that was not. A tick and a cross inside the green and the red dots say + it again for anyone who cannot tell the two hues apart, and for the printer. + + The dots are the walk through the steps as well: the arrows sit either side of the strip, clicking + a dot goes to that step, and the "3 / 7" count they replaced is gone. + + A verdict is kept with a fingerprint of the diagram it judged, so changing the step puts it back to + not-checked rather than leaving a stale answer standing; moving a node, which changes nothing a + check looks at, leaves it alone. Being shown the solution is no longer scored as having got it + right. + ## 0.2.3 ### Patch Changes diff --git a/packages/java-memory-playground/package.json b/packages/java-memory-playground/package.json index f345c3a..a2dbf71 100644 --- a/packages/java-memory-playground/package.json +++ b/packages/java-memory-playground/package.json @@ -1,6 +1,6 @@ { "name": "@java-memory-playground/java-memory-playground", - "version": "0.2.3", + "version": "0.2.4", "author": "Mike Barkmin", "description": "React components for visualizing the Java stack and heap.", "homepage": "https://github.com/openpatch/java-memory-playground#readme", diff --git a/packages/web-component/CHANGELOG.md b/packages/web-component/CHANGELOG.md index cfffa21..50089ac 100644 --- a/packages/web-component/CHANGELOG.md +++ b/packages/web-component/CHANGELOG.md @@ -1,5 +1,12 @@ # @openpatch/java-memory-playground-web-component +## 0.3.3 + +### Patch Changes + +- Updated dependencies [[`76690bb`](https://github.com/openpatch/java-memory-playground/commit/76690bbbd5a57e8aabd483202bd5b5f6b62aeee0), [`4d10ddd`](https://github.com/openpatch/java-memory-playground/commit/4d10ddd1e9e21f0b9a3a8ab76b57567d0d961413)]: + - @java-memory-playground/java-memory-playground@0.2.4 + ## 0.3.2 ### Patch Changes diff --git a/packages/web-component/package.json b/packages/web-component/package.json index be0535c..37c5d26 100644 --- a/packages/web-component/package.json +++ b/packages/web-component/package.json @@ -1,6 +1,6 @@ { "name": "@java-memory-playground/web-component", - "version": "0.3.2", + "version": "0.3.3", "author": "Mike Barkmin", "description": "Java Memory Playground as a framework agnostic web component.", "homepage": "https://github.com/openpatch/java-memory-playground#readme", diff --git a/platforms/vscode/CHANGELOG.md b/platforms/vscode/CHANGELOG.md index 1448e16..16c8e1b 100644 --- a/platforms/vscode/CHANGELOG.md +++ b/platforms/vscode/CHANGELOG.md @@ -1,5 +1,12 @@ # Java Memory Playground Studio +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`76690bb`](https://github.com/openpatch/java-memory-playground/commit/76690bbbd5a57e8aabd483202bd5b5f6b62aeee0), [`4d10ddd`](https://github.com/openpatch/java-memory-playground/commit/4d10ddd1e9e21f0b9a3a8ab76b57567d0d961413)]: + - @java-memory-playground/java-memory-playground@0.2.4 + ## 0.1.4 ### Patch Changes diff --git a/platforms/vscode/package.json b/platforms/vscode/package.json index 516fb8d..56b7bf1 100644 --- a/platforms/vscode/package.json +++ b/platforms/vscode/package.json @@ -2,7 +2,7 @@ "name": "java-memory-playground-studio", "displayName": "Java Memory Playground Studio", "description": "Visual editor for .jmp files — diagrams of the Java stack and heap", - "version": "0.1.4", + "version": "0.1.5", "publisher": "openpatch", "author": "Mike Barkmin", "license": "MIT", diff --git a/platforms/web/CHANGELOG.md b/platforms/web/CHANGELOG.md index 381a90a..c8419e9 100644 --- a/platforms/web/CHANGELOG.md +++ b/platforms/web/CHANGELOG.md @@ -1,5 +1,12 @@ # web +## 0.2.4 + +### Patch Changes + +- Updated dependencies [[`76690bb`](https://github.com/openpatch/java-memory-playground/commit/76690bbbd5a57e8aabd483202bd5b5f6b62aeee0), [`4d10ddd`](https://github.com/openpatch/java-memory-playground/commit/4d10ddd1e9e21f0b9a3a8ab76b57567d0d961413)]: + - @java-memory-playground/java-memory-playground@0.2.4 + ## 0.2.3 ### Patch Changes diff --git a/platforms/web/package.json b/platforms/web/package.json index a4f0732..023d50c 100644 --- a/platforms/web/package.json +++ b/platforms/web/package.json @@ -1,7 +1,7 @@ { "name": "web", "private": true, - "version": "0.2.3", + "version": "0.2.4", "type": "module", "scripts": { "dev": "vite",