Releases: PatelUtkarsh/opencode-ralph-loop-v2
Release list
v1.0.5
Fix: the TUI Indicator rendered once and never updated when the plugin was installed from Git. src/tui.tsx no longer imports from solid-js; the Indicator is a function child tracked by the TUI host's own Solid instance. See the README Development section for the packaging rules.
Install:
opencode plugin add "github:PatelUtkarsh/opencode-ralph-loop-v2#v1.0.5"
v1.0.4
Fix: v1.0.3 failed to load the TUI plugin from a Git install with Cannot find package '@opentui/solid'. @opentui/core and @opentui/solid are dependencies again; solid-js stays a devDependency so the plugin shares the TUI host's reactive graph and the Indicator updates.
Install:
opencode plugin add "github:PatelUtkarsh/opencode-ralph-loop-v2#v1.0.4"
v1.0.3
Fix: the TUI Indicator rendered once and never updated when the plugin was installed from Git. v1.0.1 had made solid-js a regular dependency, giving the plugin its own Solid copy separate from the TUI host's; the two do not share a reactive graph. OpenTUI and solid-js are devDependencies again and resolve from the host at runtime.
Install:
opencode plugin add "github:PatelUtkarsh/opencode-ralph-loop-v2#v1.0.3"
v1.0.2
Fix: the TUI plugin still failed from a Git install with Cannot find package 'react'. Bun reads tsconfig.json from the process cwd, not the plugin directory, so the jsxImportSource there was never applied. src/tui.tsx now carries a per-file /** @jsxImportSource @opentui/solid */ pragma.
Install:
opencode plugin add "github:PatelUtkarsh/opencode-ralph-loop-v2#v1.0.2"
v1.0.1
Fix: the TUI plugin failed to load when installed from Git with Cannot find package 'react'. @opentui/core, @opentui/solid, and solid-js are now regular dependencies, and tsconfig.json ships so Bun honours jsxImportSource.
Install:
opencode plugin add "github:PatelUtkarsh/opencode-ralph-loop-v2#v1.0.1"