From 8f5e8b3bbaf23600d2450f8a694190134773f9e3 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 18 May 2011 19:39:33 +0200 Subject: raps2 list: Sort by account name --- Changelog | 1 + lib/App/Raps2.pm | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 56545d1..bfd49ff 100644 --- a/Changelog +++ b/Changelog @@ -3,6 +3,7 @@ git HEAD * Terminal input is now read via Term::ReadLine (included in perl core) * New commands: "raps2 del " and "raps2 edit " * Remove autodie, it caused a major performance impact + * raps2 list now sorts by account name raps2 0.2 - Fri May 13 2011 diff --git a/lib/App/Raps2.pm b/lib/App/Raps2.pm index c416592..6acac7f 100644 --- a/lib/App/Raps2.pm +++ b/lib/App/Raps2.pm @@ -376,8 +376,9 @@ Lists all saved passwords and their logins and urls sub cmd_list { my ($self) = @_; + my @files = read_dir($self->{xdg_data}); - for my $file (read_dir($self->{xdg_data})) { + for my $file (sort @files) { my %key = $self->file_to_hash($self->{xdg_data} . "/${file}"); $self->ui->list( ['Account', $file], -- cgit v1.2.3