mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-22 09:22:24 +00:00
New release - 3.19.1
This commit is contained in:
parent
6d90e136b6
commit
5f7b3b0088
10 changed files with 777 additions and 370 deletions
|
@ -1,3 +1,32 @@
|
|||
2006-07-24 Duncan Ferguson <duncan_ferguson@user.sf.net> - v3.19.1-1
|
||||
|
||||
- Below is an abridged version of changes - see CVS for more information
|
||||
* Check for failure to connect to X session
|
||||
* Totally rework character mapping and events to cope with non-QWERTY keyboards
|
||||
* Rework pasting code to cope with non-QWERTY charatcters
|
||||
* Manpage/help doc updates and corrections
|
||||
* Check for missing definitions for cluster tags in .csshrc
|
||||
* Run through perltidy -b -i=2
|
||||
* Apply patch to add in optional port information from D. Dumont
|
||||
* Amend hotkey code to not pick up <ctrl>-<alt> as default clientname shortcut
|
||||
* Alter repeat function to improve efficiency
|
||||
* Rework retiling code
|
||||
* Add "-e <host>" to evaluate terminal and communcation methods
|
||||
* Add in toggle option on hosts menu
|
||||
* Fix check in find_binary to ensure one is actually found
|
||||
* Search $PATH and other standard places for binaries incase $PATH is incomplete
|
||||
* Amend code to allow getting help when no X display available
|
||||
* Allow override of both key and mouse paste key sequences
|
||||
* Added icons and desktop file
|
||||
* Amended clusterssh.spec to cope with icons and desktop file
|
||||
* Improve cluster file import efficiency as was taking faaar too long previously
|
||||
* Fixed bug whereby when pid's of the xterm changes records were not updated
|
||||
* Do not die when pipe open fails, but continue as others may be connected
|
||||
* Remove code that breaks the minimize/maximise stuff;
|
||||
* Catch X button presses on title bar to close all windows correctly
|
||||
* Delay map event capture at program start to avoid infinite loop
|
||||
* Fix execvp error on Solaris 10
|
||||
|
||||
2005-11-28 Duncan Ferguson <duncan_ferguson@user.sf.net> - v3.18.1-1
|
||||
|
||||
* Correct mask value for backtick (grave) character
|
||||
|
|
|
@ -15,7 +15,9 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
EXTRA_DIST = reconf configure clusterssh.spec
|
||||
EXTRA_DIST = reconf configure \
|
||||
clusterssh.spec clusterssh.desktop \
|
||||
clusterssh-48x48.png clusterssh-32x32.png clusterssh-24x24.png
|
||||
SUBDIRS = src
|
||||
CLEANFILES = clusterssh-*.tar.gz
|
||||
#
|
||||
|
|
|
@ -18,5 +18,6 @@ Chris Trahman
|
|||
Olivier Beyssac
|
||||
Rob Dawson
|
||||
Steve Roome
|
||||
D. Dumont
|
||||
|
||||
$Id$
|
||||
|
|
BIN
clusterssh/clusterssh-24x24.png
Normal file
BIN
clusterssh/clusterssh-24x24.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
clusterssh/clusterssh-32x32.png
Normal file
BIN
clusterssh/clusterssh-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
clusterssh/clusterssh-48x48.png
Normal file
BIN
clusterssh/clusterssh-48x48.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
11
clusterssh/clusterssh.desktop
Executable file
11
clusterssh/clusterssh.desktop
Executable file
|
@ -0,0 +1,11 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=ClusterSSH
|
||||
GenericName=SSH/RSH Cluster Control Client
|
||||
Comment=Control multiple ssh or rsh sessions from a single input window
|
||||
Exec=cssh
|
||||
Icon=clusterssh.png
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;RemoteAccess;Network;
|
||||
Version=1.0
|
|
@ -1,15 +1,16 @@
|
|||
Name: clusterssh
|
||||
Version: 3.18.3
|
||||
Version: 3.19.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Secure concurrent multi-server terminal control
|
||||
|
||||
Group: Applications/Productivity
|
||||
License: GPL
|
||||
URL: http://clusterssh.sourceforge.net
|
||||
Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
||||
Source0: http://osdn.dl.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: desktop-file-utils
|
||||
Requires: perl-Tk perl-X11-Protocol
|
||||
|
||||
%description
|
||||
|
@ -27,6 +28,30 @@ make %{?_smp_mflags}
|
|||
%install
|
||||
rm -rf %{buildroot}
|
||||
make install DESTDIR=%{buildroot}
|
||||
mkdir -p %{buildroot}/%{_datadir}/applications
|
||||
install -p -m 644 %{name}.desktop \
|
||||
%{buildroot}/%{_datadir}/applications/%{name}.desktop
|
||||
mkdir -p %{buildroot}/%{_datadir}/icons/hicolor/48x48/apps/
|
||||
install -p -m 644 %{name}-48x48.png \
|
||||
%{buildroot}/%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
|
||||
mkdir -p %{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/
|
||||
install -p -m 644 %{name}-32x32.png \
|
||||
%{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
|
||||
mkdir -p %{buildroot}/%{_datadir}/icons/hicolor/24x24/apps/
|
||||
install -p -m 644 %{name}-24x24.png \
|
||||
%{buildroot}/%{_datadir}/icons/hicolor/24x24/apps/%{name}.png
|
||||
|
||||
%post
|
||||
touch --no-create %{_datadir}/icons/hicolor || :
|
||||
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
|
||||
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||
fi
|
||||
|
||||
%postun
|
||||
touch --no-create %{_datadir}/icons/hicolor || :
|
||||
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
|
||||
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||
fi
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
@ -36,9 +61,22 @@ rm -rf %{buildroot}
|
|||
%doc COPYING AUTHORS README NEWS ChangeLog
|
||||
%{_bindir}/cssh
|
||||
%{_mandir}/man1/*.1*
|
||||
%{_datadir}/icons/hicolor/*/apps/%{name}.png
|
||||
%{_datadir}/applications/clusterssh.desktop
|
||||
|
||||
%changelog
|
||||
|
||||
* Mon Jul 24 2006 Duncan Ferguson <duncan_ferguson@users.sf.net> - 3.19.1-1
|
||||
- Update Changelog, commit all branch changes and release
|
||||
|
||||
* Tue Jul 18 2006 Duncan Ferguson <duncan_ferguson@users.sf.net> - 3.18.2.10-2
|
||||
- Correct download URL (Source0)
|
||||
|
||||
* Mon Jul 17 2006 Duncan Ferguson <duncan_ferguson@users.sf.net> - 3.18.2.10-1
|
||||
- Lots of amendments and fixes to clusterssh code
|
||||
- Added icons and desktop file
|
||||
- Submitted to Fedora Extras for review
|
||||
|
||||
* Mon Nov 28 2005 Duncan Ferguson <duncan_ferguson@users.sf.net> - 3.18.1-1
|
||||
- Updates and bugfixes to cssh
|
||||
- Updates to man page
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
AC_INIT
|
||||
AM_INIT_AUTOMAKE(clusterssh,3.18.3)
|
||||
AM_INIT_AUTOMAKE(clusterssh,3.19.1)
|
||||
AC_PATH_PROGS(PERL, perl perl5)
|
||||
AC_OUTPUT([Makefile src/Makefile])
|
||||
#
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue