Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
a5huynh committed Nov 20, 2024
2 parents 7704267 + 1451863 commit 54642bf
Show file tree
Hide file tree
Showing 35 changed files with 1,076 additions and 501 deletions.
300 changes: 300 additions & 0 deletions apps/desktop-client/package-lock.json

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

11 changes: 11 additions & 0 deletions apps/desktop-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@
"@heroicons/react": "^2.1.5",
"@icons-pack/react-simple-icons": "^10.1.0",
"@tauri-apps/api": "^2.0.3",
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.1",
"@tauri-apps/plugin-global-shortcut": "^2.0.0",
"@tauri-apps/plugin-http": "^2.0.1",
"@tauri-apps/plugin-notification": "^2.0.0",
"@tauri-apps/plugin-os": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.1",
"@tauri-apps/plugin-updater": "^2.0.0",
"classnames": "^2.5.1",
"handlebars": "^4.7.8",
"react": "^18.3.1",
Expand All @@ -23,6 +33,7 @@
"devDependencies": {
"@eslint/js": "^9.13.0",
"@tailwindcss/forms": "^0.5.9",
"@tauri-apps/cli": "^2.1.0",
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
Expand Down
22 changes: 22 additions & 0 deletions apps/desktop-client/src/assets/icons/macos-maximize.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion apps/desktop-client/src/bindings/ClientInvoke.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type ClientInvoke = "authorize_connection" | "choose_folder" | "default_indices" | "escape" | "open_plugins_folder" | "get_library_stats" | "get_shortcut" | "get_startup_progress" | "install_lens" | "list_connections" | "list_installed_lenses" | "list_installable_lenses" | "list_plugins" | "load_user_settings" | "load_action_settings" | "resize_window" | "resync_connection" | "revoke_connection" | "run_lens_updater" | "save_user_settings" | "search_docs" | "search_lenses" | "open_folder_path" | "open_lens_folder" | "open_result" | "copy_to_clipboard" | "open_settings_folder" | "uninstall_lens" | "update_and_restart" | "wizard_finished" | "navigate";
/**
* NOTE: When adding a new invoke command,
* the label should match up to the tauri generated command names.
*/
export type ClientInvoke = "authorize_connection" | "choose_folder" | "copy_to_clipboard" | "default_indices" | "escape" | "open_plugins_folder" | "get_library_stats" | "get_shortcut" | "get_startup_progress" | "install_lens" | "list_connections" | "list_installed_lenses" | "list_installable_lenses" | "list_plugins" | "load_user_settings" | "load_action_settings" | "open_big_mode" | "open_folder_path" | "open_lens_folder" | "open_result" | "open_settings_folder" | "resize_window" | "resync_connection" | "revoke_connection" | "run_lens_updater" | "save_user_settings" | "search_docs" | "search_lenses" | "uninstall_lens" | "update_and_restart" | "wizard_finished" | "navigate";
Loading

0 comments on commit 54642bf

Please sign in to comment.