Skip to content
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dist-ssr
*.local

# Editor directories and files
.vscode/*
.vscode-edge-profile/*
!.vscode/extensions.json
.vs
.idea
Expand Down
29 changes: 29 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Tauri App",
"type": "msedge",
"port": 9222,
"request": "launch",
"runtimeExecutable": "${workspaceFolder}/src-tauri/target/debug/app.exe",
"useWebView": true,
"webRoot": "${workspaceFolder}",
"preLaunchTask": "ui:dev"
},
{
"name": "Debug Web (Edge)",
"type": "msedge",
"request": "launch",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/src",
"preLaunchTask": "start-web-dev-server",
"userDataDir": "${workspaceFolder}/.vscode-edge-profile",
"sourceMaps": true,
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
}
}
],
"compounds": []
}
32 changes: 32 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "ui:dev",
"type": "shell",
"isBackground": true,
"command": "yarn",
"args": [
"dev"
],
},
{
"label": "start-web-dev-server",
"type": "shell",
"command": "pnpm",
"args": ["dev"],
"isBackground": true,
"problemMatcher": {
"owner": "custom",
"pattern": {
"regexp": "^$"
},
"background": {
"activeOnStart": true,
"beginsPattern": "VITE.*preparing",
"endsPattern": "(Local|Network):.*"
}
}
}
]
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# GameVault Frontend Changelog

## 16.2.1

### Changes

- [#5](https://github.com/Phalcode/gamevault-frontend/issues/5) - Dynamically show or hide Basic Auth and SSO options on Login and Register pages based on server configuration
- [#6](https://github.com/Phalcode/gamevault-frontend/issues/6) - Use proper href links on game cards and community progress list for better accessibility (middle-click/right-click to open in new tab)
- [#9](https://github.com/Phalcode/gamevault-frontend/issues/9) - Fix search with special characters (apostrophes) causing blank page due to excessive history API calls (added debounce and duplicate URL check)

## 16.2.0

### Changes
Expand Down
49 changes: 26 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gamevault-frontend",
"version": "16.2.0",
"version": "16.2.1",
"description": "the self-hosted gaming platform for drm-free games",
"author": "Alkan Alper, Schäfer Philip GbR / Phalcode",
"private": true,
Expand All @@ -16,34 +16,37 @@
"postinstall": "rimraf ./src/api && openapi-generator-cli generate -g typescript-fetch -i https://gamevault.alfagun74.de/api/docs-yaml -o ./src/api --global-property models,supportingFiles -p enumPropertyNaming=snake_case -p modelPropertyNaming=snake_case"
},
"dependencies": {
"@headlessui/react": "^2.2.8",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@tailwindcss/vite": "^4.1.13",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"clsx": "^2.1.1",
"motion": "^12.23.15",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"motion": "^12.27.5",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"react-router": "^7.9.1",
"tailwindcss": "^4.1.13",
"react-router": "^7.12.0",
"tailwindcss": "^4.1.18",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@openapitools/openapi-generator-cli": "^2.23.4",
"@tauri-apps/cli": "2.8.4",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"eslint": "^9.35.0",
"@eslint/js": "^9.39.2",
"@openapitools/openapi-generator-cli": "^2.28.0",
"@tauri-apps/cli": "2.9.6",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"prettier": "3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"vite": "^7.1.6",
"vite-tsconfig-paths": "^5.1.4"
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"prettier": "3.8.0",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.4"
}
}
Loading