mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-19 01:03:57 +00:00
- Added `LibraryGameCardLarge` component for displaying games in a larger format with improved styling and animations. - Introduced SCSS styles for the large game card, including hover effects and gradient overlays. - Updated `LibraryGameCard` component to support mouse enter and leave events for better interaction. - Enhanced the library view options with new styles and functionality for switching between grid, compact, and large views. - Improved overall layout and responsiveness of the library page, ensuring a better user experience across different screen sizes. - Added tooltips for playtime information and context menus for game actions.
9 lines
247 B
TypeScript
9 lines
247 B
TypeScript
import { registerEvent } from "../register-event";
|
|
import { mergeWithRemoteGames } from "@main/services";
|
|
|
|
const refreshLibraryAssets = async () => {
|
|
await mergeWithRemoteGames();
|
|
};
|
|
|
|
registerEvent("refreshLibraryAssets", refreshLibraryAssets);
|