Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Scientific Software
MDANSE
Commits
14ca490c
Commit
14ca490c
authored
May 21, 2019
by
Remi Perenon
Browse files
Merge branch 'release-1.3.x'
parents
e4e15758
b40a953c
Pipeline
#7168
passed with stages
in 37 minutes and 53 seconds
Changes
3
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
14ca490c
version 1.3.1
--------------
* FIXED issue #46 There was an error message when closign converter plugins. The error is no more here but the converter still does not close.
version 1.3.0
--------------
* ADDED Neutron Dynamic Total Structure Factor analysis
...
...
Src/GUI/Plugins/JobPlugin.py
View file @
14ca490c
...
...
@@ -151,9 +151,12 @@ class JobPlugin(ComponentPlugin):
PUBLISHER
.
sendMessage
(
"msg_set_data"
,
message
=
self
)
def
on_close
(
self
,
event
):
self
.
parent
.
mgr
.
ClosePane
(
self
.
parent
.
mgr
.
GetPane
(
self
))
try
:
self
.
parent
.
mgr
.
ClosePane
(
self
.
parent
.
mgr
.
GetPane
(
self
))
except
AttributeError
:
# If the job is a converter, the parent has no mgr attribute
pass
class
JobFrame
(
wx
.
Frame
):
def
__init__
(
self
,
parent
,
jobType
,
datakey
=
None
):
...
...
Src/__pkginfo__.py
View file @
14ca490c
...
...
@@ -39,9 +39,9 @@ __repo__ = "https://code.ill.fr/scientific-software/mdanse/"
__license__
=
"GPL 3"
__version__
=
"1.3.
0
"
__version__
=
"1.3.
1
"
__date__
=
"
07
-0
2
-2019"
__date__
=
"
21
-0
5
-2019"
__commit__
=
"undefined"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment