opencode-visual-cache 1.2.15-beta.2 → 1.2.16-beta.0
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/README.md +4 -0
- package/README_EN.md +4 -0
- package/dist/_version.d.ts +1 -1
- package/dist/_version.js +1 -1
- package/dist/tui.js +1 -1
- package/package.json +1 -1
- package/src/_version.ts +1 -1
- package/src/index.tsx +3 -1
package/README.md
CHANGED
package/README_EN.md
CHANGED
|
@@ -19,6 +19,10 @@ If you find this plugin useful, a ⭐ would mean a lot — thank you!<br>
|
|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
|
22
|
+
Interested in sub-agent monitoring? Check out [opencode-subagent-magazine](https://github.com/Hotakus/opencode-subagent-magazine)!
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
22
26
|
## 1. Screenshots
|
|
23
27
|
|
|
24
28
|
<div align="center">
|
package/dist/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PLUGIN_VERSION = "1.2.
|
|
1
|
+
export declare const PLUGIN_VERSION = "1.2.16-beta.0";
|
package/dist/_version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// auto-generated
|
|
2
|
-
export const PLUGIN_VERSION = "1.2.
|
|
2
|
+
export const PLUGIN_VERSION = "1.2.16-beta.0";
|
package/dist/tui.js
CHANGED
|
@@ -13,7 +13,7 @@ import { createElement as _$createElement } from "@opentui/solid";
|
|
|
13
13
|
import { createMemo, createSignal, createEffect, onMount, onCleanup, Show, untrack } from "solid-js";
|
|
14
14
|
|
|
15
15
|
// src/_version.ts
|
|
16
|
-
var PLUGIN_VERSION = "1.2.15
|
|
16
|
+
var PLUGIN_VERSION = "1.2.15";
|
|
17
17
|
|
|
18
18
|
// src/index.tsx
|
|
19
19
|
function charColumns(c) {
|
package/package.json
CHANGED
package/src/_version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// auto-generated
|
|
2
|
-
export const PLUGIN_VERSION="1.2.
|
|
2
|
+
export const PLUGIN_VERSION="1.2.16-beta.0";
|
package/src/index.tsx
CHANGED
|
@@ -9,8 +9,10 @@ import type {
|
|
|
9
9
|
TuiPluginModule,
|
|
10
10
|
TuiThemeCurrent,
|
|
11
11
|
} from "@opencode-ai/plugin/tui"
|
|
12
|
-
import type { UserMessage, AssistantMessage, Message } from "@opencode-ai/sdk"
|
|
13
12
|
import type {
|
|
13
|
+
UserMessage,
|
|
14
|
+
AssistantMessage,
|
|
15
|
+
Message,
|
|
14
16
|
Part,
|
|
15
17
|
TextPart,
|
|
16
18
|
ToolPart,
|