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
50dec439
Commit
50dec439
authored
May 25, 2016
by
Maxime Perrotin
Browse files
Update version to 1.3.27
parent
46598691
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
50dec439
...
...
@@ -142,6 +142,10 @@ The background pattern was downloaded from www.subtlepatterns.com
Changelog
=========
1.
3.27 (05/2016)
-
Fix bug in Ada backend when using continous signals
-
Better handling of simulation script
1.
3.26 (05/2016)
-
Fix parser issues with negative expressions
...
...
opengeode/AdaGenerator.py
View file @
50dec439
...
...
@@ -834,7 +834,8 @@ package {process_name} is'''.format(process_name=process_name,
u
'
\n
'
.
join
(
format_ada_code
(
ads_template
)).
encode
(
'latin1'
))
if
simu
:
with
open
(
u
'{}_interface.aadl'
.
format
(
process_name
),
'w'
)
as
aadl
:
with
open
(
u
'{}_interface.aadl'
.
format
(
process_name
.
lower
()),
'w'
)
as
aadl
:
aadl
.
write
(
u
'
\n
'
.
join
(
minicv
).
encode
(
'latin1'
))
script
=
'{}_simu.sh'
.
format
(
process_name
.
lower
())
with
open
(
script
,
'w'
)
as
bash_script
:
...
...
opengeode/opengeode.py
View file @
50dec439
...
...
@@ -117,7 +117,7 @@ except ImportError:
__all__
=
[
'opengeode'
,
'SDL_Scene'
,
'SDL_View'
,
'parse'
]
__version__
=
'1.3.2
6
'
__version__
=
'1.3.2
7
'
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