mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-14 21:30:35 +00:00
Bumps the notion-tauri-cargo-minor-patch group in /5-Applications/notion-native-tauri with 2 updates: [tauri](https://github.com/tauri-apps/tauri) and [tauri-build](https://github.com/tauri-apps/tauri).
Updates `tauri` from 2.11.1 to 2.11.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-v2.11.1...tauri-v2.11.2)
Updates `tauri-build` from 2.6.1 to 2.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-build-v2.6.1...tauri-build-v2.6.2)
---
updated-dependencies:
- dependency-name: tauri
dependency-version: 2.11.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: notion-tauri-cargo-minor-patch
- dependency-name: tauri-build
dependency-version: 2.6.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: notion-tauri-cargo-minor-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit
|
||
|---|---|---|
| .. | ||
| gen/schemas | ||
| icons | ||
| src | ||
| build-and-install.sh | ||
| build.rs | ||
| Cargo.lock | ||
| Cargo.toml | ||
| README.md | ||
| tauri.conf.json | ||
Notion Native (Tauri)
Lightweight native Linux wrapper for Notion Web, replacing the broken Electron build.
Features
- Multi-threaded: Tokio runtime with 4 worker threads + background prefetch
- GPU-accelerated: Uses system WebKitGTK WebView (Mesa/Vulkan compositing)
- No bundled Chromium: ~1/50th the size of Electron Notion
- Native Rust: Compiled binary, not interpreted JS
Build
cd "/home/allaun/Documents/Research Stack/5-Applications/notion-native-tauri"
cargo build --release
First compile: ~10-20 minutes (downloads and compiles all dependencies).
Install
# Build Debian package
cargo tauri bundle --bundles deb
# Or run directly without packaging
./target/release/notion-native-tauri
Launch
notion-native-tauri
vs Electron Notion
| Electron Notion | Notion Native (Tauri) | |
|---|---|---|
| Renderer | Bundled Chromium | System WebKitGTK |
| Binary size | ~200 MB | ~15 MB |
| RAM idle | ~400 MB | ~80 MB |
| GPU | Broken on NVIDIA/Wayland | Uses native Mesa compositor |
| Threads | Single main thread | Tokio multi-threaded pool |