Skip to content

Commit

Permalink
Settings, major refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
m1guelpf committed Aug 6, 2023
1 parent 2ee69e3 commit a72f2c3
Show file tree
Hide file tree
Showing 26 changed files with 1,000 additions and 178 deletions.
90 changes: 90 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,7 @@ thiserror = "1.0.44"

[dependencies.tauri]
version = "1.4"
features = [
"macos-private-api",
"system-tray",
"config-toml",
"global-shortcut",
"notification",
]
features = ["window-start-dragging", "macos-private-api", "system-tray", "config-toml", "global-shortcut", "notification", "dialog"]

[features]
custom-protocol = ["tauri/custom-protocol"]
Expand Down
1 change: 1 addition & 0 deletions Tauri.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ decorations = false

[tauri.allowlist]
all = false
window = { startDragging = true }

[tauri.system-tray]
iconAsTemplate = true
Expand Down
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html lang="en" class="overflow-hidden">
<html lang="en" class="overscroll-none">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Expand Down
7 changes: 6 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,18 @@
},
"dependencies": {
"@primer/octicons-react": "^19.5.0",
"@radix-ui/react-switch": "^1.0.3",
"@tauri-apps/api": "^1.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"framer-motion": "^10.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"tailwind-merge": "^1.14.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
"@types/node": "^20.4.8",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
Expand Down
Loading

0 comments on commit a72f2c3

Please sign in to comment.