Skip to content

Commit 2706495

Browse files
v1.2.5
1 parent 490c858 commit 2706495

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**v1.2.5**
2+
* Fixed issue that cause the multiple viewer to not clear it's data.
3+
14
**v1.2.4**
25
* Fixed issue with files with non-standard streams from custom attachment types. There were issues with viewing the streams in the tree as well as with opening them in the stream viewer.
36
* Switched `HexViewer` from `QPlainTextEdit` to `QTextEdit` to allow for coloring to easily differentiate the headers from the actual data.

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-06-18'
31-
__version__ = '1.2.4'
30+
__date__ = '2022-06-23'
31+
__version__ = '1.2.5'
3232

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

msg_explorer/multiple_viewer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def clear(self):
4141

4242
@Slot(list, str)
4343
def loadMultiple(self, entries, _type):
44+
self.ui.listEntries.clear()
4445
self.ui.labelType.setText(_DATE_TYPE_STRINGS[_type])
4546
self.ui.listEntries.addItems(self.__dataToStrings(entries))
4647

0 commit comments

Comments
 (0)