Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issues + update layout + dependencies #12

Merged
merged 1 commit into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This application provides a basic UI for interacting with [Google Cloud Platform

This application is **not an official** Google application.

The application is under development and doesn't cover all emulator product APIs. I started this project to test Tauri App (V2 Release Candidate), then thought it would be intersting to provide something more functional. As an exploration project, I didn't cover features by tests.
The application is under development and doesn't cover all emulator product APIs. I started this project to test Tauri App V2, then thought it would be intersting to provide something more functional. As an exploration project, I didn't cover features by tests.

As **Open source project**, feel free to participate, contribute, fork, etc. :

Expand Down
1,732 changes: 1,205 additions & 527 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gcp-emulator-gui",
"private": true,
"version": "0.3.0",
"version": "0.3.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -16,9 +16,9 @@
"@mui/icons-material": "^6.1.0",
"@mui/lab": "6.0.0-beta.10",
"@mui/material": "^6.1.0",
"@mui/x-data-grid": "7.18.0",
"@tauri-apps/api": "2.0.0-rc.5",
"@tauri-apps/plugin-shell": "2.0.0-rc.1",
"@mui/x-data-grid": "7.19.0",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hook-form": "^7.49.0",
Expand All @@ -28,7 +28,7 @@
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.0",
"@tauri-apps/cli": "2.0.0-rc.16",
"@tauri-apps/cli": "^2.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Cargo
# will have compiled files and executables
/target/

/gen/
Loading