aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/src/App.svelte
Commit message (Collapse)AuthorAgeFilesLines
* chore(ui): refactor workspace to monorepo苏向夜2026-01-191-217/+0
|
* refactor: move version refresh logic to App.svelte and clean up GameState ↵HsiangNianian2026-01-181-0/+9
| | | | constructor
* feat: add InstancesView component and integrate instance management into the UIHsiangNianian2026-01-161-0/+5
| | | | Introduced a new InstancesView component for managing game instances, allowing users to create, edit, delete, and duplicate instances. Updated the App.svelte to include the InstancesView and modified various components to ensure instance selection is handled correctly. Enhanced the ModLoaderSelector and VersionsView to check for active instances before performing actions. Updated the Sidebar to include navigation to the new InstancesView.
* feat: add assistant view and configuration editor componentsHsiangNianian2026-01-161-11/+10
| | | | Introduced a new AssistantView component for enhanced interaction with the AI assistant, allowing users to send messages and receive responses. Implemented a ConfigEditorModal for editing configuration files with JSON validation and history management. Updated the App component to integrate these new features, improving user experience and functionality in managing AI settings.
* feat: Implement logout confirmation dialog and enhance account status ↵HsiangNianian2026-01-151-0/+26
| | | | display in BottomBar for improved user experience
* refactor: Clean up imports and enhance GameConsole display with conditional ↵HsiangNianian2026-01-151-6/+8
| | | | rendering and improved styling
* feat(java): Implement Java catalog management and download featuresBegonia, HE2026-01-151-12/+11
| | | | | | | | - Added commands to fetch and refresh the Java catalog, cancel downloads, and manage pending downloads. - Enhanced the Java download modal in the UI to support version selection, download progress, and pending downloads. - Introduced new types for Java catalog, download progress, and pending downloads. - Updated settings store to handle Java catalog state, download progress, and pending downloads. - Improved user experience with loading states, error handling, and status notifications for Java installations.
* fix(ui): correct styling bugs and code quality issuesBegonia, HE2026-01-141-1/+1
| | | | | | - Fix missing h- prefix in VersionsView height class (-40 → h-40) - Correct typo in SaturnEffect comment (Warn → Warm White) - Remove double space in App.svelte class attribute
* feat: enforce dark mode by always applying 'dark' class and attributeHsiangNianian2026-01-141-7/+8
|
* feat: enhance dark mode support across UI componentsHsiangNianian2026-01-141-11/+28
| | | | | | | | - Updated BottomBar, HomeView, LoginModal, ModLoaderSelector, SettingsView, Sidebar, StatusToast, and VersionsView components for improved dark mode styling. - Adjusted color schemes for various elements to ensure better visibility and aesthetics in dark mode. - Added a theme property to settings to enforce dark mode as the default. - Refactored version badges in VersionsView for better color differentiation. - Enhanced button and input styles for consistency in both light and dark themes.
* feat: Enhance UI components and add visual effectsHsiangNianian2026-01-141-25/+120
| | | | | | | | | - 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.
* refactor: split App.svelte into componentsNatsuu2026-01-141-763/+30
|
* feat: update home background to use gradient fallback for improved aestheticsHsiangNianian2026-01-141-2/+2
|
* feat: implement Microsoft account token refresh and storage management; add ↵HsiangNianian2026-01-131-1/+63
| | | | Java detection functionality
* feat: integrate version retrieval and display in the appHsiangNianian2026-01-131-1/+4
|
* feat: enhance Microsoft login flow with status updates and polling managementHsiangNianian2026-01-131-6/+13
|
* refactor: clean up comments and improve code formatting in authentication ↵HsiangNianian2026-01-131-155/+268
| | | | and login UI
* feat: update Microsoft account client ID and enhance login UX with clipboard ↵HsiangNianian2026-01-131-5/+14
| | | | and auto-open functionality
* feat: implement Microsoft account login flow and refactor account handlingHsiangNianian2026-01-131-20/+150
|
* feat: enhance DownloadMonitor with improved event handling and UI updatesHsiangNianian2026-01-131-163/+359
|
* feat: implement navigation and status management in App.svelteHsiangNianian2026-01-131-8/+75
|
* feat: add game console component for logging game output and toggle visibilityHsiangNianian2026-01-131-12/+22
|
* feat: implement download functionality with progress monitoring and version ↵HsiangNianian2026-01-131-5/+22
| | | | management
* feat: add offline account management and version fetching functionalityHsiangNianian2026-01-131-8/+77
|
* feat: enhance window dimensions and layout in the applicationHsiangNianian2026-01-131-11/+15
|
* feat: Initialize Svelte application with Tailwind CSS and Tauri integrationHsiangNianian2026-01-131-0/+110
- 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.