Releases: editnori/nota
Releases · editnori/nota
Release list
nota v0.5.81
Download the installer for your platform below.
nota v0.5.80
Download the installer for your platform below.
nota v0.5.79
Download the installer for your platform below.
nota v0.5.78
Download the installer for your platform below.
nota v0.5.77
Download the installer for your platform below.
v0.5.76 - Fix Update Checker
What's Changed
Fixed Auto-Update
- Downloads now save to Downloads folder (not temp)
- Platform-specific installer execution:
- Windows: msiexec for .msi, cmd start for .exe
- macOS: open command for .dmg
- Linux: chmod +x then open file manager
- Added shell:allow-execute permission for running installers
- Added GitHub release page link as fallback option
Technical
- Use Command.create() instead of open() for executing local files
- Better error logging for debugging
Full Changelog: v0.5.75...v0.5.76
v0.5.75 - Mobile Build Support
What's New
Mobile Build Support (Android/iOS)
Tauri 2.x enables building Nota for mobile platforms from the same codebase.
Android APK available for download - Install directly on your Android device.
New scripts:
bun run android:init- Initialize Android projectbun run android:dev- Run on emulator/devicebun run android:build- Build release APK/AABbun run ios:init- Initialize iOS projectbun run ios:dev- Run on simulator/devicebun run ios:build- Build release IPA
Documentation
- Added
docs/mobile-setup.mdwith prerequisites and setup instructions
Prerequisites
- Android: Android Studio + SDK/NDK
- iOS: macOS + Xcode + Apple Developer account
- Both: Rust toolchain
Full Changelog: v0.5.74...v0.5.75
v0.5.74 - Settings Polish & Auto-Updates
What's New
Polished Settings Modal
- Cleaner, more minimal design matching Nota's aesthetic
- Formatter mode selector as compact toggle buttons
- Streamlined questions editor with hover-to-delete
- Removed verbose info boxes and warnings
- Tighter spacing throughout
Auto-Download Updates
- Download & Install button downloads installer directly
- Progress bar shows download status
- Automatically runs installer after download
- Platform detection: Windows (.msi), macOS (.dmg), Linux (.AppImage)
- Falls back to browser download when not in Tauri app
Technical
- 21 tests pass
- TypeScript OK
Full Changelog: v0.5.73...v0.5.74
v0.5.73 - Tailwind CSS v4
Tailwind CSS v4 Migration
Changes
- Upgraded to Tailwind 4.1 via
@tailwindcss/viteplugin - New CSS syntax:
@import "tailwindcss"replaces@tailwinddirectives - Theme in CSS: Maple color palette now defined in
@themeblock - Class-based dark mode: Preserved via
@custom-variant dark
Removed (no longer needed in v4)
tailwind.config.js- config now in CSSpostcss.config.js- PostCSS built into Tailwind v4autoprefixer- built into Tailwind v4postcss- using Vite plugin instead
Verification
- ✅ 21 tests pass
- ✅ TypeScript OK
- ✅ Dead code check clean
Full Changelog: v0.5.72...v0.5.73
v0.5.72 - Cleanup & Test Fixes
What's Changed
Cleanup
- Removed 203 placeholder tests (features.test.ts deleted)
- Removed unused exports from
importers.ts,bilstm-formatter.ts,bilstm-inference.ts - Made internal types/interfaces non-exported (
Match,FormatterOptions, etc.) - Renamed
CHANGELOG.mdtochangelog.md(lowercase convention)
Testing
- Added
store.test.tswith 5 real tests for annotation batching, undo, suggested clearing, etc. - Fixed formatter edge case tests (Mental Status Exam, Discharge Summary)
- All 21 tests pass, 0 skip, 0 fail
Tooling
- Added knip for dead code detection (
bun run lint:dead) - Fixed TypeScript errors in
store.test.tsandUpdateChecker.tsx
No Breaking Changes
- BiLSTM model remains the default formatter
- All existing functionality preserved
Full Changelog: v0.5.71...v0.5.72