Skip to content

Commit

Permalink
1.1 (20230313)
Browse files Browse the repository at this point in the history
  • Loading branch information
raforg committed Mar 13, 2023
1 parent 89bd9c4 commit 7ef318f
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Upstream-Contact: raf <raf@raf.org>
Source: https://raf.org/textmail

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

10 changes: 9 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
CHANGELOG
=========

1.1 (20230313)

- Replace original June 1991 GPLv2 with February 1999 (post-LGPLv2.1) GPLv2
- Fix mbox From_ header parsing (handle single-letter as an email address substitute) (spotted by github/traut21)
- Add CODE_OF_CONDUCT.md
- Add LICENSES/* and .reuse/dep5 (REUSE 3.0 compliant)
- Add references to the codeberg repository

1.0 (20200625)

- When replacing text-versus-HTML alternatives, choose the translated HTML alternative instead
Expand Down Expand Up @@ -98,6 +106,6 @@ CHANGELOG
URL: https://raf.org/textmail
GIT: https://github.com/raforg/textmail
GIT: https://codeberg.org/raforg/textmail
Date: 20200625
Date: 20230313
Author: raf <raf@raf.org>

4 changes: 2 additions & 2 deletions COPYING
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ COPYING
=======
textmail - mail filter to replace MS Word/HTML attachments with plain text

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

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -22,6 +22,6 @@ Copyright (C) 2003-2007, 2011, 2020 raf <raf@raf.org>
URL: https://raf.org/textmail
GIT: https://github.com/raforg/textmail
GIT: https://codeberg.org/raforg/textmail
Date: 20200625
Date: 20230313
Author: raf <raf@raf.org>

2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -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: 20200625
Date: 20230313
Author: raf <raf@raf.org>

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

NAME := textmail
VERSION := 1.0
VERSION := 1.1
DIST := $(NAME)-$(VERSION)
DISTDIR := ../$(DIST)
DISTFILE := ../$(DIST).tar.gz
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ programs. It should run on any system with the following software:

There is a manual entry:

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

--------------------------------------------------------------------------------

URL: https://raf.org/textmail
GIT: https://github.com/raforg/textmail
GIT: https://codeberg.org/raforg/textmail
Date: 20200625
Date: 20230313
Author: raf <raf@raf.org>

16 changes: 8 additions & 8 deletions textmail
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/usr/bin/env perl
BEGIN { pop @INC if $INC[-1] eq '.' }
use 5.006; # and v7
use warnings;
use strict;
BEGIN { pop @INC if $INC[-1] eq '.' }

# textmail - mail filter to replace MS Word/HTML attachments with plain text
#
# Copyright (C) 2003-2007, 2011, 2020 raf <raf@raf.org>
# Copyright (C) 2003-2007, 2011, 2020-2023 raf <raf@raf.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand All @@ -21,7 +21,7 @@ BEGIN { pop @INC if $INC[-1] eq '.' }
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.
#
# 20200625 raf <raf@raf.org>
# 20230313 raf <raf@raf.org>

=head1 NAME
Expand Down Expand Up @@ -498,11 +498,11 @@ I<pod2man(1)>,
I<pod2html(1)>,
I<vcalendar-filter>,
I<mutt.vcard.filter>,
C<http://raf.org/minimail/>
C<https://raf.org/minimail>
=head1 AUTHOR
20200625 raf <raf@raf.org>
20230313 raf <raf@raf.org>
=head1 URL
Expand Down Expand Up @@ -1058,8 +1058,8 @@ sub winmail
# Documentation functions: usage and manpage (via $PAGER or as nroff or html)
my ($name) = $0 =~ /([^\/]+)$/;
my $version = '1.0';
my $date = '20200625';
my $version = '1.1';
my $date = '20230313';
$ENV{LANG} = 'C';
Expand Down Expand Up @@ -1124,7 +1124,7 @@ sub help
"GIT: https://github.com/raforg/textmail\n",
"GIT: https://codeberg.org/raforg/textmail\n",
"\n",
"Copyright (C) 2003-2007, 2011, 2020 raf <raf\@raf.org>\n",
"Copyright (C) 2003-2007, 2011, 2020-2023 raf <raf\@raf.org>\n",
"\n",
"This is free software released under the terms of the GPLv2+:\n",
"\n",
Expand Down

0 comments on commit 7ef318f

Please sign in to comment.