Skip to content

Commit d92c0af

Browse files
committed
Bump to v1.10.0
Signed-off-by: Navid Yaghoobi <navidys@fedoraproject.org>
1 parent c5c2150 commit d92c0af

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
const (
10-
appVersion = "1.10.0-dev"
10+
appVersion = "1.10.0"
1111
)
1212

1313
// versionCmd represents the version command.

podman-tui.spec.rpkg

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
Name: podman-tui
1818
Version: 1.10.0
19-
Release: dev.1%{?dist}
19+
Release: 1%{?dist}
2020
Summary: Podman Terminal User Interface
2121
License: ASL 2.0
2222
URL: %{git0}
@@ -60,7 +60,20 @@ install -p ./bin/%{name} %{buildroot}%{_bindir}
6060
%{_bindir}/%{name}
6161

6262
%changelog
63-
* Sat Oct 04 2025 Navid Yaghoobi <navidys@fedoraproject.org> 1.10.0-dev-1
63+
* Mon Dec 22 2025 Navid Yaghoobi <navidys@fedoraproject.org> 1.10.0-1
64+
- Bugfix for exec terminal del and delete key input
65+
- Bugfix for exec terminal enter key input
66+
- Bats skip tests feature
67+
- Update README.md to include docs on running the socket on non systemd distros
68+
- Update install.md to include Nix installation
69+
- Bump podman to v5.7.1
70+
- Bump golang.org/x/crypto from 0.43.0 to 0.46.0
71+
- Bump golang.org/x/crypto from 0.42.0 to 0.43.0
72+
- Bump github.com/spf13/cobra from 1.10.1 to 1.10.2
73+
- Bump github.com/gdamore/tcell/v2 from 2.12.1 to 2.13.4
74+
- Bump github.com/gdamore/tcell/v2 from 2.10.0 to 2.12.1
75+
- Bump github.com/gdamore/tcell/v2 from 2.9.0 to 2.10.0
76+
- Bump actions/checkout from 5 to 6
6477

6578
* Sat Oct 04 2025 Navid Yaghoobi <navidys@fedoraproject.org> 1.9.0-1
6679
- Bump github.com/navidys/tvxwidgets from 0.4.1 to 0.12.1

ui/containers/cntdialogs/vterm/vterm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ func (d *VtermDialog) SetFastRefreshHandler(handler func()) {
382382
d.fastRefreshHandler = handler
383383
}
384384

385-
func (d *VtermDialog) writeToSession(event *tcell.EventKey) {
385+
func (d *VtermDialog) writeToSession(event *tcell.EventKey) { //nolint:cyclop
386386
switch event.Key() { //nolint:exhaustive
387387
case tcell.KeyUp:
388388
log.Debug().Msgf("write to session KeyUP")

ui/images/imgdialogs/build_progress.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ func (d *ImageBuildProgressDialog) Draw(screen tcell.Screen) {
151151
}
152152

153153
// LogWriter returns output log writer.
154-
func (d *ImageBuildProgressDialog) LogWriter() channel.WriteCloser { //nolint:ireturn
154+
func (d *ImageBuildProgressDialog) LogWriter() channel.WriteCloser { //nolint:ireturn,nolintlint
155155
return channel.NewWriter(d.writerChan)
156156
}
157157

0 commit comments

Comments
 (0)