scenri 0.4.1 → 0.4.2
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,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.2](https://github.com/tonygorb/Scenri/compare/v0.4.1...v0.4.2) (2026-08-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* one Updates row, one Update verb, and a gift instead of a dot ([1ecf017](https://github.com/tonygorb/Scenri/commit/1ecf01711202419a06fb9f2e5e1c998c53c7d7eb))
|
|
9
|
+
* the boot look dies with the server ([8f5c575](https://github.com/tonygorb/Scenri/commit/8f5c575c0363a9dbf59efbeda2f5c6ab19a35ceb))
|
|
10
|
+
* the boot look dies with the server ([3c7c018](https://github.com/tonygorb/Scenri/commit/3c7c018ff177a426bc327c32704ca15ebec2c107))
|
|
11
|
+
* the check button steps aside once an update is found ([2fb0400](https://github.com/tonygorb/Scenri/commit/2fb040098b31a32df617d2453f8c6756e5fb32fe))
|
|
12
|
+
* the check button steps aside once an update is found ([ba37979](https://github.com/tonygorb/Scenri/commit/ba37979a2023315c94bb45e1d422c1762c574267))
|
|
13
|
+
|
|
3
14
|
## [0.4.1](https://github.com/tonygorb/Scenri/compare/v0.4.0...v0.4.1) (2026-08-23)
|
|
4
15
|
|
|
5
16
|
|
package/dist/serve.js
CHANGED
|
@@ -6781,6 +6781,16 @@ function registerImageRoutes(app, deps) {
|
|
|
6781
6781
|
|
|
6782
6782
|
// src/release/notes.data.ts
|
|
6783
6783
|
var RELEASES = [
|
|
6784
|
+
{
|
|
6785
|
+
version: "0.4.2",
|
|
6786
|
+
date: "2026-08-23",
|
|
6787
|
+
sections: [
|
|
6788
|
+
{
|
|
6789
|
+
heading: "Updates",
|
|
6790
|
+
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."
|
|
6791
|
+
}
|
|
6792
|
+
]
|
|
6793
|
+
},
|
|
6784
6794
|
{
|
|
6785
6795
|
version: "0.4.1",
|
|
6786
6796
|
date: "2026-08-23",
|
|
@@ -7042,7 +7052,12 @@ function registerUpdateRoutes(app, deps) {
|
|
|
7042
7052
|
startStaging(r.latest);
|
|
7043
7053
|
};
|
|
7044
7054
|
updates.onResult(maybeAutoStage);
|
|
7045
|
-
setTimeout(() =>
|
|
7055
|
+
const bootLook = setTimeout(() => {
|
|
7056
|
+
updates.check().then(maybeAutoStage).catch(() => {
|
|
7057
|
+
});
|
|
7058
|
+
}, deps.bootLookMs ?? 15e3);
|
|
7059
|
+
bootLook.unref();
|
|
7060
|
+
app.addHook("onClose", async () => clearTimeout(bootLook));
|
|
7046
7061
|
const updateStatus = async (force = false) => {
|
|
7047
7062
|
const r = await updates.check(force);
|
|
7048
7063
|
const kind = r.latest ? classify(meta.version, r.latest) : null;
|