Skip to content

Commit

Permalink
remove hardcoded version (will be generated through make)
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Dec 6, 2021
1 parent 7c10aa3 commit f578c95
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pixload-bmp.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use Getopt::Long qw(:config no_ignore_case);
use File::Basename;

use constant PROGRAM => basename $0;
use constant VERSION => 0.2;
use constant VERSION => '@VERSION@';

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Default Options #
Expand Down
2 changes: 1 addition & 1 deletion pixload-gif.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use Getopt::Long qw(:config no_ignore_case);
use File::Basename;

use constant PROGRAM => basename $0;
use constant VERSION => 0.2;
use constant VERSION => '@VERSION@';

use GD;

Expand Down
2 changes: 1 addition & 1 deletion pixload-jpg.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use Getopt::Long qw(:config no_ignore_case);
use File::Basename;

use constant PROGRAM => basename $0;
use constant VERSION => 0.2;
use constant VERSION => '@VERSION@';

use Image::ExifTool ':Public';

Expand Down
2 changes: 1 addition & 1 deletion pixload-png.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Getopt::Long qw(:config no_ignore_case);
use File::Basename;

use constant PROGRAM => basename $0;
use constant VERSION => 0.2;
use constant VERSION => '@VERSION@';

use GD;
use String::CRC32;
Expand Down
2 changes: 1 addition & 1 deletion pixload-webp.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use Getopt::Long qw(:config no_ignore_case);
use File::Basename;

use constant PROGRAM => basename $0;
use constant VERSION => 0.2;
use constant VERSION => '@VERSION@';

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Default Options #
Expand Down

0 comments on commit f578c95

Please sign in to comment.