Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marhop committed Dec 30, 2023
1 parent 02269c4 commit be756e4
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 17 deletions.
29 changes: 18 additions & 11 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,37 @@
# Release 1.2.1

2023-12-30

* Bugfix: UTF-8 encoded file paths (in particular, directory names containing
things like umlaut characters (e.g., äöÜ)) can now be opened.

# Release 1.2.0

2020-03-26

* Verso can now open multiple files in the GUI Open dialog and an arbitrary
combination of files and directories in the CLI. In particular this makes
file globbing like `$ verso dir/*.jpg` possible.
* Bugfix: File paths with spaces in the directory part can now be opened.
* Verso can now open multiple files in the GUI Open dialog and an arbitrary
combination of files and directories in the CLI. In particular this makes file
globbing like `$ verso dir/*.jpg` possible.
* Bugfix: File paths with spaces in the directory part can now be opened.

# Release 1.1.1

2019-07-05

* Bugfix: Files with different extensions like *.{jpg,tif} are now sorted
correctly by file name rather than by extension.
* Bugfix: Files with different extensions like *.{jpg,tif} are now sorted
correctly by file name rather than by extension.

# Release 1.1.0

2019-07-03

* Previously, when opening a file in a format that cannot be rendered, Verso
would crash. Now it displays a dummy icon instead but still allows to edit
the file's metadata. That's useful for example to edit XMP metadata of an
MP4 video.
* Previously, when opening a file in a format that cannot be rendered, Verso
would crash. Now it displays a dummy icon instead but still allows to edit the
file's metadata. That's useful for example to edit XMP metadata of an MP4
video.

# Release 1.0.0

2017-07-31

* Initial release.
* Initial release.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
app_version = 1.2.0
app_version = 1.2.1
sdistfiles = verso.pl verso.conf verso.desktop README.md CHANGES.md Makefile LICENSE.txt

bin = $(DESTDIR)/usr/bin/verso
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The project website is [here][Verso]. The source code can be found on

## License

Copyright 2013-2020 Martin Hoppenheit <martin@hoppenheit.info>
Copyright 2013-2023 Martin Hoppenheit <martin@hoppenheit.info>

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Expand Down
8 changes: 4 additions & 4 deletions verso.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Verso - editor for embedded image metadata
#
# Copyright 2013-2020 Martin Hoppenheit <martin@hoppenheit.info>
# Copyright 2013-2023 Martin Hoppenheit <martin@hoppenheit.info>
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
Expand Down Expand Up @@ -33,9 +33,9 @@
use List::Util qw(min any);

my $app_name = 'Verso';
my $app_version = '1.2.0';
my $app_version = '1.2.1';
my $app_description = 'editor for embedded image metadata';
my $app_copyright = 'Copyright 2013-2020 Martin Hoppenheit';
my $app_copyright = 'Copyright 2013-2023 Martin Hoppenheit';
my $app_website = 'https://martin.hoppenheit.info/code/verso/';

my @files; # full paths of all files to be displayed
Expand Down Expand Up @@ -785,7 +785,7 @@ =head1 AUTHOR
=head1 COPYRIGHT
Copyright 2013-2020 Martin Hoppenheit <martin@hoppenheit.info>
Copyright 2013-2023 Martin Hoppenheit <martin@hoppenheit.info>
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Expand Down

0 comments on commit be756e4

Please sign in to comment.