skepsismusic 781ea28097 Release v0.2.0: Task comments, recurring calendar, system tray, app branding
New features:
- Task comments with date-stamped entries and last-comment summary
- Recurring tasks expanded on calendar (daily/weekly/monthly/yearly)
- System tray mode replacing CMD window (Windows/macOS/Linux)
- Ironpad logo as exe icon, tray icon, favicon, and header logo

Technical changes:
- Backend restructured for dual-mode: dev (API-only) / prod (tray + server)
- tray-item crate for cross-platform tray, winresource for icon embedding
- Calendar view refactored with CalendarEntry interface for recurring merging
- Added CHANGELOG.md, build-local.ps1, version bumped to 0.2.0

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-16 13:48:54 +01:00
2026-02-07 17:38:34 +01:00
2026-02-06 15:05:42 +01:00

Ironpad

Ironpad Banner

A local-first, file-based project & knowledge management system.

Build License: MIT Platform Rust Version

Ironpad stores all your notes, projects, and tasks as plain Markdown files. No cloud services, no vendor lock-in -- your data stays on your machine in a format you can read and edit with any text editor. Every change is automatically versioned with Git.

Ironpad Screenshot

v0.2.0 -- Task comments, recurring tasks on calendar, system tray mode, and app branding. See CHANGELOG.md for details.


Features

  • File-based storage -- All data stored as Markdown files with YAML frontmatter
  • Local-first -- Works fully offline, no internet required
  • Git integration -- Automatic version control with 60-second commit batching, full diff viewer, push/fetch
  • WYSIWYG editing -- Milkdown editor with real-time markdown rendering and formatting toolbar
  • Project management -- Organize tasks and notes by project with due dates, tags, subtasks, recurrence, and comments
  • Calendar view -- Month grid showing tasks by due date with color-coded urgency; recurring tasks automatically expanded across the month
  • Dashboard -- Cross-project overview with active task summaries
  • Daily notes -- Quick capture with templates for daily journaling
  • Real-time sync -- WebSocket-based live updates; edit in VS Code, see changes in the browser instantly
  • External editing -- Full support for VS Code, Obsidian, Vim, or any text editor
  • Search -- ripgrep-powered full-text search across all files (Ctrl+K)
  • Dark theme -- Beautiful dark UI by default with light mode toggle
  • System tray -- Runs quietly in the system tray (Windows, macOS, Linux); no console window in release builds
  • Tiny footprint -- 5 MB binary, ~20 MB RAM, sub-second startup

Quick Start

  1. Download the latest release for your platform from Releases
  2. Extract and run the executable
  3. Your browser opens automatically -- start using Ironpad

Data is stored in a data/ folder next to the executable. To use a custom location, set the IRONPAD_DATA_DIR environment variable.

Option 2: Build From Source

Prerequisites: Rust (1.70+), Node.js (18+), Git

# Clone the repository
git clone https://github.com/OlaProeis/ironPad.git
cd ironPad

# Start the backend
cd backend
cargo run

# In a new terminal, start the frontend
cd frontend
npm install
npm run dev

Open http://localhost:5173 in your browser.

Tech Stack

Tech Stack

Component Technology
Backend Rust, Axum 0.8, Tokio
Frontend Vue 3, Vite, TypeScript
Editor Milkdown (ProseMirror-based)
State Pinia
Routing Vue Router
Data Markdown + YAML frontmatter
Version Control Git (via git2)
Search ripgrep

Roadmap

Roadmap

Ironpad is under active development. Here's what's planned:

  • Task comments and activity summary
  • Recurring tasks on calendar (daily/weekly/monthly/yearly expansion)
  • System tray mode (Windows, macOS, Linux)
  • UI polish and animations
  • Tag extraction and filtering across projects
  • Backlinks between notes
  • Graph view of note connections
  • Export to PDF / HTML
  • Custom themes
  • Global hotkey (Ctrl+Shift+Space)
  • Kanban board view for tasks

See CHECKLIST.md for detailed implementation status.

Built With AI

AI Workflow

This entire application was built using AI-assisted development -- an approach we call Open Method. We share not just the code, but the complete process: the PRD, task breakdowns, handover documents, and workflow artifacts.

Read about the method:

Tools used: Cursor IDE, Claude Opus 4.5/4.6, Context7 MCP

Configuration

Setting Default Description
Data directory data/ next to executable Override with IRONPAD_DATA_DIR env var
Backend port 3000 (auto-increments to 3010) Dynamic port selection
Auto-commit Every 60 seconds Git commits when changes exist
Auto-save 1 second debounce Frontend saves after typing stops

Documentation

Architecture

Document Description
docs/API.md Complete REST API reference
docs/ARCHITECTURE.md System design and technical details
docs/ai-workflow/ AI development workflow and methodology

Contributing

This is an early release and contributions are welcome!

  1. Check Issues for open bugs and feature requests
  2. Create a branch for your feature/fix
  3. Follow the code style (cargo fmt for Rust)
  4. Test your changes thoroughly
  5. Submit a pull request

License

MIT License

Acknowledgments

Description
No description provided
Readme MIT 47 MiB
Languages
Vue 49.5%
Rust 38.6%
TypeScript 10.1%
CSS 0.9%
PowerShell 0.4%
Other 0.5%