Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ITotalJustice committed Nov 27, 2024
1 parent 95749e5 commit c412ad9
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13)

project(ftpsrv
LANGUAGES C
VERSION 0.1.0
VERSION 0.1.1
DESCRIPTION "small and fast ftp server"
)

Expand Down
2 changes: 1 addition & 1 deletion src/ftpsrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ static void ftp_cmd_STAT(struct FtpSession* session, const char* data) {

// HELP <CRLF> | 211, 214, 500, 501, 502, 421
static void ftp_cmd_HELP(struct FtpSession* session, const char* data) {
ftp_client_msg(session, "214 ftpsrv 0.1.0 By TotalJustice.");
ftp_client_msg(session, "214 ftpsrv 0.1.1 By TotalJustice.");
}

// NOOP <CRLF> | 200, 500, 421
Expand Down
2 changes: 1 addition & 1 deletion src/platform/3ds/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ int main(void) {
gfxInitDefault();
consoleInit(GFX_TOP, &topScreen);
consoleInit(GFX_BOTTOM, &bottomScreen);
consolePrint("\n[ftpsrv 0.1.0 By TotalJustice]\n\n");
consolePrint("\n[ftpsrv 0.1.1 By TotalJustice]\n\n");

g_ftpsrv_config.log_callback = ftp_log_callback;
g_ftpsrv_config.anon = ini_getl("Login", "anon", 0, INI_PATH);
Expand Down
2 changes: 1 addition & 1 deletion src/platform/nds/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ int main(void) {
consoleInit(&topScreen, 3,BgType_Text4bpp, BgSize_T_256x256, 31, 0, true, true);
consoleInit(&bottomScreen, 3,BgType_Text4bpp, BgSize_T_256x256, 31, 0, false, true);

consolePrint("\n[ftpsrv 0.1.0 By TotalJustice]\n\n");
consolePrint("\n[ftpsrv 0.1.1 By TotalJustice]\n\n");

// init sd card.
if (!fatInitDefault()) {
Expand Down
2 changes: 1 addition & 1 deletion src/platform/nx/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static int error_loop(const char* msg) {
}

int main(int argc, char** argv) {
consolePrint("\n[ftpsrv 0.1.0 By TotalJustice]\n\n");
consolePrint("\n[ftpsrv 0.1.1 By TotalJustice]\n\n");

padConfigureInput(8, HidNpadStyleSet_NpadStandard);
padInitializeDefault(&g_pad);
Expand Down
2 changes: 1 addition & 1 deletion src/platform/nx/sysftp.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sys-ftp",
"version": "0.1.0",
"version": "0.1.1",
"program_id": "0x420000000000011B",
"program_id_range_min": "0x420000000000011B",
"program_id_range_max": "0x420000000000011B",
Expand Down
2 changes: 1 addition & 1 deletion src/platform/unistd/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static void ftp_log_callback(enum FTP_API_LOG_TYPE type, const char* msg) {

static int print_usage(int code) {
printf("\
[ftpsrv 0.1.0 By TotalJustice] \n\n\
[ftpsrv 0.1.1 By TotalJustice] \n\n\
Usage\n\n\
-h, --help = Display help.\n\
-v, --version = Display version.\n\
Expand Down
2 changes: 1 addition & 1 deletion src/platform/wii/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ int main(void) {
VIDEO_WaitVSync();
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();

consolePrint("\n[ftpsrv 0.1.0 By TotalJustice]\n\n");
consolePrint("\n[ftpsrv 0.1.1 By TotalJustice]\n\n");

if (!fatInitDefault()) {
return error_loop("failed to init fat device\n");
Expand Down
2 changes: 1 addition & 1 deletion src/platform/wii/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<app version="1">
<name>Ftpsrv</name>
<coder>TotalJustice</coder>
<version>0.1.0</version>
<version>0.1.1</version>
<short_description>FTP server</short_description>
</app>

0 comments on commit c412ad9

Please sign in to comment.