Files
stream_deck_notion_timer/com.pdma.notion-timer.sdPlugin/manifest.json
pdmarf 036567bc7c v1.0.30: auto-updater now updates HTML and images, not just plugin.js
Previous versions of checkForUpdates only wrote plugin.js, leaving
property-inspector.html stale on all machines that used Check for
Updates. PI fixes (name dropdown, refreshProjects) never reached them.
Now downloads and writes all UI and image assets before restarting.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-24 08:56:37 +01:00

36 lines
1.0 KiB
JSON

{
"Author": "Pete Marfleet",
"Description": "Toggle Notion time tracking for a project with a single button press.",
"Name": "Notion Timer",
"Version": "1.0.30",
"SDKVersion": 2,
"Software": { "MinimumVersion": "5.0" },
"OS": [{ "Platform": "mac", "MinimumVersion": "10.11" }],
"Nodejs": { "Version": "20", "Debug": "enabled" },
"Icon": "imgs/plugin-icon",
"Category": "Notion",
"CategoryIcon": "imgs/category-icon",
"CodePath": "bin/plugin.js",
"GlobalPropertyInspectorPath": "ui/global-property-inspector.html",
"Actions": [
{
"Icon": "imgs/action-icon",
"Name": "Toggle Timer",
"UUID": "com.pdma.notion-timer.toggle",
"Tooltip": "Start or stop a Notion time entry for the configured project.",
"States": [
{
"Image": "imgs/idle",
"TitleAlignment": "bottom"
},
{
"Image": "imgs/running",
"TitleAlignment": "bottom"
}
],
"PropertyInspectorPath": "ui/property-inspector.html",
"SupportedInMultiActions": false
}
]
}