Skip to content

Commit

Permalink
Merge pull request #228 from BigRoy/master
Browse files Browse the repository at this point in the history
Implement #227
  • Loading branch information
mottosso authored Mar 1, 2017
2 parents d2c64fd + 2bca330 commit 60b7bad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ docs/_*
build
playground.py
*.qmlc
*.jsc
*.jsc
.idea/
1 change: 1 addition & 0 deletions pyblish_qml/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def __init__(self, source):

host = ipc.client.Proxy()
controller = control.Controller(host)
controller.finished.connect(lambda: window.alert(0))

context = engine.rootContext()
context.setContextProperty("app", controller)
Expand Down
2 changes: 1 addition & 1 deletion pyblish_qml/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_MAJOR = 1
VERSION_MINOR = 0
VERSION_PATCH = 2
VERSION_PATCH = 3

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down

0 comments on commit 60b7bad

Please sign in to comment.