Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
9ea3d2f7
Commit
9ea3d2f7
authored
Apr 02, 2019
by
Maxime Perrotin
Browse files
Increase version number
parent
f97fff5b
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
9ea3d2f7
...
...
@@ -135,6 +135,9 @@ The background pattern was downloaded from www.subtlepatterns.com
Changelog
=========
2.
0.32 (04/2019)
-
Fix segfault and improve copy paste of nested states in branches
2.
0.31 (04/2019)
-
Can cut/paste nested states (nested content was lost before)
-
Can copy/paste and then rename states with nested content
...
...
opengeode/Clipboard.py
View file @
9ea3d2f7
...
...
@@ -228,7 +228,6 @@ def paste_below_item(parent, scene):
symbols
=
[]
for
item_list
,
_
in
COPY_PASTE
:
states
=
[
i
for
i
in
item_list
if
isinstance
(
i
,
ogAST
.
State
)]
print
[
state
.
inputString
for
state
in
states
]
for
i
in
[
c
for
c
in
item_list
if
not
isinstance
(
c
,
(
ogAST
.
State
,
ogAST
.
TextArea
,
ogAST
.
Start
))]:
LOG
.
debug
(
'PASTE '
+
str
(
i
))
...
...
opengeode/opengeode.py
View file @
9ea3d2f7
...
...
@@ -141,7 +141,7 @@ except ImportError:
__all__
=
[
'opengeode'
,
'SDL_Scene'
,
'SDL_View'
,
'parse'
]
__version__
=
'2.0.3
1
'
__version__
=
'2.0.3
2
'
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
.
Attach a 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