diff --git a/backend/config/config_manager.py b/backend/config/config_manager.py index 594c93f86..da7be7e7b 100644 --- a/backend/config/config_manager.py +++ b/backend/config/config_manager.py @@ -682,6 +682,7 @@ class ConfigManager: "filesystem": { "roms_folder": self.config.ROMS_FOLDER_NAME, "firmware_folder": self.config.FIRMWARE_FOLDER_NAME, + "skip_hash_calculation": self.config.SKIP_HASH_CALCULATION, }, "system": { "platforms": self.config.PLATFORMS_BINDING, diff --git a/frontend/src/components/Home/ContinuePlaying.vue b/frontend/src/components/Home/ContinuePlaying.vue index 59f8b1308..788932207 100644 --- a/frontend/src/components/Home/ContinuePlaying.vue +++ b/frontend/src/components/Home/ContinuePlaying.vue @@ -80,7 +80,6 @@ function onClosedMenu() { show-action-bar show-chips :enable3-d-tilt="enable3DEffect" - force-boxart="cover_path" @hover="onHover" @focus="onHover" @openedmenu="onOpenedMenu" diff --git a/frontend/src/components/Home/RecentAdded.vue b/frontend/src/components/Home/RecentAdded.vue index 21f3e6e45..2c965a781 100644 --- a/frontend/src/components/Home/RecentAdded.vue +++ b/frontend/src/components/Home/RecentAdded.vue @@ -84,7 +84,6 @@ function onClosedMenu() { show-chips show-action-bar :enable3-d-tilt="enable3DEffect" - force-boxart="cover_path" @hover="onHover" @focus="onHover" @openedmenu="onOpenedMenu" diff --git a/frontend/src/components/common/Game/Card/Base.vue b/frontend/src/components/common/Game/Card/Base.vue index dbf7d7ba6..3ebf78154 100644 --- a/frontend/src/components/common/Game/Card/Base.vue +++ b/frontend/src/components/common/Game/Card/Base.vue @@ -311,7 +311,7 @@ onBeforeUnmount(() => { v-if=" isOuterHovering || showGameTitleAlways || - (romsStore.isSimpleRom(rom) && !rom.path_cover_large) || + (romsStore.isSimpleRom(rom) && !largeCover) || (!romsStore.isSimpleRom(rom) && !rom.igdb_url_cover && !rom.moby_url_cover &&