scenri 0.6.10 → 0.6.12

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.12](https://github.com/tonygorb/Scenri/compare/v0.6.11...v0.6.12) (2026-08-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **composer:** a reference chip shows the image it holds ([c73b29c](https://github.com/tonygorb/Scenri/commit/c73b29cd2d43bf057138294936a2db4ec9fc1026))
9
+ * **composer:** a reference chip shows the image it holds ([364b4d4](https://github.com/tonygorb/Scenri/commit/364b4d4effe6288190cf41df80379ea7a2eb4dfa))
10
+
11
+ ## [0.6.11](https://github.com/tonygorb/Scenri/compare/v0.6.10...v0.6.11) (2026-08-29)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **engine-codex:** say what a usage limit means instead of quoting the banner ([f769d81](https://github.com/tonygorb/Scenri/commit/f769d812675e8671c46959c6b2007808cb3fa97e))
17
+ * **engine-codex:** say what a usage limit means instead of quoting the banner ([edd2155](https://github.com/tonygorb/Scenri/commit/edd2155fe1bf6592376feef9ab9871e1c51ca3b1))
18
+
3
19
  ## [0.6.10](https://github.com/tonygorb/Scenri/compare/v0.6.9...v0.6.10) (2026-08-29)
4
20
 
5
21
 
package/dist/serve.js CHANGED
@@ -2140,13 +2140,26 @@ function createRunner(opts = {}) {
2140
2140
  child.on("exit", (code) => {
2141
2141
  if (code === 0) {
2142
2142
  finish("ok", resolve);
2143
- } else {
2144
- const snippet2 = stderr.trim().slice(0, 200);
2143
+ return;
2144
+ }
2145
+ const limit = /You've hit your usage limit\.(?:[^\n]*?\btry again at ([^.\n]+)\.)?/.exec(stderr);
2146
+ if (limit) {
2147
+ const when = limit[1]?.trim();
2145
2148
  finish(
2146
2149
  `exit-${code ?? "unknown"}`,
2147
- () => reject(new Error(`codex exited with code ${code ?? "unknown"}${snippet2 ? `: ${snippet2}` : ""}`))
2150
+ () => reject(
2151
+ new Error(
2152
+ `Your Codex plan's usage limit is used up${when ? ` until ${when}` : ""}. Generation resumes on its own then, or add credits from your Codex account.`
2153
+ )
2154
+ )
2148
2155
  );
2156
+ return;
2149
2157
  }
2158
+ const snippet2 = stderr.trim().slice(0, 200);
2159
+ finish(
2160
+ `exit-${code ?? "unknown"}`,
2161
+ () => reject(new Error(`codex exited with code ${code ?? "unknown"}${snippet2 ? `: ${snippet2}` : ""}`))
2162
+ );
2150
2163
  });
2151
2164
  });
2152
2165
  }
@@ -8212,6 +8225,26 @@ function registerImageRoutes(app, deps) {
8212
8225
 
8213
8226
  // src/release/notes.data.ts
8214
8227
  var RELEASES = [
8228
+ {
8229
+ version: "0.6.12",
8230
+ date: "2026-08-29",
8231
+ sections: [
8232
+ {
8233
+ heading: "Create",
8234
+ body: "Hovering a reference image in the brief shows what it is, and opening one shows it at a size you can read. The same holds for a brand mark, and for the references a refinement is carrying."
8235
+ }
8236
+ ]
8237
+ },
8238
+ {
8239
+ version: "0.6.11",
8240
+ date: "2026-08-29",
8241
+ sections: [
8242
+ {
8243
+ heading: "Create",
8244
+ body: "Hitting your Codex plan's usage limit now says so in plain words, with the time it comes back, instead of a technical session listing."
8245
+ }
8246
+ ]
8247
+ },
8215
8248
  {
8216
8249
  version: "0.6.10",
8217
8250
  date: "2026-08-29",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scenri",
3
- "version": "0.6.10",
3
+ "version": "0.6.12",
4
4
  "author": "Tony Gorb <hello@scenri.co>",
5
5
  "license": "AGPL-3.0-only",
6
6
  "type": "module",