Skip to content

Commit 7ef318f

Browse files
committed
1.1 (20230313)
1 parent 89bd9c4 commit 7ef318f

File tree

7 files changed

+26
-18
lines changed

7 files changed

+26
-18
lines changed

.reuse/dep5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ Upstream-Contact: raf <raf@raf.org>
44
Source: https://raf.org/textmail
55

66
Files: *
7-
Copyright: 2003-2007, 2011, 2020 raf <raf@raf.org>
7+
Copyright: 2003-2007, 2011, 2020-2023 raf <raf@raf.org>
88
License: GPL-2.0-or-later
99

CHANGELOG

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

4+
1.1 (20230313)
5+
6+
- Replace original June 1991 GPLv2 with February 1999 (post-LGPLv2.1) GPLv2
7+
- Fix mbox From_ header parsing (handle single-letter as an email address substitute) (spotted by github/traut21)
8+
- Add CODE_OF_CONDUCT.md
9+
- Add LICENSES/* and .reuse/dep5 (REUSE 3.0 compliant)
10+
- Add references to the codeberg repository
11+
412
1.0 (20200625)
513

614
- When replacing text-versus-HTML alternatives, choose the translated HTML alternative instead
@@ -98,6 +106,6 @@ CHANGELOG
98106
URL: https://raf.org/textmail
99107
GIT: https://github.com/raforg/textmail
100108
GIT: https://codeberg.org/raforg/textmail
101-
Date: 20200625
109+
Date: 20230313
102110
Author: raf <raf@raf.org>
103111

COPYING

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ COPYING
22
=======
33
textmail - mail filter to replace MS Word/HTML attachments with plain text
44

5-
Copyright (C) 2003-2007, 2011, 2020 raf <raf@raf.org>
5+
Copyright (C) 2003-2007, 2011, 2020-2023 raf <raf@raf.org>
66

77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by
@@ -22,6 +22,6 @@ Copyright (C) 2003-2007, 2011, 2020 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: 20200625
25+
Date: 20230313
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: 20200625
53+
Date: 20230313
5454
Author: raf <raf@raf.org>
5555

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# textmail - mail filter to replace MS Word/HTML attachments with plain text
22
#
3-
# Copyright (C) 2003-2007, 2011, 2020 raf <raf@raf.org>
3+
# Copyright (C) 2003-2007, 2011, 2020-2023 raf <raf@raf.org>
44
#
55
# This program is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
@@ -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-
# 20200625 raf <raf@raf.org>
18+
# 20230313 raf <raf@raf.org>
1919

2020
NAME := textmail
21-
VERSION := 1.0
21+
VERSION := 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
@@ -82,13 +82,13 @@ programs. It should run on any system with the following software:
8282

8383
There is a manual entry:
8484

85-
- [textmail(1)](http://raf.org/textmail/manpages/textmail.1.html) - the *textmail(1)* manpage
85+
- [textmail(1)](https://raf.org/textmail/manual/textmail.1.html) - the *textmail(1)* manpage
8686

8787
--------------------------------------------------------------------------------
8888

8989
URL: https://raf.org/textmail
9090
GIT: https://github.com/raforg/textmail
9191
GIT: https://codeberg.org/raforg/textmail
92-
Date: 20200625
92+
Date: 20230313
9393
Author: raf <raf@raf.org>
9494

textmail

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env perl
2+
BEGIN { pop @INC if $INC[-1] eq '.' }
23
use 5.006; # and v7
34
use warnings;
45
use strict;
5-
BEGIN { pop @INC if $INC[-1] eq '.' }
66

77
# textmail - mail filter to replace MS Word/HTML attachments with plain text
88
#
9-
# Copyright (C) 2003-2007, 2011, 2020 raf <raf@raf.org>
9+
# Copyright (C) 2003-2007, 2011, 2020-2023 raf <raf@raf.org>
1010
#
1111
# This program is free software; you can redistribute it and/or modify
1212
# it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@ BEGIN { pop @INC if $INC[-1] eq '.' }
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-
# 20200625 raf <raf@raf.org>
24+
# 20230313 raf <raf@raf.org>
2525

2626
=head1 NAME
2727
@@ -498,11 +498,11 @@ I<pod2man(1)>,
498498
I<pod2html(1)>,
499499
I<vcalendar-filter>,
500500
I<mutt.vcard.filter>,
501-
C<http://raf.org/minimail/>
501+
C<https://raf.org/minimail>
502502
503503
=head1 AUTHOR
504504
505-
20200625 raf <raf@raf.org>
505+
20230313 raf <raf@raf.org>
506506
507507
=head1 URL
508508
@@ -1058,8 +1058,8 @@ sub winmail
10581058
# Documentation functions: usage and manpage (via $PAGER or as nroff or html)
10591059
10601060
my ($name) = $0 =~ /([^\/]+)$/;
1061-
my $version = '1.0';
1062-
my $date = '20200625';
1061+
my $version = '1.1';
1062+
my $date = '20230313';
10631063
10641064
$ENV{LANG} = 'C';
10651065
@@ -1124,7 +1124,7 @@ sub help
11241124
"GIT: https://github.com/raforg/textmail\n",
11251125
"GIT: https://codeberg.org/raforg/textmail\n",
11261126
"\n",
1127-
"Copyright (C) 2003-2007, 2011, 2020 raf <raf\@raf.org>\n",
1127+
"Copyright (C) 2003-2007, 2011, 2020-2023 raf <raf\@raf.org>\n",
11281128
"\n",
11291129
"This is free software released under the terms of the GPLv2+:\n",
11301130
"\n",

0 commit comments

Comments
 (0)