mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
Changed the order of two entries in GuiScraperMenu.
This commit is contained in:
parent
46520202f7
commit
e310066f34
10
USERGUIDE.md
10
USERGUIDE.md
|
@ -542,16 +542,16 @@ The region to scrape for, affects game names.
|
|||
|
||||
Currently only English or World are supported, not really significant at the moment.
|
||||
|
||||
**Overwrite files and data**
|
||||
|
||||
Affects both overwriting of metadata as well as actual game media files on the filesystem.
|
||||
|
||||
**Search using metadata name**
|
||||
|
||||
By default ES will perform scraper searches based on the game name that has been manually set in the metadata editor, or that has been previously scraped. If you prefer to search using the physical name of the game file or directory, then turn off this option. The default game name will correspond to the name of the physical file or directory, so for the first scraping of any given game, this option makes no difference.
|
||||
|
||||
Note that when using TheGamesDB as scraper service for arcade games (MAME/Neo Geo), the short MAME name will always be expanded to the full game name as this scraper does not properly support searches using MAME names. Also note that you need to save the game name in the metadata editor before you can use it for scraping.
|
||||
|
||||
**Overwrite files and data**
|
||||
|
||||
Affects both overwriting of metadata as well as actual game media files on the filesystem.
|
||||
|
||||
**Interactive mode**
|
||||
|
||||
If turned off, the scraping will be fully automatic and will not stop on multiple results or on missing games.
|
||||
|
@ -1049,7 +1049,7 @@ Any changes to custom collections (for example adding or removing a game) will b
|
|||
|
||||
Note that if you for example copy or migrate a collection from a previous version of EmulationStation or if you're setting up EmulationStation Desktop Edition on a new computer, even though you copy the files into the collections directory, they will not show up in the application. You always need to enable the collection in the menu. ES looks inside the es_settings.cfg file during startup to see which collections should be shown.
|
||||
|
||||
If you're migrating from a previous version of EmulationStation that has absolute paths in the collection files, these will be rewritten with the %ROMPATH% variable the first time you make a change to the collection. Be aware though that if at this time the ROM was not found by ES, the corresponding entry in the collections file will be deleted.
|
||||
If you're migrating from a previous version of EmulationStation that has absolute paths in the collection files, these will be rewritten with the %ROMPATH% variable the first time you make a change to the collection.
|
||||
|
||||
|
||||
## Themes
|
||||
|
|
|
@ -266,6 +266,13 @@ void GuiScraperMenu::openOtherSettings()
|
|||
scraper_language->getParent()->getChildCount()-2)->setOpacity(DISABLED_OPACITY);
|
||||
}
|
||||
|
||||
// Overwrite files and data.
|
||||
auto scrape_overwrite = std::make_shared<SwitchComponent>(mWindow);
|
||||
scrape_overwrite->setState(Settings::getInstance()->getBool("ScraperOverwriteData"));
|
||||
s->addWithLabel("OVERWRITE FILES AND DATA", scrape_overwrite);
|
||||
s->addSaveFunc([scrape_overwrite] { Settings::getInstance()->setBool("ScraperOverwriteData",
|
||||
scrape_overwrite->getState()); });
|
||||
|
||||
// Search using metadata name.
|
||||
auto scrape_metadata_name = std::make_shared<SwitchComponent>(mWindow);
|
||||
scrape_metadata_name->setState(Settings::getInstance()->getBool("ScraperSearchMetadataName"));
|
||||
|
@ -274,13 +281,6 @@ void GuiScraperMenu::openOtherSettings()
|
|||
Settings::getInstance()->setBool("ScraperSearchMetadataName",
|
||||
scrape_metadata_name->getState()); });
|
||||
|
||||
// Overwrite files and data.
|
||||
auto scrape_overwrite = std::make_shared<SwitchComponent>(mWindow);
|
||||
scrape_overwrite->setState(Settings::getInstance()->getBool("ScraperOverwriteData"));
|
||||
s->addWithLabel("OVERWRITE FILES AND DATA", scrape_overwrite);
|
||||
s->addSaveFunc([scrape_overwrite] { Settings::getInstance()->setBool("ScraperOverwriteData",
|
||||
scrape_overwrite->getState()); });
|
||||
|
||||
// Interactive scraping.
|
||||
auto scraper_interactive = std::make_shared<SwitchComponent>(mWindow);
|
||||
scraper_interactive->setState(Settings::getInstance()->getBool("ScraperInteractive"));
|
||||
|
|
Loading…
Reference in a new issue