From 93d652d345ffa01376110a6e41340537efe87d4b Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Sat, 28 Jan 2023 16:37:34 +0200 Subject: [PATCH] rename project to visftp --- .gitignore | 2 +- GNUmakefile | 2 +- Makefile | 6 +++--- README.md | 21 +++++++++++---------- scripts/push | 2 +- scripts/push.bat | 4 ++-- src/util.c | 2 +- 7 files changed, 20 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index a0365a7..2131c38 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ *.o *.swp *.d -oftp +visftp *.exe *.obj *.lnk diff --git a/GNUmakefile b/GNUmakefile index 8997898..2a42bfc 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,7 +1,7 @@ src = $(wildcard src/*.c) $(wildcard src/unix/*.c) obj = $(src:.c=.o) dep = $(src:.c=.d) -bin = oftp +bin = visftp warn = -pedantic -Wall -Wno-pointer-sign dbg = -g diff --git a/Makefile b/Makefile index 4d3cd7d..26330d7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ obj = main.obj tgfx.obj tui.obj tui_list.obj darray.obj util.obj input.obj ftp.obj -bin = oftp.exe +bin = visftp.exe !ifdef __UNIX__ incpath = -Isrc -Isrc/dos -Ilibs/watt32 @@ -35,12 +35,12 @@ $(bin): $(obj) clean: .symbolic rm -f *.obj rm -f objects.lnk - rm -f oftp.map + rm -f visftp.map rm -f $(bin) !else clean: .symbolic del *.obj del objects.lnk - del oftp.map + del visftp.map del $(bin) !endif diff --git a/README.md b/README.md index 816cffb..6130f88 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,17 @@ -oftp - ftp client with dual-pane text-mode UI -============================================= +visftp - visual ftp client with dual-pane text-mode UI +====================================================== -oftp is a text-mode graphical ftp client, with a dual-pane UI , also known as -the "orthodox" file management UI paradigm. The dual-pane UI design is a perfect -fit for an FTP client, where the user is required to navigate two filesystems -simultaneously; one pane is dedicated to the remote filesystem served over ftp, -while the other is for navigating the local filesystem. +visftp is a text-mode graphical ftp client, with a dual-pane UI , also known as +the "orthodox" file management UI paradigm. The dual-pane UI design is a +perfect fit for an FTP client, where the user is required to navigate two +filesystems simultaneously; one pane is dedicated to the remote filesystem +served over ftp, while the other is for navigating the local filesystem. -oftp was written to address the lack of graphical FTP clients for DOS (MS-DOS, -FreeDOS, etc), but will also run on UNIX systems using curses for its UI. +visftp was written to address the lack of graphical FTP clients for DOS +(MS-DOS, FreeDOS, etc), but will also run on UNIX systems using curses for its +UI. -**Release status**: *Prototype*. oftp mostly works, but it's very rough, and you +**Release status**: *Prototype*. visftp mostly works, but it's very rough, and you will find lots of bugs. Feel free to open bug reports, but keep in mind that the most obvious issues will be solved as a matter of course as this project progresses. diff --git a/scripts/push b/scripts/push index 103115e..1f005b8 100755 --- a/scripts/push +++ b/scripts/push @@ -1,6 +1,6 @@ #!/bin/sh -fname=/etherdfs/oftp.zip +fname=/etherdfs/visftp.zip #git archive -o $fname HEAD rm -f $fname diff --git a/scripts/push.bat b/scripts/push.bat index c808954..7f71a42 100644 --- a/scripts/push.bat +++ b/scripts/push.bat @@ -1,2 +1,2 @@ -del oftp.zip -zip z:\oftp.zip Makefile src\*.c src\*.h scripts\*.bat +del visftp.zip +zip z:\visftp.zip Makefile src\*.c src\*.h scripts\*.bat diff --git a/src/util.c b/src/util.c index b4b96b7..ceea684 100644 --- a/src/util.c +++ b/src/util.c @@ -64,7 +64,7 @@ static void closelog(void) static void logmsg(const char *tag, const char *fmt, va_list ap) { if(!logfile) { - if(!(logfile = fopen("oftp.log", "w"))) { + if(!(logfile = fopen("visftp.log", "w"))) { return; } setvbuf(logfile, 0, _IOLBF, 0); -- 1.7.10.4