2017-02-03 21:29:28 +01:00
2017-02-02 18:09:27 +01:00
2017-02-02 18:09:27 +01:00
2017-02-03 21:29:28 +01:00
2017-02-03 00:49:10 +01:00
2017-02-03 00:49:10 +01:00
2017-02-03 00:49:10 +01:00
2017-02-03 14:57:12 +01:00
2017-02-03 00:49:10 +01:00
2017-02-03 00:49:10 +01:00

Testa

TODO: General info

Building

Run following commands in terminal

$ qmake
$ make

Usage

Testa connects (by default) to ws://localhost:12345. Testa accepts Actions in following format:

{
  "type": "object",
  "properties": {
    "action": {
      "type": "string"
    },
    "parameters": {
      "type": "object",
      "properties": {}
    }
  },
  "required": [
    "action",
    "parameters"
  ]
}

It can perform following Actions:

Load URL

{
  "action": "loadUrl",
  "parameters": {
    "url": "http://www.ysoft.com"
  }
}

Show notification

{
  "action": "showNotification",
  "parameters": {
    "title": "Notification title",
    "message": "Notification message"
  }
}

Set progress (currently only Mac OS X)

{
  "action": "setProgress",
  "parameters": {
    "value": 0.5
  }
}
Description
No description provided
Readme 39 KiB
Languages
C++ 60.6%
Objective-C++ 26.4%
QMake 13%