2026-04-11 01:24:35 +08:00
|
|
|
# Changelog
|
2026-04-11 01:24:17 +08:00
|
|
|
|
2026-04-11 01:24:35 +08:00
|
|
|
All notable changes to this project will be documented in this file.
|
2026-04-11 01:24:17 +08:00
|
|
|
|
2026-04-11 01:24:35 +08:00
|
|
|
## [0.1.0] - 2026-04-11
|
2026-04-11 01:24:17 +08:00
|
|
|
|
2026-04-11 01:24:35 +08:00
|
|
|
### Added
|
2026-04-11 01:24:17 +08:00
|
|
|
|
2026-04-11 01:24:35 +08:00
|
|
|
- **Two-column layout**: Note list on the left, editor/preview on the right
|
|
|
|
|
- **Note management**: Create, edit, delete notes
|
|
|
|
|
- **Markdown preview**: Custom Markdown renderer with support for:
|
|
|
|
|
- Headings (# ## ###)
|
|
|
|
|
- Lists (- *)
|
|
|
|
|
- Blockquotes (>)
|
|
|
|
|
- Code blocks (```)
|
|
|
|
|
- Horizontal rules (---)
|
|
|
|
|
- **Multi-select delete**: Double-click to enter selection mode, click to toggle selection, batch delete support
|
|
|
|
|
- **Title truncation**: Long titles in the list display with ellipsis
|
|
|
|
|
- **Time display**: Format "time · month/day/year", e.g., "12:45 · 4/11/2026"
|
2026-04-11 01:49:08 +08:00
|
|
|
- **Copy**: In edit mode, use Shift+Arrow to select text, then Ctrl+C to copy
|
|
|
|
|
- **Exit**: Press Ctrl+D to exit
|
2026-04-11 01:24:17 +08:00
|
|
|
|
2026-04-11 01:24:35 +08:00
|
|
|
### Technical
|
2026-04-11 01:24:17 +08:00
|
|
|
|
2026-04-11 01:24:35 +08:00
|
|
|
- SQLite database stored at `~/.config/mio/cache.db`
|
|
|
|
|
- Can be compiled to a single executable (mio.exe)
|
2026-04-11 01:24:17 +08:00
|
|
|
|
2026-04-11 01:24:35 +08:00
|
|
|
### Known Issues
|
2026-04-11 01:24:17 +08:00
|
|
|
|
2026-04-11 01:24:35 +08:00
|
|
|
- Multi-select uses double-click mode, not as intuitive as keyboard shortcuts
|
|
|
|
|
- TypeScript type warnings (bold attribute, etc.)
|
|
|
|
|
|
|
|
|
|
### Build
|
2026-04-11 01:24:17 +08:00
|
|
|
|
|
|
|
|
```bash
|
2026-04-11 01:24:35 +08:00
|
|
|
npm run dev # Development mode
|
|
|
|
|
npm run build # Build to mio.exe
|
2026-04-11 01:44:34 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Keyboard Shortcuts
|
|
|
|
|
|
2026-04-11 01:49:08 +08:00
|
|
|
- `Shift+Arrow` - Select text in edit mode
|
|
|
|
|
- `Ctrl+C` - Copy selected text (in edit mode)
|
2026-04-11 01:44:34 +08:00
|
|
|
- `Ctrl+D` - Exit application
|
|
|
|
|
- `Esc` - Exit application (alternative)
|