Skip to content

Releases: editnori/nota

nota v0.5.81

Choose a tag to compare

@github-actions github-actions released this 19 Dec 14:29

Download the installer for your platform below.

nota v0.5.80

Choose a tag to compare

@github-actions github-actions released this 17 Dec 06:00

Download the installer for your platform below.

nota v0.5.79

Choose a tag to compare

@github-actions github-actions released this 17 Dec 05:25

Download the installer for your platform below.

nota v0.5.78

Choose a tag to compare

@github-actions github-actions released this 12 Dec 02:45

Download the installer for your platform below.

nota v0.5.77

Choose a tag to compare

@github-actions github-actions released this 11 Dec 21:31

Download the installer for your platform below.

v0.5.76 - Fix Update Checker

Choose a tag to compare

@editnori editnori released this 08 Dec 05:56

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

Choose a tag to compare

@editnori editnori released this 07 Dec 23:44

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 project
  • bun run android:dev - Run on emulator/device
  • bun run android:build - Build release APK/AAB
  • bun run ios:init - Initialize iOS project
  • bun run ios:dev - Run on simulator/device
  • bun run ios:build - Build release IPA

Documentation

  • Added docs/mobile-setup.md with 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

Choose a tag to compare

@editnori editnori released this 07 Dec 22:46

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

Choose a tag to compare

@editnori editnori released this 07 Dec 22:41

Tailwind CSS v4 Migration

Changes

  • Upgraded to Tailwind 4.1 via @tailwindcss/vite plugin
  • New CSS syntax: @import "tailwindcss" replaces @tailwind directives
  • Theme in CSS: Maple color palette now defined in @theme block
  • Class-based dark mode: Preserved via @custom-variant dark

Removed (no longer needed in v4)

  • tailwind.config.js - config now in CSS
  • postcss.config.js - PostCSS built into Tailwind v4
  • autoprefixer - built into Tailwind v4
  • postcss - 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

Choose a tag to compare

@editnori editnori released this 07 Dec 22:26

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.md to changelog.md (lowercase convention)

Testing

  • Added store.test.ts with 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.ts and UpdateChecker.tsx

No Breaking Changes

  • BiLSTM model remains the default formatter
  • All existing functionality preserved

Full Changelog: v0.5.71...v0.5.72