Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
0096311f
Commit
0096311f
authored
Apr 01, 2021
by
Maxime Perrotin
Browse files
Merge
https://github.com/esa/opengeode
into feature_buster
parents
c44a08dd
02b0f616
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
0096311f
...
...
@@ -124,6 +124,9 @@ The background pattern was downloaded from www.subtlepatterns.com
Changelog
=========
**3.4.5 (04/2021)**
-
Fix bug affecting RPC
**3.4.4 (04/2021)**
-
After RPC call, execute corresponding transition in the state machine (if any)
...
...
opengeode/ogParser.py
View file @
0096311f
...
...
@@ -3674,7 +3674,7 @@ def system_definition(root, parent):
system
.
signals
.
append
({
'name'
:
proc
})
for
channel
in
system
.
channels
:
for
route
in
channel
[
'routes'
]:
if
route
[
'dest'
].
lower
!=
"env"
:
if
route
[
'dest'
].
lower
()
!=
"env"
:
route
[
'signals'
].
append
(
proc
)
for
each
in
blocks
:
...
...
opengeode/opengeode.py
View file @
0096311f
...
...
@@ -141,7 +141,7 @@ except ImportError:
__all__
=
[
'opengeode'
,
'SDL_Scene'
,
'SDL_View'
,
'parse'
]
__version__
=
'3.4.
4
'
__version__
=
'3.4.
5
'
if
hasattr
(
sys
,
'frozen'
):
# Detect if we are running on Windows (py2exe-generated)
...
...
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