From b55e135f588517d7b8b1a6ed6e2bddaa0d31b2e7 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 11 May 2024 22:10:20 +0200 Subject: [PATCH 1/2] Change default CWD to `/` to fix access to any non-sd card directory for some ftp clients --- include/ftpSession.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ftpSession.h b/include/ftpSession.h index 33829d2..807803c 100644 --- a/include/ftpSession.h +++ b/include/ftpSession.h @@ -238,7 +238,7 @@ class FtpSession SockAddr m_portAddr; /// \brief Current working directory - std::string m_cwd = "/fs/vol/external01/"; + std::string m_cwd = "/"; /// \brief List working directory std::string m_lwd; From 47c6fbaff430faef4f3229d12d56b639857b0bde Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 11 May 2024 22:19:00 +0200 Subject: [PATCH 2/2] Bump version to 0.4.2 --- source/wiiu/platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/wiiu/platform.cpp b/source/wiiu/platform.cpp index d92add3..765a4b3 100644 --- a/source/wiiu/platform.cpp +++ b/source/wiiu/platform.cpp @@ -42,7 +42,7 @@ #ifndef CLASSIC #error "Wii U must be built in classic mode" #endif -#define VERSION "v0.4.1" +#define VERSION "v0.4.2" #define VERSION_FULL VERSION VERSION_EXTRA WUPS_PLUGIN_NAME ("ftpiiu");