Remove release files from version control

This commit is contained in:
2025-11-26 18:27:04 +01:00
parent d08612205b
commit 8e4b85c172
4 changed files with 4 additions and 73 deletions

4
.gitignore vendored
View File

@@ -16,5 +16,9 @@ main.js
# Claude Code # Claude Code
.claude .claude
# Release
release/
*.zip
# Obsidian # Obsidian
data.json data.json

Binary file not shown.

View File

@@ -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
}

View File

@@ -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;
}