Skip to content

Commit c428eaf

Browse files
authored
Merge pull request #48 from eddiesanjuan/release/v2.6.0
chore: bump version to v2.6.0
2 parents e5f3363 + 63e0377 commit c428eaf

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CLAUDE.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ As of v2.5.0, markupr also ships as:
99
- **MCP server** (`npx markupr-mcp`) -- Model Context Protocol server for AI coding agents (capture screenshots, analyze video, start/stop recordings)
1010
- **GitHub Action** (`eddiesanjuan/markupr-action@v1`) -- CI/CD visual feedback on PRs
1111

12-
**Version:** 2.5.0
12+
**Version:** 2.6.0
1313
**License:** MIT (Open Source)
1414

1515
## Tech Stack
@@ -67,7 +67,10 @@ src/
6767
│ └── windows/ # Window management (popover, taskbar)
6868
├── cli/ # Headless CLI tool
6969
│ ├── index.ts # CLI entry point (commander-based)
70-
│ └── CLIPipeline.ts # Video analysis pipeline (ffmpeg + Whisper + markdown)
70+
│ ├── CLIPipeline.ts # Video analysis pipeline (ffmpeg + Whisper + markdown)
71+
│ ├── WatchMode.ts # Watch directory for new recordings
72+
│ ├── doctor.ts # System dependency checker (ffmpeg, Whisper, etc.)
73+
│ └── init.ts # Project config scaffolding (.markupr.json)
7174
├── mcp/ # MCP server for AI coding agents
7275
│ ├── index.ts # MCP entry point
7376
│ ├── server.ts # MCP server setup
@@ -76,6 +79,9 @@ src/
7679
│ │ ├── analyzeVideo.ts # Analyze a video recording
7780
│ │ ├── captureScreenshot.ts # Capture a screenshot
7881
│ │ ├── captureWithVoice.ts # Capture with voice narration
82+
│ │ ├── describeScreen.ts # AI agents can see the user's screen
83+
│ │ ├── pushToGitHub.ts # Push feedback to GitHub Issues
84+
│ │ ├── pushToLinear.ts # Push feedback to Linear
7985
│ │ ├── startRecording.ts # Start a recording session
8086
│ │ └── stopRecording.ts # Stop a recording session
8187
│ ├── session/ # MCP session management

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": "markupr",
3-
"version": "2.5.0",
3+
"version": "2.6.0",
44
"description": "Record your screen, narrate feedback, get structured Markdown with screenshots. Desktop app, CLI, and MCP server for AI coding agents like Claude Code, Cursor, and Windsurf.",
55
"type": "module",
66
"main": "dist/main/index.mjs",

0 commit comments

Comments
 (0)