Skip to content

Commit db16ce1

Browse files
Merge pull request #2 from TeamMsgExtractor/next-release
Version 1.7.0
2 parents e54bbb1 + a33bba8 commit db16ce1

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**v1.7.0**
2+
* Updated to `extract-msg` version `>=0.41.1, <0.42`.
3+
* Fixed a few bugs.
4+
15
**v1.6.0**
26
* Fixed missing import in `__main__.py`.
37
* Updated to `extract-msg` version `>=0.39.1, <0.40`.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ Credits
8181
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
8282
:target: LICENSE.txt
8383

84-
.. |PyPI3| image:: https://img.shields.io/badge/pypi-1.6.0-blue.svg
85-
:target: https://pypi.org/project/msg-explorer/1.6.0/
84+
.. |PyPI3| image:: https://img.shields.io/badge/pypi-1.7.0-blue.svg
85+
:target: https://pypi.org/project/msg-explorer/1.7.0/
8686

8787
.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
8888
:target: https://www.python.org/downloads/release/python-3816/

msg_explorer/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2828

2929
__author__ = 'Destiny Peterson'
30-
__date__ = '2023-02-27'
31-
__version__ = '1.6.0'
30+
__date__ = '2023-05-24'
31+
__version__ = '1.7.0'
3232

3333
# When this module is imported, we should try to compile the forms. They only
3434
# compile when they are outdated.

msg_explorer/font_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def __init__(self):
1010
self.__fonts = []
1111

1212
@Slot()
13-
def clearFonts():
13+
def clearFonts(self):
1414
"""
1515
Removes all fonts from the handler.
1616
"""

msg_explorer/main_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def loadParent(self):
207207

208208
def _loadMsgThread(self, msgPath, output):
209209
try:
210-
msgFile = extract_msg.openMsg(msgPath, attachmentErrorBehavior = extract_msg.enums.AttachErrorBehavior.BROKEN, strict = False)
210+
msgFile = extract_msg.openMsg(msgPath, errorBehavior = extract_msg.enums.ErrorBehavior.SUPPRESS_ALL, strict = False)
211211
output[0] = msgFile
212212
except Exception as e:
213213
output[0] = e

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
# First level requirements
3-
extract-msg>=0.39.1,<0.40
3+
extract-msg>=0.41.1,<0.42
44
PySide6>=6.3.0,<6.5

0 commit comments

Comments
 (0)