@dickpy/dsh-imagegen 1.0.19 → 1.0.20

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/lib/index.js CHANGED
@@ -15,7 +15,7 @@ import { spawn } from "node:child_process";
15
15
  /** Settings namespace this plugin owns (host settings seam + bridge). */
16
16
  const IMAGEGEN_SETTINGS_NAMESPACE = "dsh-imagegen";
17
17
  /** Published package version shared by the host updater and the client UI. */
18
- const PLUGIN_VERSION = "1.0.19";
18
+ const PLUGIN_VERSION = "1.0.20";
19
19
  /** Same-origin route family (loopback-only, mirroring the dsh-ssh fence). */
20
20
  const SETTINGS_API = {
21
21
  describe: "/api/dsh-imagegen/settings/describe",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dickpy/dsh-imagegen",
3
3
  "description": "AI 鐢熷浘 (image generation) plugin for the dsh web GUI: text-to-image and image-to-image through a configurable OpenAI-compatible endpoint (gpt-image-2 / grok-imagine-image / dall-e-3, with native xAI Grok Imagine request shaping), with a settings card for api_url / api_key and a sidebar entry opening a split-pane generation studio.",
4
- "version": "1.0.19",
4
+ "version": "1.0.20",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
7
7
  "exports": {
package/src/protocol.ts CHANGED
@@ -8,7 +8,7 @@
8
8
  export const IMAGEGEN_SETTINGS_NAMESPACE = 'dsh-imagegen'
9
9
 
10
10
  /** Published package version shared by the host updater and the client UI. */
11
- export const PLUGIN_VERSION = '1.0.19'
11
+ export const PLUGIN_VERSION = '1.0.20'
12
12
 
13
13
  /** Same-origin route family (loopback-only, mirroring the dsh-ssh fence). */
14
14
  export const SETTINGS_API = {