mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-03 09:53:23 +00:00
Fix 'Add host or cluster' to contain cluster names
This commit is contained in:
parent
74151fe5e0
commit
155b861e08
2 changed files with 5 additions and 1 deletions
1
Changes
1
Changes
|
@ -3,6 +3,7 @@
|
||||||
- Correct autoclose short option to what is actually used (Github issue 4) (thanks to Simon Fraser)
|
- Correct autoclose short option to what is actually used (Github issue 4) (thanks to Simon Fraser)
|
||||||
- Fix 'use_all_a_records' option (Github issue: 5) (thanks to Simon Fraser)
|
- Fix 'use_all_a_records' option (Github issue: 5) (thanks to Simon Fraser)
|
||||||
- Fix 'title' option (thanks to Barry Roberts)
|
- Fix 'title' option (thanks to Barry Roberts)
|
||||||
|
- Fix 'Add host or cluster' window to contain cluster names
|
||||||
|
|
||||||
4.02_03 2014-01-31 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
4.02_03 2014-01-31 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
||||||
- Fix 'File->Show History' (Sf support request 41)
|
- Fix 'File->Show History' (Sf support request 41)
|
||||||
|
|
|
@ -173,7 +173,10 @@ sub get_tag {
|
||||||
|
|
||||||
sub list_tags {
|
sub list_tags {
|
||||||
my ($self) = @_;
|
my ($self) = @_;
|
||||||
return sort keys( %{ $self->{tags} } );
|
return
|
||||||
|
wantarray
|
||||||
|
? sort keys( %{ $self->{tags} } )
|
||||||
|
: scalar keys( %{ $self->{tags} } );
|
||||||
}
|
}
|
||||||
|
|
||||||
sub dump_tags {
|
sub dump_tags {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue