diff --git a/.gitignore b/.gitignore index 4223406..8c1fc9e 100644 --- a/.gitignore +++ b/.gitignore @@ -16,5 +16,9 @@ main.js # Claude Code .claude +# Release +release/ +*.zip + # Obsidian data.json diff --git a/counter-plugin-v1.1.0.zip b/counter-plugin-v1.1.0.zip deleted file mode 100644 index 2b5f5b5..0000000 Binary files a/counter-plugin-v1.1.0.zip and /dev/null differ diff --git a/release/manifest.json b/release/manifest.json deleted file mode 100644 index 8ca8db0..0000000 --- a/release/manifest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "id": "counter-plugin", - "name": "Counter Plugin", - "version": "1.1.0", - "minAppVersion": "0.15.0", - "description": "Create interactive counters with +/- buttons using ~ ( ) syntax", - "author": "crib", - "authorUrl": "https://git.cribdev.com/crib", - "isDesktopOnly": false -} diff --git a/release/styles.css b/release/styles.css deleted file mode 100644 index b183925..0000000 --- a/release/styles.css +++ /dev/null @@ -1,63 +0,0 @@ -.counter-container { - display: inline-flex; - align-items: center; - gap: 4px; - padding: 2px 6px; - background-color: var(--background-secondary); - border-radius: 4px; - margin: 2px 0; - font-family: var(--font-interface); - vertical-align: middle; -} - -.counter-button { - width: 16px; - height: 16px; - padding: 0; - border: 1px solid var(--background-modifier-border); - background-color: var(--interactive-normal); - color: var(--text-normal); - border-radius: 3px; - cursor: pointer; - font-size: 12px; - font-weight: bold; - display: flex; - align-items: center; - justify-content: center; - transition: all 0.15s ease; - line-height: 1; -} - -.counter-button:hover { - background-color: var(--interactive-hover); - border-color: var(--interactive-accent); -} - -.counter-button:active { - background-color: var(--interactive-accent); - color: var(--text-on-accent); - transform: scale(0.9); -} - -.counter-display { - min-width: 20px; - text-align: center; - font-weight: 600; - font-size: 13px; - color: var(--text-normal); - font-variant-numeric: tabular-nums; -} - -.counter-label { - margin-left: 2px; - color: var(--text-normal); - font-size: 14px; -} - -.counter-minus { - line-height: 1; -} - -.counter-plus { - line-height: 1; -}