]> git.phdru.name Git - mimedecode.git/blob - ChangeLog
Docs: Update installation instructions
[mimedecode.git] / ChangeLog
1 Version 2.8.0 (2017-10-??)
2
3    Python 3.
4
5    Monkey-patch email.message._formatparam under Python 3:
6    replace it with _formatparam from Python 2.7
7    to avoid re-encoding non-ascii params.
8
9    Fix: do not decode bytes to unicode under Python 2.7.
10
11    Stop supporting Python 2.6.
12
13    Code cleanup: fixed flake8 errors and warnings.
14
15    Pushed to GitHub. Tests at Travis.
16
17 Version 2.7.0 (2017-04-26)
18
19    Use m_lib.defenc instead of m_lib; install it from PyPI.
20
21    Make options --save-headers|body|message to work with multipart subparts.
22
23 Version 2.6.0 (2014-06-08)
24
25    Make options -e/-i to work with multipart subparts.
26
27    Add option -I to completely ignore a part - no headers, no body,
28    no warning.
29
30    Open all output files in binary mode. Output os.linesep instead of '\n'.
31
32    Test --save-headers|body|message masks one after another to allow
33    saving a message or a subpart to more than one file.
34
35 Version 2.5.0 (2014-03-18)
36
37    Add option --set-header=header:value to set header's value (only at the top
38 level).
39
40    Add option --set-param=header:param=value to set header parameter's value
41 (only at the top level). The header must exist.
42
43    Add option -B to skip content-transfer-decoding binary attachments.
44
45    Add options --save-headers, --save-body and --save-message to save decoded
46 headers/bodies/messages to files.
47
48    Add option -O to set the destination directory for output files.
49
50    Fix a minor bug: if a multipart message (or a subpart) lacks any textual
51 content - avoid putting an excessive newline.
52
53 Version 2.4.0 (2014-03-08)
54
55    Change option -d to accept a comma-separated list of headers:
56 -d h1,h2,h3,...
57
58    Change option -d to decode all headers and accept a list of exceptions:
59 -d *,-h1,-h2,...
60
61    Change option -p to accept lists of headers and parameters:
62 -p h1,h2,h3,..:p1,p2,p3,..
63
64    Allow * and exceptions for -p in the headers and parameters lists:
65 -p *,-h1,-h2,-h3:p1,p2,p3
66 -p h1,h2,h3:*,-p1,-p2,-p3
67 -p *,-h1,-h2,-h3:*,-p1,-p2,-p3
68
69    Change option -r to accept a list of headers: -r h1,h2,h3,...
70
71    Change option -r to remove all headers and accept a list of exceptions:
72 -r *,-h1,-h2,...
73
74    Change option -R to accept lists of headers and parameters:
75 -R h1,h2,h3:p1,p2,p3
76 -R h1,h2,h3:*,-p1,-p2,-p3
77 -R *,-h1,-h2,-h3:p1,p2,p3
78 -R *,-h1,-h2,-h3:*,-p1,-p2,-p3
79
80    Publish docs in html format.
81
82    Add ChangeLog.
83
84 Version 2.3.8 (2014-02-26)
85
86    Add option --remove-params=header to remove all parameters from the header.
87
88 Version 2.3.7 (2014-02-23)
89
90    Add option -r to remove headers and option -R to remove header's parameters.
91
92 Version 2.3.6 (2014-02-19)
93
94    Decode "To", "Cc", "Reply-To" and "Mail-Followup-To" headers by default.
95
96    Report test progress and success.
97
98    Add tests for headers and parameters decoding.
99
100    Add tests for passing (-b) and skipping (-i) message bodies.
101
102 Version 2.3.4 (2014-02-11)
103
104    Optimize recursive decoding.
105
106    Fix a bug - decode message/rfc822 subparts.
107
108 Version 2.3.3 (2014-02-02)
109
110    Forbid filtering from console. When the program runs with stdin
111    connected to the console it shows usage help.
112
113    Fix a bug - option -o and no parameters.
114
115 Version 2.3.2 (2014-02-01)
116
117    Fix a bug - do not generate 'From ' headers in subparts.
118
119    Add option --host.
120
121    Add tests.
122
123 Version 2.3.1 (2014-01-31)
124
125    Update documentation.
126
127 Version 2.3.0 (2014-01-30)
128
129    Add option -o and output_file argument.
130
131 Version 2.2.2 (2014-01-23)
132
133    Upgrade docbook-xsl.
134
135 Version 2.2.1 (2013-12-24)
136
137    Add mk-distr helper.
138
139 Version 2.2.0 (2013-12-21)
140
141    Rename __version__.py to mimedecode_version.py.
142
143    Use setuptools.
144
145 Version 2.1.5 (2013-12-18)
146
147    Move __version__ out of mimedecode.py to __version__.py
148    to allow installation without m_lib.
149
150 Version 2.1.4 (2013-12-11)
151
152    Add installation instruction in INSTALL.txt.
153
154 Version 2.1.3 (2013-12-10)
155
156    Minor bugfix.
157
158 Version 2.1.2 (2013-07-26)
159
160    Minor fix in Makefile. Switched to git.
161
162 Version 2.1.1 (2012-04-15)
163
164    Removed svn:keywords.
165
166 Version 2.1.0 (2006-04-27)
167
168    A patch by Bogdan Maryniuk <bogdan.maryniuk@gmail.com>: portable way to get
169 the default charset.
170
171 Version 2.0.0
172
173    Major rewrite to use python email package.