rename project to visftp master
authorJohn Tsiombikas <nuclear@member.fsf.org>
Sat, 28 Jan 2023 14:37:34 +0000 (16:37 +0200)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Sat, 28 Jan 2023 14:37:34 +0000 (16:37 +0200)
.gitignore
GNUmakefile
Makefile
README.md
scripts/push
scripts/push.bat
src/util.c

index a0365a7..2131c38 100644 (file)
@@ -1,7 +1,7 @@
 *.o
 *.swp
 *.d
-oftp
+visftp
 *.exe
 *.obj
 *.lnk
index 8997898..2a42bfc 100644 (file)
@@ -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
index 4d3cd7d..26330d7 100644 (file)
--- 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
index 816cffb..6130f88 100644 (file)
--- 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.
index 103115e..1f005b8 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-fname=/etherdfs/oftp.zip
+fname=/etherdfs/visftp.zip
 
 #git archive -o $fname HEAD
 rm -f $fname
index c808954..7f71a42 100644 (file)
@@ -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
index b4b96b7..ceea684 100644 (file)
@@ -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);