File tree Expand file tree Collapse file tree 4 files changed +18
-5
lines changed
containers/cntdialogs/vterm Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 77)
88
99const (
10- appVersion = "1.10.0-dev "
10+ appVersion = "1.10.0"
1111)
1212
1313// versionCmd represents the version command.
Original file line number Diff line number Diff line change 1616
1717Name: podman-tui
1818Version: 1.10.0
19- Release: dev. 1%{?dist}
19+ Release: 1%{?dist}
2020Summary: Podman Terminal User Interface
2121License: ASL 2.0
2222URL: %{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
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments