Skip to content

Commit 8209e7f

Browse files
v1.6.0
1 parent 8e1ba1a commit 8209e7f

File tree

7 files changed

+17
-10
lines changed

7 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
**v1.6.0**
2+
* Fixed missing import in `__main__.py`.
3+
* Updated to `extract-msg` version `>=0.39.1, <0.40`.
4+
* Updated requirements to require Python 3.8 or greater. `extract-msg` will soon be updated to this, this update is preempting that.
5+
16
**v1.5.0**
27
* Attempting to switch to strict semantic versioning. This version contains no breaking changes to API (possible exception is a bump to requirements), only additions.
38
* Bump to `extract-msg` version 0.38.4.
49
* Added button to export the current MSG file to a file. This works on non-embedded MSG files too.
5-
* Filtered more of the strings through the tr function so that text can be translated in more places.
10+
* Filtered more of the strings through the `tr` function so that text can be translated in more places.
611

712
**v1.4.1**
813
* Didn't properly edit the version number for extract-msg last time.

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ 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.5.0-blue.svg
85-
:target: https://pypi.org/project/msg-explorer/1.5.0/
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/
8686

87-
.. |PyPI2| image:: https://img.shields.io/badge/python-3.6+-brightgreen.svg
88-
:target: https://www.python.org/downloads/release/python-367/
87+
.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
88+
:target: https://www.python.org/downloads/release/python-3816/
8989
.. _Destiny Peterson (The Elemental of Destruction): https://github.com/TheElementalOfDestruction
9090
.. _Discord: https://discord.com/invite/B77McRmzdc
9191
.. _Buy Me a Coffee: https://www.buymeacoffee.com/DestructionE

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__ = '2022-12-03'
31-
__version__ = '1.5.0'
30+
__date__ = '2023-02-27'
31+
__version__ = '1.6.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/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#! /usr/env python3
2+
import sys
3+
24
from msg_explorer import main
35

46

msg_explorer/stream_viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def openStream(self, name, prefix = True):
119119
except Exception as e:
120120
utils.displayException(e)
121121
return
122-
props = source.mainProperties if isinstance(source, extract_msg.msg.MSGFile) else source.props
122+
props = source.props
123123
self.ui.pageParsedProperties.loadProperties(props)
124124
else:
125125
_type = name[-1][-4:]

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.38.4,<0.39
3+
extract-msg>=0.39.1,<0.40
44
PySide6>=6.3.0,<6.5

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@
5353
include_package_data=True,
5454
install_requires=dependencies,
5555
classifiers=classifiers,
56-
python_requires='>=3.6'
56+
python_requires='>=3.8'
5757
)

0 commit comments

Comments
 (0)