Implemented getVersion API call #729
This commit is contained in:
parent
b02a5d3109
commit
669410ac05
|
@ -156,6 +156,8 @@ class MySimpleXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
|
|||
elif method == 'add':
|
||||
(a, b) = params
|
||||
return a + b
|
||||
elif method == 'getVersion':
|
||||
return shared.softwareVersion
|
||||
elif method == 'statusBar':
|
||||
message, = params
|
||||
shared.UISignalQueue.put(('updateStatusBar', message))
|
||||
|
|
Reference in New Issue
Block a user