-
Notifications
You must be signed in to change notification settings - Fork 0
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
6 changed files
with
15 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
CHANGELOG | ||
========= | ||
|
||
1.1.1 (20230508) | ||
|
||
- Update internal minimail functions (UTF-8 detection, winmail.dat fix) | ||
|
||
1.1 (20230313) | ||
|
||
- Replace original June 1991 GPLv2 with February 1999 (post-LGPLv2.1) GPLv2 | ||
|
@@ -106,6 +110,6 @@ CHANGELOG | |
URL: https://raf.org/textmail | ||
GIT: https://github.com/raforg/textmail | ||
GIT: https://codeberg.org/raforg/textmail | ||
Date: 20230313 | ||
Date: 20230508 | ||
Author: raf <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -22,6 +22,6 @@ Copyright (C) 2003-2007, 2011, 2020-2023 raf <[email protected]> | |
URL: https://raf.org/textmail | ||
GIT: https://github.com/raforg/textmail | ||
GIT: https://codeberg.org/raforg/textmail | ||
Date: 20230313 | ||
Date: 20230508 | ||
Author: raf <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -50,6 +50,6 @@ Requires the following external programs for various functions: | |
URL: https://raf.org/textmail | ||
GIT: https://github.com/raforg/textmail | ||
GIT: https://codeberg.org/raforg/textmail | ||
Date: 20230313 | ||
Date: 20230508 | ||
Author: raf <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -15,10 +15,10 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, see <https://www.gnu.org/licenses/>. | ||
# | ||
# 20230313 raf <[email protected]> | ||
# 20230508 raf <[email protected]> | ||
|
||
NAME := textmail | ||
VERSION := 1.1 | ||
VERSION := 1.1.1 | ||
DIST := $(NAME)-$(VERSION) | ||
DISTDIR := ../$(DIST) | ||
DISTFILE := ../$(DIST).tar.gz | ||
|
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 |
---|---|---|
|
@@ -66,7 +66,7 @@ License](https://www.gnu.org/licenses/), either version 2 of the License, or | |
*textmail* is written in Perl and executes several external | ||
programs. It should run on any system with the following software: | ||
|
||
- perl | ||
- perl (v5.14 or later) | ||
- docx2txt | ||
- antiword | ||
- catdoc | ||
|
@@ -89,6 +89,6 @@ There is a manual entry: | |
URL: https://raf.org/textmail | ||
GIT: https://github.com/raforg/textmail | ||
GIT: https://codeberg.org/raforg/textmail | ||
Date: 20230313 | ||
Date: 20230508 | ||
Author: raf <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ use strict; | |
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, see <https://www.gnu.org/licenses/>. | ||
# | ||
# 20230313 raf <[email protected]> | ||
# 20230508 raf <[email protected]> | ||
|
||
=head1 NAME | ||
|
@@ -502,7 +502,7 @@ C<https://raf.org/minimail> | |
=head1 AUTHOR | ||
20230313 raf <[email protected]> | ||
20230508 raf <[email protected]> | ||
=head1 URL | ||
|
@@ -1075,8 +1075,8 @@ sub winmail | |
# Documentation functions: usage and manpage (via $PAGER or as nroff or html) | ||
my ($name) = $0 =~ /([^\/]+)$/; | ||
my $version = '1.1'; | ||
my $date = '20230313'; | ||
my $version = '1.1.1'; | ||
my $date = '20230508'; | ||
$ENV{LANG} = 'C'; | ||
|