Skip to content

Commit 978fb34

Browse files
committed
v1.0.4
Full French & Italian menu support
1 parent aa832a4 commit 978fb34

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Library/Sources/CTRPluginFrameworkImpl/Menu/PluginMenuHome.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ namespace CTRPluginFramework {
447447

448448
// Draw version if on default page
449449
if (folder->name == pluginName)
450-
Renderer::DrawString("Version: 1.0.3b", 158, posY2, Color::Gray);
450+
Renderer::DrawString("Version: 1.0.4", 158, posY2, Color::Gray);
451451

452452
else Renderer::DrawString("Multi-Pokemon Framework", 132, posY2, Color::Gray);
453453

Library/Sources/CTRPluginFrameworkImpl/Menu/PluginMenuTools.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,8 +647,8 @@ namespace CTRPluginFramework {
647647
static Clock clock;
648648
static bool timesup = true;
649649

650-
static const char version[] = "Version: 1.0.3b";
651-
static const char compiled[] = "Compiled: July 1, 2023";
650+
static const char version[] = "Version: 1.0.4";
651+
static const char compiled[] = "Compiled: August 11, 2023";
652652
const char *info[3] = {SystemModel().c_str(), InternetAccess().c_str(), CurrentTime().c_str()};
653653

654654
{

Library/lib/libctrpf.a

0 Bytes
Binary file not shown.

Sources/Helpers/Helpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace CTRPluginFramework {
3939
return false;
4040
}
4141

42-
Lang currLang = Lang::ITA;
42+
Lang currLang = Lang::ENG;
4343

4444
void LangFile(Lang lang) {
4545
File file(path + "/Lang.txt");

Sources/Main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ namespace CTRPluginFramework {
7373
}
7474

7575
int main(void) {
76-
PluginMenu* menu = new PluginMenu("Multi-Pokémon Framework", 1, 0, 0, language("Multi-Pokémon Framework is a plugin developed by semaj14 that uses the CTRPluginFramework library by The Pixellizer Group.\n\nThis plugin is a work in progress as well as a learning exercise.\n\nFor more info, visit the official GitHub page.",
77-
"Multi-Pokémon Framework est un plugin développé par semaj14 qui utilise la base de données CTRPluginFramework de The Pixellizer Group.\n\nCe plugin est un travail en cours ainsi qu'un exercice d'apprentissage.\n\nPour plus d'informations, visitez la page GitHub officielle.",
76+
PluginMenu* menu = new PluginMenu("Multi-Pokémon Framework", 1, 0, 0, language("Multi-Pokémon Framework is a plugin developed by semaj14 that uses the CTRPluginFramework library by The Pixellizer Group.\n\nThis plugin is a work in progress as well as a learning exercise.\n\nFor more info, visit the official GitHub page.",
77+
"Multi-Pokémon Framework est un plugin développé par semaj14 qui utilise la base de données CTRPluginFramework de The Pixellizer Group.\n\nCe plugin est un travail en cours ainsi qu'un exercice d'apprentissage.\n\nPour plus d'informations, visitez la page GitHub officielle.",
7878
"Multi-Pokémon Framework è un plugin sviluppato da semaj14 che utilizza la libreria CTRPluginFramework di The Pixellizer Group.\n\nQuesto plugin è un lavoro in corso e un esercizio di apprendimento. \n\nPer ulteriori informazioni, visitare la pagina GitHub ufficiale."));
7979
menu->ShowWelcomeMessage(false);
8080
menu->SynchronizeWithFrame(true);

0 commit comments

Comments
 (0)