Skip to content

Commit 5ca8cd8

Browse files
Jim Allenclaude
andcommitted
chore: release v3.4.2 with versioned installer support
- Add install.sh to release assets - Update release template with versioned install options - Update RELEASING.md guide to include install.sh in assets - Users can now pin to specific versions via release tag 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent d779af8 commit 5ca8cd8

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

.github/RELEASE_TEMPLATE.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,18 @@ Version X.X.X brings [brief description of the main feature/change]
2929

3030
### Option 1: One-Line Install (Easiest)
3131

32+
**Install Latest Release:**
3233
```bash
3334
curl -fsSL https://raw.githubusercontent.com/jimallen/TasksAgent/master/install.sh | bash
3435
```
3536

37+
**Install This Specific Version (X.X.X):**
38+
```bash
39+
curl -fsSL https://github.com/jimallen/TasksAgent/releases/download/vX.X.X/install.sh | bash
40+
```
41+
3642
Works on macOS, Linux, and Windows (Git Bash). The installer will:
37-
- Download the latest release automatically
43+
- Download the release files automatically
3844
- Find your Obsidian vaults
3945
- Install the plugin files
4046
- Guide you through setup
@@ -45,6 +51,7 @@ Download the release assets below and place them in your vault's plugin folder:
4551
- `main.js` - Plugin code
4652
- `manifest.json` - Plugin metadata
4753
- `styles.css` - UI styles
54+
- `install.sh` - Installer script (optional, for scripted installation)
4855

4956
**Steps:**
5057
1. Download all three files from the Assets section below

.github/RELEASING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Verify the following files exist:
5656
- `main.js`
5757
- `manifest.json`
5858
- `styles.css`
59+
- `install.sh` (installer script)
5960

6061
### 4. Commit Version Changes
6162

@@ -87,7 +88,7 @@ cp .github/RELEASE_TEMPLATE.md /tmp/release-notes.md
8788
gh release create v3.5.0 \
8889
--title "v3.5.0 - [Your Release Title]" \
8990
--notes-file /tmp/release-notes.md \
90-
main.js manifest.json styles.css
91+
main.js manifest.json styles.css install.sh
9192
```
9293

9394
#### Using GitHub Web Interface:
@@ -105,6 +106,7 @@ gh release create v3.5.0 \
105106
- `main.js`
106107
- `manifest.json`
107108
- `styles.css`
109+
- `install.sh`
108110
7. Click "Publish release"
109111

110112
## Release Template Placeholders

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-meeting-tasks",
33
"name": "Meeting Tasks",
4-
"version": "3.4.1",
4+
"version": "3.4.2",
55
"minAppVersion": "1.0.0",
66
"description": "AI-powered Gmail task extraction with intelligent clustering. Dynamic label processors, editable cluster titles, and smart re-clustering modes. Full mobile support with platform-optimized constraints.",
77
"author": "Jim Allen",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-meeting-tasks",
3-
"version": "3.4.1",
3+
"version": "3.4.2",
44
"description": "Dynamic Gmail task extraction with configurable label processors for Obsidian. Full mobile support.",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)