scenri 0.4.1 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.3](https://github.com/tonygorb/Scenri/compare/v0.4.2...v0.4.3) (2026-08-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* controls respond to a press without moving under the cursor ([b5c993b](https://github.com/tonygorb/Scenri/commit/b5c993bf75cbc8907d63f48d5be6c75cb8e300ba))
|
|
9
|
+
* controls respond to a press without moving under the cursor ([62c868a](https://github.com/tonygorb/Scenri/commit/62c868a6ac539485d3cd8f8f70e245df03509e45))
|
|
10
|
+
|
|
11
|
+
## [0.4.2](https://github.com/tonygorb/Scenri/compare/v0.4.1...v0.4.2) (2026-08-23)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* one Updates row, one Update verb, and a gift instead of a dot ([1ecf017](https://github.com/tonygorb/Scenri/commit/1ecf01711202419a06fb9f2e5e1c998c53c7d7eb))
|
|
17
|
+
* the boot look dies with the server ([8f5c575](https://github.com/tonygorb/Scenri/commit/8f5c575c0363a9dbf59efbeda2f5c6ab19a35ceb))
|
|
18
|
+
* the boot look dies with the server ([3c7c018](https://github.com/tonygorb/Scenri/commit/3c7c018ff177a426bc327c32704ca15ebec2c107))
|
|
19
|
+
* the check button steps aside once an update is found ([2fb0400](https://github.com/tonygorb/Scenri/commit/2fb040098b31a32df617d2453f8c6756e5fb32fe))
|
|
20
|
+
* the check button steps aside once an update is found ([ba37979](https://github.com/tonygorb/Scenri/commit/ba37979a2023315c94bb45e1d422c1762c574267))
|
|
21
|
+
|
|
3
22
|
## [0.4.1](https://github.com/tonygorb/Scenri/compare/v0.4.0...v0.4.1) (2026-08-23)
|
|
4
23
|
|
|
5
24
|
|
package/dist/serve.js
CHANGED
|
@@ -6781,6 +6781,27 @@ function registerImageRoutes(app, deps) {
|
|
|
6781
6781
|
|
|
6782
6782
|
// src/release/notes.data.ts
|
|
6783
6783
|
var RELEASES = [
|
|
6784
|
+
{
|
|
6785
|
+
version: "0.4.3",
|
|
6786
|
+
date: "2026-08-23",
|
|
6787
|
+
title: "Controls hold still when you press them.",
|
|
6788
|
+
sections: [
|
|
6789
|
+
{
|
|
6790
|
+
heading: "Fixes",
|
|
6791
|
+
body: "Pressing a button, chip or icon button no longer nudges it down. Controls answer with a change of fill or opacity instead, so nothing shifts under the cursor, and selected rows in Settings no longer re-space their labels when you pick them."
|
|
6792
|
+
}
|
|
6793
|
+
]
|
|
6794
|
+
},
|
|
6795
|
+
{
|
|
6796
|
+
version: "0.4.2",
|
|
6797
|
+
date: "2026-08-23",
|
|
6798
|
+
sections: [
|
|
6799
|
+
{
|
|
6800
|
+
heading: "Updates",
|
|
6801
|
+
body: "Settings now tells the update story in one row: what you are on, what arrived, and a single Update button for whichever step remains. The floating notice carries a small gift where the dot was."
|
|
6802
|
+
}
|
|
6803
|
+
]
|
|
6804
|
+
},
|
|
6784
6805
|
{
|
|
6785
6806
|
version: "0.4.1",
|
|
6786
6807
|
date: "2026-08-23",
|
|
@@ -7042,7 +7063,12 @@ function registerUpdateRoutes(app, deps) {
|
|
|
7042
7063
|
startStaging(r.latest);
|
|
7043
7064
|
};
|
|
7044
7065
|
updates.onResult(maybeAutoStage);
|
|
7045
|
-
setTimeout(() =>
|
|
7066
|
+
const bootLook = setTimeout(() => {
|
|
7067
|
+
updates.check().then(maybeAutoStage).catch(() => {
|
|
7068
|
+
});
|
|
7069
|
+
}, deps.bootLookMs ?? 15e3);
|
|
7070
|
+
bootLook.unref();
|
|
7071
|
+
app.addHook("onClose", async () => clearTimeout(bootLook));
|
|
7046
7072
|
const updateStatus = async (force = false) => {
|
|
7047
7073
|
const r = await updates.check(force);
|
|
7048
7074
|
const kind = r.latest ? classify(meta.version, r.latest) : null;
|