- Deleted obsolete icons, layout files, and SVG assets. - Added `useAutoUpdate` hook for streamlined update logic. - Introduced `auto_migrate_electron` and migration commands for Electron-to-Tauri data migration. - Implemented `init_panic_hook` for improved crash reporting. - Updated `.gitignore` for Tauri build output and IDE-specific files.
45 lines
379 B
Plaintext
45 lines
379 B
Plaintext
# Dependencies
|
|
node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
/coverage
|
|
|
|
# Production
|
|
/dist
|
|
/build
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Local env files
|
|
.env*.local
|
|
.env
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Next.js
|
|
.next/
|
|
/out/
|
|
next-env.d.ts
|
|
|
|
# Electron build output
|
|
/release/
|
|
|
|
# Tauri build output
|
|
src-tauri/target/
|
|
|
|
# IDE
|
|
.idea/
|