Skip to content

Commit

Permalink
added additional xtypes to the enums #240
Browse files Browse the repository at this point in the history
  • Loading branch information
Jochem Berends committed Nov 16, 2017
1 parent b0e6c77 commit 08cda6b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Change Log

pykechain changelog

1.13.1 (16NOV17)
----------------
* Added additional xtypes to the list of allowed xtypes in the customizations in order to support our new widgets. (#240)
* updated dependent versions for development: pytest (3.2.5)


1.13 (9NOV17)
-------------
* Added `Service` and `ServiceExecution` models to pykechain (#231). This includes the ability to `create`, `retrieve`, `edit`, `destroy` and `upload` kecpkg files to KE-chain. Also the `retrieve`, `terminate`, and `download log` results for `ServiceExecution`s (which are associated to `Service`s) are available. This brings `pykechain` in line with the full abilities in KE-chain 2 SIM release (31OKT17) (SIM module license needed). Also see the PyPI package `kecpkg-tools` from KE-works to help you smoothen the workflow of creating custom KE-chain supported python packages (`kecpkg`) that can be executed by the KE-chain SIM module.
Expand Down
2 changes: 1 addition & 1 deletion pykechain/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'pykechain'
description = 'KE-chain Python SDK'

version = '1.13.0'
version = '1.13.1'

author = 'KE-works BV'
email = 'support+pykechain@ke-works.com'
11 changes: 11 additions & 0 deletions pykechain/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ class ComponentXType(Enum):
PAGINATEDSUPERGRID = "paginatedSuperGrid"
FILTEREDGRID = "filteredGrid"
DISPLAYFIELD = "displayfield"
# in 1.13.1
PROPERTYATTACHMENTPREVIEWER = "propertyAttachmentViewer"
HTMLPANEL = "htmlPanel"
EXECUTESERVICE = "executeService"
NOTEBOOKPANEL = "notebookPanel"

# for RND
BUTTON = "button"
MODELVIEWER = "modelViewer"
CSVGRID = "csvGrid"
JSONTREE = "jsonTree"


class ActivityStatus(Enum):
Expand Down

0 comments on commit 08cda6b

Please sign in to comment.