Skip to content

Commit

Permalink
Update the changelog. Disable PlotterTemplate for now
Browse files Browse the repository at this point in the history
  • Loading branch information
MBartkowiakSTFC committed Oct 15, 2024
1 parent 46757a6 commit ff07fe8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
version 2.0.0b1 - 2024-10-15
--------------------------
* ADDED van Hove functions (self function and distinct function)
* FIXED Eccentricity analysis to give correct results
* ADDED Infrared analysis (only for molecules at the moment)
* FIXED MolecularTrace analysis data axes to make data plottable
* CHANGED the plotting interface to allow overplotting curves
* ADDED instrument profiles for storing user parameters
* ADDED logging in the code and a logger tab in the GUI
* ADDED charge information to the stored trajectory data
* ADDED support for H5MD trajectories

version 2.0.0 - 2024-02-15
--------------------------
* CHANGED programming language to Python 3
Expand Down
9 changes: 5 additions & 4 deletions MDANSE_GUI/Src/MDANSE_GUI/Tabs/Plotters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@
globdict = globals()

for name in modnames:
if name in ["__init__"]:
if name in ["__init__", "PlotterTemplate"]:
continue
try:
tempmod = importlib.import_module("." + name, "MDANSE_GUI.Tabs.Plotters")
except ModuleNotFoundError:
LOG.error(f"Could not find {name} in MDANSE_GUI.Tabs.Plotters")
tempobject = getattr(tempmod, name)
globdict[name] = tempobject
del tempmod # optionally delete the reference to the parent module
else:
tempobject = getattr(tempmod, name)
globdict[name] = tempobject
del tempmod # optionally delete the reference to the parent module

0 comments on commit ff07fe8

Please sign in to comment.