summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/ISSUE_TEMPLATE.md31
-rw-r--r--CONTRIBUTING.md2
-rw-r--r--Doxyfile4
-rw-r--r--src/common/CMakeLists.txt2
-rw-r--r--src/yuzu/configuration/configure.ui2
-rw-r--r--src/yuzu/configuration/configure_system.cpp4
-rw-r--r--src/yuzu/main.cpp18
-rw-r--r--src/yuzu/main.ui2
-rw-r--r--src/yuzu_cmd/CMakeLists.txt4
-rw-r--r--src/yuzu_cmd/yuzu.cpp4
10 files changed, 34 insertions, 39 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index ae11db988..986efcfb9 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -1,25 +1,20 @@
1<!--- 1<!--
2Please keep in mind yuzu is EXPERIMENTAL SOFTWARE.
2 3
3Please read the FAQ: 4Please read the FAQ: https://yuzu-emu.org/wiki/faq/
4https://citra-emu.org/wiki/faq/
5 5
6THIS IS NOT A SUPPORT FORUM, FOR SUPPORT GO TO: 6When submitting an issue, please do the following:
7https://community.citra-emu.org/
8 7
9If the FAQ does not answer your question, please go to: 8- Provide the version (commit hash) of yuzu you are using.
10https://community.citra-emu.org/ 9- Provide sufficient detail for the issue to be reproduced.
11 10- Provide:
12====================================================
13
14When submitting an issue, please check the following:
15
16- You have read the above.
17- You have provided the version (commit hash) of Citra you are using.
18- You have provided sufficient detail for the issue to be reproduced.
19- You have provided system specs (if relevant).
20- Please also provide:
21 - For crashes, a backtrace. 11 - For crashes, a backtrace.
22 - For graphical issues, comparison screenshots with real hardware. 12 - For graphical issues, comparison screenshots with real hardware.
23 - For emulation inaccuracies, a test-case (if able). 13 - For emulation inaccuracies, a test-case (if able).
14-->
15
16
17
18
19
24 20
25--->
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index bf59d7ddd..767bd23bf 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,6 +1,6 @@
1# Reporting Issues 1# Reporting Issues
2 2
3**The issue tracker is not a support forum.** Unless you can provide precise *technical information* regarding an issue, you *should not post in it*. If you need support, first read the [FAQ](https://github.com/citra-emu/citra/wiki/FAQ) and then either visit our IRC channel, [our forum](https://community.citra-emu.org) or ask in a general emulation forum such as [/r/emulation](https://www.reddit.com/r/emulation/). If you post support questions, generic messages to the developers or vague reports without technical details, they will be closed and locked. 3**The issue tracker is not a support forum.** Unless you can provide precise *technical information* regarding an issue, you *should not post in it*. If you need support, first read the [FAQ](https://github.com/yuzu-emu/yuzu/wiki/FAQ) and then either visit our Discord server, [our forum](https://community.citra-emu.org) or ask in a general emulation forum such as [/r/emulation](https://www.reddit.com/r/emulation/). If you post support questions, generic messages to the developers or vague reports without technical details, they will be closed and locked.
4 4
5If you believe you have a valid issue report, please post text or a screenshot from the log (the console window that opens alongside yuzu) and build version (hex string visible in the titlebar and zip filename), as well as your hardware and software information if applicable. 5If you believe you have a valid issue report, please post text or a screenshot from the log (the console window that opens alongside yuzu) and build version (hex string visible in the titlebar and zip filename), as well as your hardware and software information if applicable.
6 6
diff --git a/Doxyfile b/Doxyfile
index 6ddf2cf21..6686ab478 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
32# title of most generated pages and in a few other places. 32# title of most generated pages and in a few other places.
33# The default value is: My Project. 33# The default value is: My Project.
34 34
35PROJECT_NAME = Citra 35PROJECT_NAME = yuzu
36 36
37# The PROJECT_NUMBER tag can be used to enter a project or revision number. This 37# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
38# could be handy for archiving the generated documentation or if some version 38# could be handy for archiving the generated documentation or if some version
@@ -44,7 +44,7 @@ PROJECT_NUMBER =
44# for a project that appears at the top of each page and should give viewer a 44# for a project that appears at the top of each page and should give viewer a
45# quick idea about the purpose of the project. Keep the description short. 45# quick idea about the purpose of the project. Keep the description short.
46 46
47PROJECT_BRIEF = "Nintendo 3DS emulator/debugger" 47PROJECT_BRIEF = "Nintendo Switch emulator/debugger"
48 48
49# With the PROJECT_LOGO tag one can specify an logo or icon that is included in 49# With the PROJECT_LOGO tag one can specify an logo or icon that is included in
50# the documentation. The maximum height of the logo should not exceed 55 pixels 50# the documentation. The maximum height of the logo should not exceed 55 pixels
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 447d7198c..26cf9480b 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -8,7 +8,7 @@ if ($ENV{CI})
8 set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME}) 8 set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME})
9 endif() 9 endif()
10 # regex capture the string nightly or bleeding-edge into CMAKE_MATCH_1 10 # regex capture the string nightly or bleeding-edge into CMAKE_MATCH_1
11 string(REGEX MATCH "citra-emu/citra-?(.*)" OUTVAR ${BUILD_REPOSITORY}) 11 string(REGEX MATCH "yuzu-emu/yuzu-?(.*)" OUTVAR ${BUILD_REPOSITORY})
12 if (${CMAKE_MATCH_COUNT} GREATER 0) 12 if (${CMAKE_MATCH_COUNT} GREATER 0)
13 # capitalize the first letter of each word in the repo name. 13 # capitalize the first letter of each word in the repo name.
14 string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1}) 14 string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1})
diff --git a/src/yuzu/configuration/configure.ui b/src/yuzu/configuration/configure.ui
index 8b92a907c..babd583a2 100644
--- a/src/yuzu/configuration/configure.ui
+++ b/src/yuzu/configuration/configure.ui
@@ -11,7 +11,7 @@
11 </rect> 11 </rect>
12 </property> 12 </property>
13 <property name="windowTitle"> 13 <property name="windowTitle">
14 <string>Citra Configuration</string> 14 <string>yuzu Configuration</string>
15 </property> 15 </property>
16 <layout class="QVBoxLayout" name="verticalLayout"> 16 <layout class="QVBoxLayout" name="verticalLayout">
17 <item> 17 <item>
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp
index 00966266b..417afef87 100644
--- a/src/yuzu/configuration/configure_system.cpp
+++ b/src/yuzu/configuration/configure_system.cpp
@@ -64,8 +64,8 @@ void ConfigureSystem::updateBirthdayComboBox(int birthmonth_index) {
64 64
65void ConfigureSystem::refreshConsoleID() { 65void ConfigureSystem::refreshConsoleID() {
66 QMessageBox::StandardButton reply; 66 QMessageBox::StandardButton reply;
67 QString warning_text = tr("This will replace your current virtual 3DS with a new one. " 67 QString warning_text = tr("This will replace your current virtual Switch with a new one. "
68 "Your current virtual 3DS will not be recoverable. " 68 "Your current virtual Switch will not be recoverable. "
69 "This might have unexpected effects in games. This might fail, " 69 "This might have unexpected effects in games. This might fail, "
70 "if you use an outdated config savegame. Continue?"); 70 "if you use an outdated config savegame. Continue?");
71 reply = QMessageBox::critical(this, tr("Warning"), warning_text, 71 reply = QMessageBox::critical(this, tr("Warning"), warning_text,
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 2f41de3fe..99a62c432 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -122,13 +122,13 @@ void GMainWindow::InitializeWidgets() {
122 122
123 emu_speed_label = new QLabel(); 123 emu_speed_label = new QLabel();
124 emu_speed_label->setToolTip(tr("Current emulation speed. Values higher or lower than 100% " 124 emu_speed_label->setToolTip(tr("Current emulation speed. Values higher or lower than 100% "
125 "indicate emulation is running faster or slower than a 3DS.")); 125 "indicate emulation is running faster or slower than a Switch."));
126 game_fps_label = new QLabel(); 126 game_fps_label = new QLabel();
127 game_fps_label->setToolTip(tr("How many frames per second the game is currently displaying. " 127 game_fps_label->setToolTip(tr("How many frames per second the game is currently displaying. "
128 "This will vary from game to game and scene to scene.")); 128 "This will vary from game to game and scene to scene."));
129 emu_frametime_label = new QLabel(); 129 emu_frametime_label = new QLabel();
130 emu_frametime_label->setToolTip( 130 emu_frametime_label->setToolTip(
131 tr("Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For " 131 tr("Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For "
132 "full-speed emulation this should be at most 16.67 ms.")); 132 "full-speed emulation this should be at most 16.67 ms."));
133 133
134 for (auto& label : {emu_speed_label, game_fps_label, emu_frametime_label}) { 134 for (auto& label : {emu_speed_label, game_fps_label, emu_frametime_label}) {
@@ -326,7 +326,7 @@ bool GMainWindow::LoadROM(const QString& filename) {
326 QMessageBox::critical( 326 QMessageBox::critical(
327 this, tr("Error while loading ROM!"), 327 this, tr("Error while loading ROM!"),
328 tr("The game that you are trying to load must be decrypted before being used with " 328 tr("The game that you are trying to load must be decrypted before being used with "
329 "Citra. A real 3DS is required.<br/><br/>" 329 "yuzu. A real Switch is required.<br/><br/>"
330 "For more information on dumping and decrypting games, please see the following " 330 "For more information on dumping and decrypting games, please see the following "
331 "wiki pages: <ul>" 331 "wiki pages: <ul>"
332 "<li><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Dumping Game " 332 "<li><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Dumping Game "
@@ -344,7 +344,7 @@ bool GMainWindow::LoadROM(const QString& filename) {
344 case Core::System::ResultStatus::ErrorVideoCore: 344 case Core::System::ResultStatus::ErrorVideoCore:
345 QMessageBox::critical( 345 QMessageBox::critical(
346 this, tr("An error occured in the video core."), 346 this, tr("An error occured in the video core."),
347 tr("Citra has encountered an error while running the video core, please see the " 347 tr("yuzu has encountered an error while running the video core, please see the "
348 "log for more details." 348 "log for more details."
349 "For more information on accessing the log, please see the following page: " 349 "For more information on accessing the log, please see the following page: "
350 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How " 350 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How "
@@ -649,7 +649,7 @@ void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string det
649 default: 649 default:
650 answer = QMessageBox::question( 650 answer = QMessageBox::question(
651 this, tr("Fatal Error"), 651 this, tr("Fatal Error"),
652 tr("Citra has encountered a fatal error, please see the log for more details. " 652 tr("yuzu has encountered a fatal error, please see the log for more details. "
653 "For more information on accessing the log, please see the following page: " 653 "For more information on accessing the log, please see the following page: "
654 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How to " 654 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How to "
655 "Upload the Log File</a>.<br/><br/>Would you like to quit back to the game list? " 655 "Upload the Log File</a>.<br/><br/>Would you like to quit back to the game list? "
@@ -677,7 +677,7 @@ bool GMainWindow::ConfirmClose() {
677 return true; 677 return true;
678 678
679 QMessageBox::StandardButton answer = 679 QMessageBox::StandardButton answer =
680 QMessageBox::question(this, tr("Citra"), tr("Are you sure you want to close Citra?"), 680 QMessageBox::question(this, tr("yuzu"), tr("Are you sure you want to close yuzu?"),
681 QMessageBox::Yes | QMessageBox::No, QMessageBox::No); 681 QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
682 return answer != QMessageBox::No; 682 return answer != QMessageBox::No;
683} 683}
@@ -741,7 +741,7 @@ bool GMainWindow::ConfirmChangeGame() {
741 return true; 741 return true;
742 742
743 auto answer = QMessageBox::question( 743 auto answer = QMessageBox::question(
744 this, tr("Citra"), 744 this, tr("yuzu"),
745 tr("Are you sure you want to stop the emulation? Any unsaved progress will be lost."), 745 tr("Are you sure you want to stop the emulation? Any unsaved progress will be lost."),
746 QMessageBox::Yes | QMessageBox::No, QMessageBox::No); 746 QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
747 return answer != QMessageBox::No; 747 return answer != QMessageBox::No;
@@ -764,8 +764,8 @@ int main(int argc, char* argv[]) {
764 SCOPE_EXIT({ MicroProfileShutdown(); }); 764 SCOPE_EXIT({ MicroProfileShutdown(); });
765 765
766 // Init settings params 766 // Init settings params
767 QCoreApplication::setOrganizationName("Citra team"); 767 QCoreApplication::setOrganizationName("yuzu team");
768 QCoreApplication::setApplicationName("Citra"); 768 QCoreApplication::setApplicationName("yuzu");
769 769
770 QApplication::setAttribute(Qt::AA_X11InitThreads); 770 QApplication::setAttribute(Qt::AA_X11InitThreads);
771 QApplication app(argc, argv); 771 QApplication app(argc, argv);
diff --git a/src/yuzu/main.ui b/src/yuzu/main.ui
index 234e90c3c..dde8514a5 100644
--- a/src/yuzu/main.ui
+++ b/src/yuzu/main.ui
@@ -11,7 +11,7 @@
11 </rect> 11 </rect>
12 </property> 12 </property>
13 <property name="windowTitle"> 13 <property name="windowTitle">
14 <string>Citra</string> 14 <string>yuzu</string>
15 </property> 15 </property>
16 <property name="windowIcon"> 16 <property name="windowIcon">
17 <iconset> 17 <iconset>
diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt
index 802e060f4..433e210b0 100644
--- a/src/yuzu_cmd/CMakeLists.txt
+++ b/src/yuzu_cmd/CMakeLists.txt
@@ -28,8 +28,8 @@ if(UNIX AND NOT APPLE)
28endif() 28endif()
29 29
30if (MSVC) 30if (MSVC)
31 include(CopyCitraSDLDeps) 31 include(CopyYuzuSDLDeps)
32 include(CopyYuzuUnicornDeps) 32 include(CopyYuzuUnicornDeps)
33 copy_citra_SDL_deps(yuzu-cmd) 33 copy_yuzu_SDL_deps(yuzu-cmd)
34 copy_yuzu_unicorn_deps(yuzu-cmd) 34 copy_yuzu_unicorn_deps(yuzu-cmd)
35endif() 35endif()
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index 5efbf3910..785d96672 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -47,7 +47,7 @@ static void PrintHelp(const char* argv0) {
47} 47}
48 48
49static void PrintVersion() { 49static void PrintVersion() {
50 std::cout << "Citra " << Common::g_scm_branch << " " << Common::g_scm_desc << std::endl; 50 std::cout << "yuzu " << Common::g_scm_branch << " " << Common::g_scm_desc << std::endl;
51} 51}
52 52
53/// Application entry point 53/// Application entry point
@@ -146,7 +146,7 @@ int main(int argc, char** argv) {
146 return -1; 146 return -1;
147 case Core::System::ResultStatus::ErrorLoader_ErrorEncrypted: 147 case Core::System::ResultStatus::ErrorLoader_ErrorEncrypted:
148 LOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before " 148 LOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before "
149 "being used with Citra. \n\n For more information on dumping and " 149 "being used with yuzu. \n\n For more information on dumping and "
150 "decrypting games, please refer to: " 150 "decrypting games, please refer to: "
151 "https://citra-emu.org/wiki/dumping-game-cartridges/"); 151 "https://citra-emu.org/wiki/dumping-game-cartridges/");
152 return -1; 152 return -1;