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
06ef5dcf
Commit
06ef5dcf
authored
Sep 13, 2018
by
Maxime Perrotin
Browse files
Fix type checking of the "power" operator
parent
2227fbd1
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
06ef5dcf
...
...
@@ -135,6 +135,9 @@ The background pattern was downloaded from www.subtlepatterns.com
Changelog
=========
2.
0.17 (09/2018)
-
Fix type checking of the "power" operator
2.
0.16 (07/2018)
-
Added interaction with system clipboard (basic for floating items)
...
...
opengeode/ogParser.py
View file @
06ef5dcf
...
...
@@ -118,7 +118,7 @@ SPECIAL_OPERATORS = {
'num'
:
[{
'type'
:
ENUMERATED
,
'direction'
:
'in'
}],
'power'
:
[
{
'type'
:
NUMERICAL
,
'direction'
:
'in'
},
{
'type'
:
INTEGER
,
'direction'
:
'in'
}
{
'type'
:
NUMERICAL
,
'direction'
:
'in'
}
],
'present'
:
[{
'type'
:
CHOICE
,
'direction'
:
'in'
}],
'reset_timer'
:
[{
'type'
:
TIMER
,
'direction'
:
'in'
}],
...
...
opengeode/opengeode.py
View file @
06ef5dcf
...
...
@@ -141,7 +141,7 @@ except ImportError:
__all__
=
[
'opengeode'
,
'SDL_Scene'
,
'SDL_View'
,
'parse'
]
__version__
=
'2.0.1
6
'
__version__
=
'2.0.1
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