aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/pnpm-lock.yaml
Commit message (Collapse)AuthorAgeFilesLines
* chore: update @tauri-apps/plugin-dialog version in pnpm-lock.yamlHsiangNianian2026-01-161-5/+5
| | | | Bumped the version of @tauri-apps/plugin-dialog from 2.5.0 to 2.6.0 in pnpm-lock.yaml to align with the latest dependency updates.
* feat: add prismjs dependency and update TypeScript configurationHsiangNianian2026-01-161-0/+37
| | | | Added the prismjs library for syntax highlighting and its corresponding type definitions. Updated the TypeScript configuration to use "bundler" for module resolution, enhancing compatibility with modern module systems. This update improves the development experience and supports better code presentation.
* chore: add UI linter workflow with oxlint and oxfmtNtskwK2026-01-161-0/+179
|
* chore(deps-dev): bump sveltedependabot[bot]2026-01-161-18/+18
| | | | | | | | | | | | | | | | | | | Bumps the npm_and_yarn group with 1 update in the /ui directory: [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte). Updates `svelte` from 5.46.3 to 5.46.4 - [Release notes](https://github.com/sveltejs/svelte/releases) - [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md) - [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.46.4/packages/svelte) --- updated-dependencies: - dependency-name: svelte dependency-version: 5.46.4 dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
* chore(deps): bump devaluedependabot[bot]2026-01-151-16/+4
| | | | | | | | | | | | | | | | | | | Bumps the npm_and_yarn group with 1 update in the /ui directory: [devalue](https://github.com/sveltejs/devalue). Updates `devalue` from 5.6.1 to 5.6.2 - [Release notes](https://github.com/sveltejs/devalue/releases) - [Changelog](https://github.com/sveltejs/devalue/blob/main/CHANGELOG.md) - [Commits](https://github.com/sveltejs/devalue/compare/v5.6.1...v5.6.2) --- updated-dependencies: - dependency-name: devalue dependency-version: 5.6.2 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
* chore: Add @tauri-apps/plugin-fs version 2.4.5 to package.json and update ↵HsiangNianian2026-01-151-0/+10
| | | | pnpm-lock.yaml
* chore: Update package dependencies in package.json and lock files, adding ↵HsiangNianian2026-01-151-0/+67
| | | | lucide-svelte, marked, and node-emoji
* feat: Enhance UI components and add visual effectsHsiangNianian2026-01-141-0/+10
| | | | | | | | | - Updated Sidebar component styles for improved aesthetics and usability. - Refactored VersionsView component with a new layout and enhanced version filtering. - Improved DownloadMonitor and GameConsole components for better performance and visual consistency. - Added new settings for GPU acceleration and visual effects in settings store. - Introduced ParticleBackground component with customizable effects (Constellation and Saturn). - Implemented ConstellationEffect and SaturnEffect classes for dynamic background animations.
* feat: Initialize Svelte application with Tailwind CSS and Tauri integrationHsiangNianian2026-01-131-0/+1072
- Added main application structure in App.svelte with a sidebar and main content area. - Implemented game launch functionality using Tauri's invoke API. - Included SVG icons for Vite and Svelte in the assets. - Set up Tailwind CSS for styling in app.css. - Created a Counter component for demonstration purposes. - Configured TypeScript support with appropriate tsconfig files. - Established Vite configuration for building the application.