diff --git a/README.md b/README.md index bf3b167..2788491 100644 --- a/README.md +++ b/README.md @@ -36,13 +36,13 @@ go build -o vcom ./cmd/vcom Run directly from the flake: ```bash -nix run github:vrubelroman/vcom?ref=v0.2.2 +nix run github:vrubelroman/vcom?ref=v0.2.3 ``` Install into user profile: ```bash -nix profile add github:vrubelroman/vcom?ref=v0.2.2 +nix profile add github:vrubelroman/vcom?ref=v0.2.3 ``` The Nix package wraps `vcom` with `ueberzugpp` in `PATH`, so image preview works in non-`kitty` terminals out of the box. @@ -52,8 +52,8 @@ The Nix package wraps `vcom` with `ueberzugpp` in `PATH`, so image preview works Download and install the latest release: ```bash -curl -sL https://github.com/vrubelroman/vcom/releases/download/v0.2.2/vcom_0.2.2_amd64.deb -o /tmp/vcom_0.2.2_amd64.deb -sudo apt install /tmp/vcom_0.2.2_amd64.deb +curl -sL https://github.com/vrubelroman/vcom/releases/download/v0.2.3/vcom_0.2.3_amd64.deb -o /tmp/vcom_0.2.3_amd64.deb +sudo apt install /tmp/vcom_0.2.3_amd64.deb ``` The Debian package declares `ueberzug` (or `ueberzugpp` where available) as a dependency for image preview outside `kitty`. @@ -183,7 +183,7 @@ Built-in themes (press `t` to open theme selector or set `ui.theme` in config): ## Releases -Pushing a tag like `v0.2.2` triggers GitHub Actions release workflow (`.github/workflows/release.yml`) which: +Pushing a tag like `v0.2.3` triggers GitHub Actions release workflow (`.github/workflows/release.yml`) which: - runs tests - vendors Go modules @@ -193,9 +193,9 @@ Pushing a tag like `v0.2.2` triggers GitHub Actions release workflow (`.github/w Release artifacts: -- `vcom-v0.2.2-x86_64-unknown-linux-gnu.tar.gz` -- `vcom_0.2.2_amd64.deb` -- `vcom-v0.2.2-checksums.txt` +- `vcom-v0.2.3-x86_64-unknown-linux-gnu.tar.gz` +- `vcom_0.2.3_amd64.deb` +- `vcom-v0.2.3-checksums.txt` ## Notes diff --git a/internal/ui/model.go b/internal/ui/model.go index 596b8e8..a6f32ae 100644 --- a/internal/ui/model.go +++ b/internal/ui/model.go @@ -27,7 +27,7 @@ import ( "vcom/internal/theme" ) -const version = "v0.2.2" +const version = "v0.2.3" type modalKind int