diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 21eac6cb0..45795265d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,7 +72,7 @@ This plan is under constant review so expect it to change from time to time. Sti #### v2.1 -* Migration tools for importing game metadata and media from other front-end applications +* Migration tools for importing game metadata and media from other frontend applications * Auto-import tools for Steam, Lutris etc. To see which features have been implemented in previous versions, please refer to [CHANGELOG.md](CHANGELOG.md). diff --git a/README.md b/README.md index 6e5ee414c..818233cf1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # EmulationStation Desktop Edition (ES-DE) -EmulationStation Desktop Edition is a front-end for browsing and launching games from your multi-platform game collection. +EmulationStation Desktop Edition is a frontend for browsing and launching games from your multi-platform game collection. Web site:\ [https://es-de.org](https://es-de.org) diff --git a/USERGUIDE-DEV.md b/USERGUIDE-DEV.md index 75f829aa4..ea57304fd 100644 --- a/USERGUIDE-DEV.md +++ b/USERGUIDE-DEV.md @@ -561,7 +561,7 @@ This of course assumes that you have menu entries setup for your Steam games. ## RetroArch setup -ES-DE is a game browsing front-end and does not provide any emulation by itself. It does however come preconfigured for use with emulators as setup in the `es_systems.xml` file. By default it's primarily setup for use with [RetroArch](https://www.retroarch.com) but this can be modified if needed. If you're interested in customizing your es_systems.xml file, please refer to the [INSTALL-DEV.md](INSTALL-DEV.md#es_systemsxml) document which goes into details on the structure of this file and more advanced configuration topics in general. +ES-DE is a game browsing frontend and does not provide any emulation by itself. It does however come preconfigured for use with emulators as setup in the `es_systems.xml` file. By default it's primarily setup for use with [RetroArch](https://www.retroarch.com) but this can be modified if needed. If you're interested in customizing your es_systems.xml file, please refer to the [INSTALL-DEV.md](INSTALL-DEV.md#es_systemsxml) document which goes into details on the structure of this file and more advanced configuration topics in general. Installation and configuration of RetroArch and other emulators is beyond the scope of this guide, but many good resources can be found online on how to do this. diff --git a/USERGUIDE.md b/USERGUIDE.md index 511835245..23f944879 100644 --- a/USERGUIDE.md +++ b/USERGUIDE.md @@ -559,7 +559,7 @@ This of course assumes that you have menu entries setup for your Steam games. ## RetroArch setup -ES-DE is a game browsing front-end and does not provide any emulation by itself. It does however come preconfigured for use with emulators as setup in the `es_systems.xml` file. By default it's primarily setup for use with [RetroArch](https://www.retroarch.com) but this can be modified if needed. If you're interested in customizing your es_systems.xml file, please refer to the [INSTALL.md](INSTALL.md#es_systemsxml) document which goes into details on the structure of this file and more advanced configuration topics in general. +ES-DE is a game browsing frontend and does not provide any emulation by itself. It does however come preconfigured for use with emulators as setup in the `es_systems.xml` file. By default it's primarily setup for use with [RetroArch](https://www.retroarch.com) but this can be modified if needed. If you're interested in customizing your es_systems.xml file, please refer to the [INSTALL.md](INSTALL.md#es_systemsxml) document which goes into details on the structure of this file and more advanced configuration topics in general. Installation and configuration of RetroArch and other emulators is beyond the scope of this guide, but many good resources can be found online on how to do this. diff --git a/es-app/CMakeLists.txt b/es-app/CMakeLists.txt index ab318c60a..d2202eb0b 100644 --- a/es-app/CMakeLists.txt +++ b/es-app/CMakeLists.txt @@ -259,8 +259,8 @@ include(InstallRequiredSystemLibraries) # General CPack settings. set(CPACK_PACKAGE_NAME "emulationstation-de") -set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Emulator front-end") -set(CPACK_PACKAGE_DESCRIPTION "EmulationStation Desktop Edition (ES-DE) is a front-end for browsing and launching games from your multi-platform game collection. +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Emulator frontend") +set(CPACK_PACKAGE_DESCRIPTION "EmulationStation Desktop Edition (ES-DE) is a frontend for browsing and launching games from your multi-platform game collection. It's intended to be used in conjunction with emulators such as the RetroArch cores.") if(APPLE) diff --git a/es-app/assets/emulationstation.6.gz b/es-app/assets/emulationstation.6.gz index 2fbe8f1fa..881b2a3a1 100644 Binary files a/es-app/assets/emulationstation.6.gz and b/es-app/assets/emulationstation.6.gz differ diff --git a/es-app/assets/emulationstation.desktop b/es-app/assets/emulationstation.desktop index c96fbfcf3..c8717a077 100644 --- a/es-app/assets/emulationstation.desktop +++ b/es-app/assets/emulationstation.desktop @@ -1,13 +1,13 @@ [Desktop Entry] Version=1.2.0-alpha Name=EmulationStation Desktop Edition -GenericName=Emulator Front-end +GenericName=Emulator Frontend Type=Application -Comment=Emulator Front-end +Comment=Emulator Frontend Icon=emulationstation Exec=emulationstation Terminal=false StartupNotify=true Hidden=false -Keywords=emulator;front-end;frontend; +Keywords=emulator;emulation;front-end;frontend; Categories=Game;Emulator; diff --git a/es-app/src/main.cpp b/es-app/src/main.cpp index ea023c41b..fe243b8ae 100644 --- a/es-app/src/main.cpp +++ b/es-app/src/main.cpp @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT // -// EmulationStation Desktop Edition (ES-DE) is a front-end for browsing +// EmulationStation Desktop Edition (ES-DE) is a frontend for browsing // and launching games from your multi-platform game collection. // // Originally created by Alec Lofquist. @@ -357,7 +357,7 @@ bool parseArgs(int argc, char* argv[]) std::cout << // clang-format off "Usage: emulationstation [options]\n" -"EmulationStation Desktop Edition, Emulator Front-end\n\n" +"EmulationStation Desktop Edition, Emulator Frontend\n\n" "Options:\n" " --display [index 1-4] Display/monitor to use\n" " --resolution [width] [height] Application resolution\n" diff --git a/tools/generate_man_page.sh b/tools/generate_man_page.sh index f6b714b34..15d73d61e 100755 --- a/tools/generate_man_page.sh +++ b/tools/generate_man_page.sh @@ -29,7 +29,7 @@ MAN_INCLUDE=" emulationstation - EmulationStation Desktop Edition [DESCRIPTION] -EmulationStation Desktop Edition (ES-DE) is a front-end for browsing and launching games from your multi-platform game collection. +EmulationStation Desktop Edition (ES-DE) is a frontend for browsing and launching games from your multi-platform game collection. It's intended to be used in conjunction with emulators such as the RetroArch cores.