-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.goreleaser.yml
More file actions
56 lines (47 loc) · 1.5 KB
/
Copy path.goreleaser.yml
File metadata and controls
56 lines (47 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: 2
builds:
- binary: ccview
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
ldflags:
- -s -w -X main.version={{.Version}}
archives:
- formats:
- tar.gz
format_overrides:
- goos: windows
formats:
- zip
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
checksum:
name_template: "checksums.txt"
changelog:
disable: true
release:
header: |
## What's New
### OpenCode Support
- Added OpenCode as a second data provider, reading sessions from `~/.local/share/opencode/opencode.db` via pure-Go SQLite (no CGO)
- New `Provider` interface decouples data loading from UI — Claude Code and OpenCode implement it independently
- Tabbed UI (`1`/`2` to switch) when both providers are available; tabs auto-hide with only one
### Search
- **Content search** — press `/` in the viewer for live debounced search with highlighted matches and `n`/`N` navigation
- **Session search overlay** — press `/` from the project list (global) or sidebar (project-scoped) to search across all sessions
### Mouse Support
- Pane-scoped mouse selection — click to focus, drag-select text in the content pane, auto-copies to clipboard
- Scroll wheel works per-pane
### Bug Fixes
- Fixed Windows installer path handling
github:
owner: shivamstaq
name: ccview
draft: false
prerelease: auto
name_template: "v{{.Version}}"