1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

Removed old text interface.

This commit is contained in:
Sebastien Helleu
2003-10-12 00:05:29 +00:00
parent 737b422552
commit 7a8edd3cea
10 changed files with 12 additions and 46 deletions
+3 -2
View File
@@ -1,16 +1,17 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2003-10-11
ChangeLog - 2003-10-12
Version 0.0.3 (under dev!):
* fixed crash when entering text without any server connection
* fixed display bug (text was blinking when scrolling)
* french translation
* new IRC command: /stats, /service, /squit, /motd, /lusers, /links, /time,
/trace, /admin, /info, /servlist, /squery, /who, /whowas, /die, /summon,
/users, /wallops, /userhost, /ison
* french translation
* code cleanup
Version 0.0.2 (2003-10-05):
* added commands /rehash and /restart
+3 -3
View File
@@ -1,7 +1,7 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
TODO - 2003-10-11
TODO - 2003-10-12
Legend:
# done
@@ -16,6 +16,8 @@ v0.0.3:
* IRC protocol:
# implement RFC 2812
+ "/mode" command: change the user/channels modes
# "/wallops" command: write the same string to all the
persons with the flag +w enable
* WeeChat commands:
- "/reload" command: reload the WeeChat's config file
@@ -55,8 +57,6 @@ Future versions:
When we come back from our away it should print it to the current window
- "/notify" and "/unnotify" command to be warn by WeeChat when a given
nick/host connect to the given irc network
- "/wallops" command: write the same string to all the
persons with the flag +w enable
* WeeChat commands:
- "/completion" command: do shortcuts (for example when we type "u"
-9
View File
@@ -53,15 +53,6 @@ qt: $(OBJS) $(OBJS_IRC) $(OBJS_GUI)
$(CC) $(OPTIONS) $(OBJS) $(OBJS_IRC) $(OBJS_GUI) -o $(OUTPUT) $(LIBS_QT)
endif
# WeeChat with Text interface
ifeq ($(GUI), text)
OBJS_TEXT=gui-text.o
LIBS_TEXT=
DEFINES=WEE_TEXT
text: $(OBJS) $(OBJS_IRC) $(OBJS_GUI)
$(CC) $(OPTIONS) $(OBJS) $(OBJS_IRC) $(OBJS_GUI) -o $(OUTPUT) $(LIBS_TEXT)
endif
all:
make curses GUI=curses
-8
View File
@@ -36,13 +36,6 @@ qt/gui.a:
cd qt && make
endif
# WeeChat with Text interface
ifeq ($(GUI), text)
text: text/gui.a
text/gui.a:
cd text && make
endif
all:
make curses GUI=curses
@@ -52,4 +45,3 @@ clean:
cd curses && make clean
cd gtk && make clean
cd qt && make clean
cd text && make clean
-1
View File
@@ -29,7 +29,6 @@
#include <string.h>
#include <signal.h>
#include <time.h>
#include <sys/socket.h>
#include <curses.h>
#include "../../weechat.h"
+3 -2
View File
@@ -1,16 +1,17 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2003-10-11
ChangeLog - 2003-10-12
Version 0.0.3 (under dev!):
* fixed crash when entering text without any server connection
* fixed display bug (text was blinking when scrolling)
* french translation
* new IRC command: /stats, /service, /squit, /motd, /lusers, /links, /time,
/trace, /admin, /info, /servlist, /squery, /who, /whowas, /die, /summon,
/users, /wallops, /userhost, /ison
* french translation
* code cleanup
Version 0.0.2 (2003-10-05):
* added commands /rehash and /restart
+3 -3
View File
@@ -1,7 +1,7 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
TODO - 2003-10-11
TODO - 2003-10-12
Legend:
# done
@@ -16,6 +16,8 @@ v0.0.3:
* IRC protocol:
# implement RFC 2812
+ "/mode" command: change the user/channels modes
# "/wallops" command: write the same string to all the
persons with the flag +w enable
* WeeChat commands:
- "/reload" command: reload the WeeChat's config file
@@ -55,8 +57,6 @@ Future versions:
When we come back from our away it should print it to the current window
- "/notify" and "/unnotify" command to be warn by WeeChat when a given
nick/host connect to the given irc network
- "/wallops" command: write the same string to all the
persons with the flag +w enable
* WeeChat commands:
- "/completion" command: do shortcuts (for example when we type "u"
-9
View File
@@ -53,15 +53,6 @@ qt: $(OBJS) $(OBJS_IRC) $(OBJS_GUI)
$(CC) $(OPTIONS) $(OBJS) $(OBJS_IRC) $(OBJS_GUI) -o $(OUTPUT) $(LIBS_QT)
endif
# WeeChat with Text interface
ifeq ($(GUI), text)
OBJS_TEXT=gui-text.o
LIBS_TEXT=
DEFINES=WEE_TEXT
text: $(OBJS) $(OBJS_IRC) $(OBJS_GUI)
$(CC) $(OPTIONS) $(OBJS) $(OBJS_IRC) $(OBJS_GUI) -o $(OUTPUT) $(LIBS_TEXT)
endif
all:
make curses GUI=curses
-8
View File
@@ -36,13 +36,6 @@ qt/gui.a:
cd qt && make
endif
# WeeChat with Text interface
ifeq ($(GUI), text)
text: text/gui.a
text/gui.a:
cd text && make
endif
all:
make curses GUI=curses
@@ -52,4 +45,3 @@ clean:
cd curses && make clean
cd gtk && make clean
cd qt && make clean
cd text && make clean
-1
View File
@@ -29,7 +29,6 @@
#include <string.h>
#include <signal.h>
#include <time.h>
#include <sys/socket.h>
#include <curses.h>
#include "../../weechat.h"