Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
byemaxx committed Jul 25, 2024
2 parents 404b571 + e62ca3b commit c378967
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Docs/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version: 1.109.5
## Date: 2024-07-25
### Changes:
- Fix: Fixed the bug of when add taxa-functions list to plot, the "<>" was not correctly recognized.

# Version: 1.109.4
## Date: 2024-07-24
### Changes:
Expand Down
2 changes: 1 addition & 1 deletion metax/gui/main_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -3227,7 +3227,7 @@ def check_if_in_list(str_selected, df_type):
# show the search results in a new window, allowing user to select the valid items
if search_results:
self.input_window = InputWindow(self.MainWindow, input_mode=False)
self.input_window.text_edit.setText('\n'.join(search_results))
self.input_window.text_edit.setPlainText('\n'.join(search_results))
result = self.input_window.exec_()
if result == QDialog.Accepted:
text = self.input_window.text_edit.toPlainText()
Expand Down
2 changes: 1 addition & 1 deletion metax/utils/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.109.4'
__version__ = '1.109.5'
API_version = '2'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "MetaXTools"
version = "1.109.4"
version = "1.109.5"
description = "MetaXTools is a novel tool for linking peptide sequences with taxonomic and functional information in Metaproteomics."
readme = "README_PyPi.md"
license = { text = "NorthOmics" }
Expand Down

0 comments on commit c378967

Please sign in to comment.