plugin init
BIN
awake/org.igox.awake.wol.sdPlugin/imgs/actions/counter/icon.png
Normal file
|
After Width: | Height: | Size: 265 B |
|
After Width: | Height: | Size: 387 B |
BIN
awake/org.igox.awake.wol.sdPlugin/imgs/actions/counter/key.png
Normal file
|
After Width: | Height: | Size: 827 B |
|
After Width: | Height: | Size: 1.7 KiB |
BIN
awake/org.igox.awake.wol.sdPlugin/imgs/plugin/category-icon.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
BIN
awake/org.igox.awake.wol.sdPlugin/imgs/plugin/marketplace.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
awake/org.igox.awake.wol.sdPlugin/imgs/plugin/marketplace@2x.png
Normal file
|
After Width: | Height: | Size: 120 KiB |
47
awake/org.igox.awake.wol.sdPlugin/manifest.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"Name": "Awake - WOL",
|
||||
"Version": "0.1.0.0",
|
||||
"Author": "iGoX",
|
||||
"Actions": [
|
||||
{
|
||||
"Name": "Counter",
|
||||
"UUID": "org.igox.awake.wol.increment",
|
||||
"Icon": "imgs/actions/counter/icon",
|
||||
"Tooltip": "Displays a count, which increments by one on press.",
|
||||
"PropertyInspectorPath": "ui/increment-counter.html",
|
||||
"Controllers": [
|
||||
"Keypad"
|
||||
],
|
||||
"States": [
|
||||
{
|
||||
"Image": "imgs/actions/counter/key",
|
||||
"TitleAlignment": "middle"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"Category": "Awake - WOL",
|
||||
"CategoryIcon": "imgs/plugin/category-icon",
|
||||
"CodePath": "bin/plugin.js",
|
||||
"Description": "A stream Deck plugin that sends WOL magic packet to wake up your machines",
|
||||
"Icon": "imgs/plugin/marketplace",
|
||||
"SDKVersion": 2,
|
||||
"Software": {
|
||||
"MinimumVersion": "6.4"
|
||||
},
|
||||
"OS": [
|
||||
{
|
||||
"Platform": "mac",
|
||||
"MinimumVersion": "10.15"
|
||||
},
|
||||
{
|
||||
"Platform": "windows",
|
||||
"MinimumVersion": "10"
|
||||
}
|
||||
],
|
||||
"Nodejs": {
|
||||
"Version": "20",
|
||||
"Debug": "enabled"
|
||||
},
|
||||
"UUID": "org.igox.awake.wol"
|
||||
}
|
||||
19
awake/org.igox.awake.wol.sdPlugin/ui/increment-counter.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head lang="en">
|
||||
<title>Increment Counter Settings</title>
|
||||
<meta charset="utf-8" />
|
||||
<script src="https://sdpi-components.dev/releases/v3/sdpi-components.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--
|
||||
Learn more about property inspector components at https://sdpi-components.dev/docs/components
|
||||
-->
|
||||
<sdpi-item label="Increment By">
|
||||
<sdpi-range setting="incrementBy" min="1" max="5" step="1" default="1" showlabels></sdpi-range>
|
||||
</sdpi-item>
|
||||
</body>
|
||||
|
||||
</html>
|
||||