v2.1.0
Installation
Stable (recommended for end users)
# Pin to a specific version:
npm install -g Khip01/opencode-rich-presence#v2.1.0
# Or auto-resolve the latest stable matching ^v0:
npm install -g Khip01/opencode-rich-presence#semver:^2.0.0
opencode-rpc installDev / bleeding-edge (developers only)
npm install -g Khip01/opencode-rich-presence
opencode-rpc installUpdate
opencode-rpc update # upgrade to latest stable tag
opencode-rpc update --dev # upgrade to latest commit on mainNote: npm install -g <repo>#<ref> clones the repo and installs
from there. The tarball attached to this release is provided as
a fallback for offline / air-gapped installs; the git URL is the
canonical install path.
What's in v2.1.0
Distribution workflow change. Replaces GitHub Releases + tarball
with git-based npm install. Single source of truth = the repo.
Changed
- Install workflow: end users now install via
npm install -g Khip01/opencode-rich-presence#v2.1.0instead of downloading a tarball from a GitHub Release URL. The GitHub Releases workflow is preserved but its job-levelifcondition skips any tag containing-rc/-beta/-alpha; only stable tags create a GitHub Release (which now points users to the git install command and provides the tarball as a fallback for offline installs). - No more
-rc/-beta/-alphapre-release tags. Useopencode-rpc update --devto test a fix before tagging stable.
Updated
opencode-rpc updaterunsnpm install -g Khip01/opencode-rich-presence#<latest-tag>.- Added
opencode-rpc update --devfor developers: fetches the latest commit SHA onmainand runsnpm install -g Khip01/opencode-rich-presence#<sha>. - Removed the
--prerelease/--preflag fromopencode-rpc update.
See CHANGELOG.md for full details.