aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/package.json
Commit message (Collapse)AuthorAgeFilesLines
* chore: update plugin-dialog dependency versions in Cargo.toml and package.jsonHsiangNianian2026-01-161-1/+1
| | | | Bumped the version of tauri-plugin-dialog in Cargo.toml and @tauri-apps/plugin-dialog in package.json from 2.5.0 to 2.6.0 to incorporate the latest features and improvements.
* feat: add prismjs dependency and update TypeScript configurationHsiangNianian2026-01-161-1/+3
| | | | 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.
* style: auto format and lint fix [skip ci]HsiangNianian2026-01-161-10/+10
|
* chore: add UI linter workflow with oxlint and oxfmtNtskwK2026-01-161-1/+6
|
* chore(deps-dev): bump sveltedependabot[bot]2026-01-161-1/+1
| | | | | | | | | | | | | | | | | | | 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(lint): fix code lint苏向夜2026-01-151-37/+37
|
* chore(vscode): move `.vscode` to project root苏向夜2026-01-151-37/+37
|
* chore: Add @tauri-apps/plugin-fs version 2.4.5 to package.json and update ↵HsiangNianian2026-01-151-0/+1
| | | | pnpm-lock.yaml
* chore: Update package dependencies in package.json and lock files, adding ↵HsiangNianian2026-01-151-1/+4
| | | | lucide-svelte, marked, and node-emoji
* feat: Enhance UI components and add visual effectsHsiangNianian2026-01-141-0/+1
| | | | | | | | | - 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/+34
- 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.