Skip to content

Commit a541302

Browse files
committed
1.1.1 (20230508)
1 parent 7afb7f6 commit a541302

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

CHANGELOG

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
=========
33

4+
1.1.1 (20230508)
5+
6+
- Update internal minimail functions (UTF-8 detection, winmail.dat fix)
7+
48
1.1 (20230313)
59

610
- Replace original June 1991 GPLv2 with February 1999 (post-LGPLv2.1) GPLv2
@@ -106,6 +110,6 @@ CHANGELOG
106110
URL: https://raf.org/textmail
107111
GIT: https://github.com/raforg/textmail
108112
GIT: https://codeberg.org/raforg/textmail
109-
Date: 20230313
113+
Date: 20230508
110114
Author: raf <raf@raf.org>
111115

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ Copyright (C) 2003-2007, 2011, 2020-2023 raf <raf@raf.org>
2222
URL: https://raf.org/textmail
2323
GIT: https://github.com/raforg/textmail
2424
GIT: https://codeberg.org/raforg/textmail
25-
Date: 20230313
25+
Date: 20230508
2626
Author: raf <raf@raf.org>
2727

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ Requires the following external programs for various functions:
5050
URL: https://raf.org/textmail
5151
GIT: https://github.com/raforg/textmail
5252
GIT: https://codeberg.org/raforg/textmail
53-
Date: 20230313
53+
Date: 20230508
5454
Author: raf <raf@raf.org>
5555

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1717
#
18-
# 20230313 raf <raf@raf.org>
18+
# 20230508 raf <raf@raf.org>
1919

2020
NAME := textmail
21-
VERSION := 1.1
21+
VERSION := 1.1.1
2222
DIST := $(NAME)-$(VERSION)
2323
DISTDIR := ../$(DIST)
2424
DISTFILE := ../$(DIST).tar.gz

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ License](https://www.gnu.org/licenses/), either version 2 of the License, or
6666
*textmail* is written in Perl and executes several external
6767
programs. It should run on any system with the following software:
6868

69-
- perl
69+
- perl (v5.14 or later)
7070
- docx2txt
7171
- antiword
7272
- catdoc
@@ -89,6 +89,6 @@ There is a manual entry:
8989
URL: https://raf.org/textmail
9090
GIT: https://github.com/raforg/textmail
9191
GIT: https://codeberg.org/raforg/textmail
92-
Date: 20230313
92+
Date: 20230508
9393
Author: raf <raf@raf.org>
9494

textmail

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use strict;
2121
# You should have received a copy of the GNU General Public License
2222
# along with this program; if not, see <https://www.gnu.org/licenses/>.
2323
#
24-
# 20230313 raf <raf@raf.org>
24+
# 20230508 raf <raf@raf.org>
2525

2626
=head1 NAME
2727
@@ -502,7 +502,7 @@ C<https://raf.org/minimail>
502502
503503
=head1 AUTHOR
504504
505-
20230313 raf <raf@raf.org>
505+
20230508 raf <raf@raf.org>
506506
507507
=head1 URL
508508
@@ -1075,8 +1075,8 @@ sub winmail
10751075
# Documentation functions: usage and manpage (via $PAGER or as nroff or html)
10761076
10771077
my ($name) = $0 =~ /([^\/]+)$/;
1078-
my $version = '1.1';
1079-
my $date = '20230313';
1078+
my $version = '1.1.1';
1079+
my $date = '20230508';
10801080
10811081
$ENV{LANG} = 'C';
10821082

0 commit comments

Comments
 (0)