Initial release: Nextcloud Notes Desktop App

A cross-platform desktop application for Nextcloud Notes built with Tauri, React, and TypeScript.

Features:
- Full Nextcloud Notes integration with real-time sync
- Rich markdown editor with live preview
- Category management and organization
- Image and attachment support
- Customizable fonts and UI themes
- Focus mode for distraction-free writing
- Floating toolbar for quick formatting
- PDF export functionality
- Offline mode support

Tech Stack:
- Tauri (Rust backend)
- React + TypeScript
- TailwindCSS for styling
- Vite for build tooling
- Markdown-it for rendering
This commit is contained in:
drelich
2026-03-18 16:03:53 +01:00
parent 2ad076c052
commit c11e792062
34 changed files with 2373 additions and 301 deletions

View File

@@ -5,6 +5,14 @@
"windows": ["main"],
"permissions": [
"core:default",
"opener:default"
"opener:default",
"http:default",
{
"identifier": "http:default",
"allow": [
{ "url": "https://*" },
{ "url": "http://*" }
]
}
]
}