-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
use ExtUtils::MakeMaker; | ||
WriteMakefile( | ||
NAME => 'MView', | ||
VERSION => '1.66.2', | ||
VERSION => '1.67', | ||
EXE_FILES => ['bin/mview'] | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
#!/usr/bin/env perl | ||
|
||
# Copyright (C) 1997-2019 Nigel P. Brown | ||
# Copyright (C) 1997-2020 Nigel P. Brown | ||
|
||
# This file is part of MView. | ||
# MView is released under license GPLv2, or any later version. | ||
|
||
########################################################################### | ||
# Release information | ||
########################################################################### | ||
my $VERSION = '1.66'; | ||
my $PATCH = '2'; | ||
my $VERSION = '1.67'; | ||
my $PATCH = ''; | ||
my $PROJECT = 'MView'; | ||
my $AUTHOR = "Nigel P. Brown"; | ||
my $VERSION = $VERSION . ($PATCH ? ".$PATCH" : ""); | ||
my $COPYYRS = "1997-2019"; | ||
my $COPYYRS = "1997-2020"; | ||
my $PROJPTH = 'https://desmid.github.io/mview/'; | ||
my $AUTHMAIL = '[email protected]'; | ||
|
||
|