chore: bump version to v0.2.4
This commit is contained in:
parent
cb40a1d008
commit
2cf198cea8
3 changed files with 10 additions and 9 deletions
16
README.md
16
README.md
|
|
@ -36,13 +36,13 @@ go build -o vcom ./cmd/vcom
|
||||||
Run directly from the flake:
|
Run directly from the flake:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
nix run github:vrubelroman/vcom?ref=v0.2.3
|
nix run github:vrubelroman/vcom?ref=v0.2.4
|
||||||
```
|
```
|
||||||
|
|
||||||
Install into user profile:
|
Install into user profile:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
nix profile add github:vrubelroman/vcom?ref=v0.2.3
|
nix profile add github:vrubelroman/vcom?ref=v0.2.4
|
||||||
```
|
```
|
||||||
|
|
||||||
The Nix package wraps `vcom` with `ueberzugpp` in `PATH`, so image preview works in non-`kitty` terminals out of the box.
|
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:
|
Download and install the latest release:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
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
|
curl -sL https://github.com/vrubelroman/vcom/releases/download/v0.2.4/vcom_0.2.4_amd64.deb -o /tmp/vcom_0.2.4_amd64.deb
|
||||||
sudo apt install /tmp/vcom_0.2.3_amd64.deb
|
sudo apt install /tmp/vcom_0.2.4_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
The Debian package declares `ueberzug` (or `ueberzugpp` where available) as a dependency for image preview outside `kitty`.
|
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
|
## Releases
|
||||||
|
|
||||||
Pushing a tag like `v0.2.3` triggers GitHub Actions release workflow (`.github/workflows/release.yml`) which:
|
Pushing a tag like `v0.2.4` triggers GitHub Actions release workflow (`.github/workflows/release.yml`) which:
|
||||||
|
|
||||||
- runs tests
|
- runs tests
|
||||||
- vendors Go modules
|
- vendors Go modules
|
||||||
|
|
@ -193,9 +193,9 @@ Pushing a tag like `v0.2.3` triggers GitHub Actions release workflow (`.github/w
|
||||||
|
|
||||||
Release artifacts:
|
Release artifacts:
|
||||||
|
|
||||||
- `vcom-v0.2.3-x86_64-unknown-linux-gnu.tar.gz`
|
- `vcom-v0.2.4-x86_64-unknown-linux-gnu.tar.gz`
|
||||||
- `vcom_0.2.3_amd64.deb`
|
- `vcom_0.2.4_amd64.deb`
|
||||||
- `vcom-v0.2.3-checksums.txt`
|
- `vcom-v0.2.4-checksums.txt`
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,7 @@ var (
|
||||||
archiveExtensions = map[string]struct{}{
|
archiveExtensions = map[string]struct{}{
|
||||||
"zip": {}, "tar": {}, "gz": {}, "tgz": {}, "xz": {}, "bz2": {}, "7z": {}, "rar": {},
|
"zip": {}, "tar": {}, "gz": {}, "tgz": {}, "xz": {}, "bz2": {}, "7z": {}, "rar": {},
|
||||||
"zst": {}, "lz": {}, "lz4": {}, "lzma": {},
|
"zst": {}, "lz": {}, "lz4": {}, "lzma": {},
|
||||||
|
"iso": {}, "img": {}, "dmg": {},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ import (
|
||||||
"vcom/internal/theme"
|
"vcom/internal/theme"
|
||||||
)
|
)
|
||||||
|
|
||||||
const version = "v0.2.3"
|
const version = "v0.2.4"
|
||||||
|
|
||||||
type modalKind int
|
type modalKind int
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue