Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
dc638cb
fix: adjust padding and line-height in main styles for better layout …
0PandaDEV Mar 16, 2025
5e66974
feat: add get_app_info command with error handling and panic safety f…
0PandaDEV Mar 16, 2025
af64b77
refactor: move selectedResult logic to a new plugin for better organi…
0PandaDEV Mar 16, 2025
b946b64
feat: implement keyboard context management and shortcuts for improve…
0PandaDEV Mar 16, 2025
7ba418f
refactor: update BottomBar component to improve action handling and a…
0PandaDEV Mar 16, 2025
2865f87
feat: add ActionsMenu component for enhanced action management with s…
0PandaDEV Mar 16, 2025
fce7eec
feat: add new icon components including Bin, Board, Brush, Cube, Expa…
0PandaDEV Mar 16, 2025
843a1ea
feat: add new key icon components for Cmd, Enter, Key, and Shift to e…
0PandaDEV Mar 16, 2025
409e10a
refactor: update BottomBar component to use new Key component for key…
0PandaDEV Mar 16, 2025
b828daf
feat: implement useAppControl composable for app hiding functionality…
0PandaDEV Mar 16, 2025
ddd92a7
feat: enhance ActionsMenu component with dynamic action icons, improv…
0PandaDEV Mar 16, 2025
be1718d
feat: add new color variable for red and update SQL query in history …
0PandaDEV Mar 16, 2025
a79268d
feat: enhance ActionsMenu functionality with improved keyboard contex…
0PandaDEV Mar 16, 2025
554943d
feat: remove Cube icon component and enhance ActionsMenu with new key…
0PandaDEV Mar 16, 2025
b8238d0
feat: remove unused clipboard content update emission in setup function
0PandaDEV Mar 16, 2025
3a5e2cb
feat: refactor ActionsMenu for improved accessibility and keyboard na…
0PandaDEV Mar 16, 2025
bbd7a54
feat: add platform detection for keyboard functionality to support ma…
0PandaDEV Mar 16, 2025
8abf231
feat: enhance keybind input handling with Escape key functionality an…
0PandaDEV Mar 16, 2025
ae5103e
feat: update BottomBar component to include platform-specific key mod…
0PandaDEV Mar 16, 2025
2c4459f
Merge branch 'main' into dev/actions-menu
0PandaDEV May 27, 2025
aa928f7
chore(deps): update keyboard dependency and refactor keyboard handling
0PandaDEV May 27, 2025
97c023d
chore: system
0PandaDEV Jun 8, 2025
30d6eb6
chore(deps): update tauri and related dependencies in Cargo.toml and …
0PandaDEV Jun 8, 2025
8d3206a
chore(deps): update dependencies in package.json and add bun.lock file
0PandaDEV Jun 22, 2025
7aaa26b
chore(deps): update reqwest and tauri plugin versions in Cargo.toml a…
0PandaDEV Jun 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(deps): update reqwest and tauri plugin versions in Cargo.toml a…
…nd Cargo.lock
  • Loading branch information
0PandaDEV committed Jun 22, 2025
commit 7aaa26b2073ad2389c6a326a1aedaea190900cc1
48 changes: 26 additions & 22 deletions src-tauri/Cargo.lock

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

12 changes: 6 additions & 6 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ tauri = { version = "2.5.1", features = [
"tray-icon",
"image-png",
] }
tauri-plugin-sql = { version = "2.2.0", features = ["sqlite"] }
tauri-plugin-autostart = "2.3.0"
tauri-plugin-os = "2.2.1"
tauri-plugin-updater = "2.7.1"
tauri-plugin-sql = { version = "2.2.1", features = ["sqlite"] }
tauri-plugin-autostart = "2.4.0"
tauri-plugin-os = "2.2.2"
tauri-plugin-updater = "2.8.1"
tauri-plugin-dialog = "2.2.2"
tauri-plugin-fs = "2.3.0"
tauri-plugin-clipboard = "2.1.11"
Expand All @@ -37,7 +37,7 @@ rdev = "0.5.3"
rand = "0.9.1"
base64 = "0.22.1"
image = "0.25.6"
reqwest = { version = "0.12.19", features = ["json", "blocking"] }
reqwest = { version = "0.12.20", features = ["json", "blocking"] }
url = "2.5.4"
regex = "1.11.1"
sha2 = "0.10.9"
Expand All @@ -46,7 +46,7 @@ time = "0.3.41"
global-hotkey = "0.7.0"
chrono = { version = "0.4.41", features = ["serde"] }
log = { version = "0.4.27", features = ["std"] }
uuid = { version = "1.17.0", features = ["v4"]}
uuid = { version = "1.17.0", features = ["v4"] }
include_dir = "0.7.4"
# hyperpolyglot = { git = "https://github.com/0pandadev/hyperpolyglot" }
applications = { git = "https://github.com/HuakunShen/applications-rs", branch = "fix/win-app-detection" }
Expand Down