diff --git a/.gitignore b/.gitignore
index a9898da..434cb32 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,8 +1,30 @@
+# Claude / AI assistant notes — local to this machine, never committed
+CLAUDE.md
+CLAUDE.local.md
+.claude/
+
+# PHP
/vendor/
+/composer.lock
+.php-cs-fixer.cache
+.phpunit.result.cache
+
+# JS / build output
/node_modules/
/js/
/build/
-/composer.lock
/package-lock.json
-.php-cs-fixer.cache
-.phpunit.result.cache
+
+# IDE / editor
+.vscode/
+.idea/
+*.swp
+*.swo
+
+# OS
+.DS_Store
+Thumbs.db
+
+# Local env / secrets
+.env
+.env.local
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 2124fc0..09404aa 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -28,7 +28,7 @@ This app lets every user configure their own Deck automation workflows from Pers
A background job periodically evaluates all enabled workflows and moves cards whose due date has passed, using Deck's own internal PHP classes only (no HTTP/OCS calls).
]]>
- 1.0.0
+ 0.1.0
agpl
Patrick Niebeling
WorkflowDeckAutomation
diff --git a/package.json b/package.json
index f785261..7fb83e0 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "workflow_deck_automation",
- "version": "1.0.0",
+ "version": "0.1.0",
"private": true,
"description": "Automates moving overdue Deck cards between stacks, configurable per user.",
"scripts": {