-
Notifications
You must be signed in to change notification settings - Fork 4
/
gsshvnc.spec
62 lines (48 loc) · 1.57 KB
/
gsshvnc.spec
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
57
58
59
60
61
62
Name: gsshvnc
Version: 0.96
Release: 1%{?dist}
Summary: Simple VNC client with built-in SSH tunneling
Group: Applications/System
License: GPLv2+
URL: https://github.com/zrax/gsshvnc
Source0: %{name}-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: meson >= 0.37
BuildRequires: pkgconfig
BuildRequires: pkgconfig(gvnc-1.0)
BuildRequires: pkgconfig(gtk-vnc-2.0)
BuildRequires: pkgconfig(gtkmm-3.0)
BuildRequires: pkgconfig(libsecret-1)
BuildRequires: pkgconfig(libssh)
#Requires:
%description
Gsshvnc (pronounced "Gosh VNC") is a simple GTK3-based VNC client that can
(optionally) automatically establish and use an SSH tunnel to connect to a
VNC server.
%prep
%setup -q
%build
%meson
%meson_build
%install
%meson_install
%files
%license COPYING
%{_bindir}/gsshvnc
%{_datadir}/applications/*.desktop
%{_datadir}/pixmaps/*.png
%changelog
* Wed Aug 28 2024 Michael Hansen <[email protected]> - 0.96
- Add support for SSH keyboard-interactive authentication.
- Port to GtkApplication.
- Remember previous VNC window size.
- Add .desktop file for better DE integration.
* Mon Aug 09 2021 Michael Hansen <[email protected]> - 0.95
- Add support for keeping aspect ratio when scaling the display.
- Add a resize mode which will resize the remote display when possible.
- Fix for gsshvnc disappearing from the task bar while still running.
- Don't give up after 3 failed connection attempts.
* Tue Dec 04 2018 Michael Hansen <[email protected]> - 0.94
- Add support for securely saving passwords.
- Show SSH Tunnel host in the main VNC window title.
- Fix the formatting on some dialog boxes.