Skip to content

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
Full French & Italian menu support
  • Loading branch information
semaj14 committed Aug 12, 2023
1 parent aa832a4 commit 978fb34
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ namespace CTRPluginFramework {

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -647,8 +647,8 @@ namespace CTRPluginFramework {
static Clock clock;
static bool timesup = true;

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

{
Expand Down
Binary file modified Library/lib/libctrpf.a
Binary file not shown.
2 changes: 1 addition & 1 deletion Sources/Helpers/Helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace CTRPluginFramework {
return false;
}

Lang currLang = Lang::ITA;
Lang currLang = Lang::ENG;

void LangFile(Lang lang) {
File file(path + "/Lang.txt");
Expand Down
4 changes: 2 additions & 2 deletions Sources/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ namespace CTRPluginFramework {
}

int main(void) {
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.",
"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.",
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.",
"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.",
"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."));
menu->ShowWelcomeMessage(false);
menu->SynchronizeWithFrame(true);
Expand Down

0 comments on commit 978fb34

Please sign in to comment.