Skip to content

Version 1.7.0 #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**v1.7.0**
* Updated to `extract-msg` version `>=0.41.1, <0.42`.
* Fixed a few bugs.

**v1.6.0**
* Fixed missing import in `__main__.py`.
* Updated to `extract-msg` version `>=0.39.1, <0.40`.
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ Credits
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
:target: LICENSE.txt

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

.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-3816/
Expand Down
4 changes: 2 additions & 2 deletions msg_explorer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

__author__ = 'Destiny Peterson'
__date__ = '2023-02-27'
__version__ = '1.6.0'
__date__ = '2023-05-24'
__version__ = '1.7.0'

# When this module is imported, we should try to compile the forms. They only
# compile when they are outdated.
Expand Down
2 changes: 1 addition & 1 deletion msg_explorer/font_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(self):
self.__fonts = []

@Slot()
def clearFonts():
def clearFonts(self):
"""
Removes all fonts from the handler.
"""
Expand Down
2 changes: 1 addition & 1 deletion msg_explorer/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def loadParent(self):

def _loadMsgThread(self, msgPath, output):
try:
msgFile = extract_msg.openMsg(msgPath, attachmentErrorBehavior = extract_msg.enums.AttachErrorBehavior.BROKEN, strict = False)
msgFile = extract_msg.openMsg(msgPath, errorBehavior = extract_msg.enums.ErrorBehavior.SUPPRESS_ALL, strict = False)
output[0] = msgFile
except Exception as e:
output[0] = e
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

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