diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | TODO | 6 | ||||
-rw-r--r-- | src/Makefile | 9 | ||||
-rw-r--r-- | src/gui/Makefile | 8 | ||||
-rw-r--r-- | src/gui/curses/gui-display.c | 1 | ||||
-rw-r--r-- | weechat/ChangeLog | 5 | ||||
-rw-r--r-- | weechat/TODO | 6 | ||||
-rw-r--r-- | weechat/src/Makefile | 9 | ||||
-rw-r--r-- | weechat/src/gui/Makefile | 8 | ||||
-rw-r--r-- | weechat/src/gui/curses/gui-display.c | 1 |
10 files changed, 12 insertions, 46 deletions
@@ -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 @@ -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" diff --git a/src/Makefile b/src/Makefile index a3f848203..5be70c9bb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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 diff --git a/src/gui/Makefile b/src/gui/Makefile index 77d66bea7..9c0970ee1 100644 --- a/src/gui/Makefile +++ b/src/gui/Makefile @@ -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 diff --git a/src/gui/curses/gui-display.c b/src/gui/curses/gui-display.c index a5bb8bbf8..ec70af0c0 100644 --- a/src/gui/curses/gui-display.c +++ b/src/gui/curses/gui-display.c @@ -29,7 +29,6 @@ #include <string.h> #include <signal.h> #include <time.h> -#include <sys/socket.h> #include <curses.h> #include "../../weechat.h" diff --git a/weechat/ChangeLog b/weechat/ChangeLog index 92f9b6968..36f8c7ce4 100644 --- a/weechat/ChangeLog +++ b/weechat/ChangeLog @@ -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 diff --git a/weechat/TODO b/weechat/TODO index abae1cdf7..dc41ced10 100644 --- a/weechat/TODO +++ b/weechat/TODO @@ -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" diff --git a/weechat/src/Makefile b/weechat/src/Makefile index a3f848203..5be70c9bb 100644 --- a/weechat/src/Makefile +++ b/weechat/src/Makefile @@ -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 diff --git a/weechat/src/gui/Makefile b/weechat/src/gui/Makefile index 77d66bea7..9c0970ee1 100644 --- a/weechat/src/gui/Makefile +++ b/weechat/src/gui/Makefile @@ -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 diff --git a/weechat/src/gui/curses/gui-display.c b/weechat/src/gui/curses/gui-display.c index a5bb8bbf8..ec70af0c0 100644 --- a/weechat/src/gui/curses/gui-display.c +++ b/weechat/src/gui/curses/gui-display.c @@ -29,7 +29,6 @@ #include <string.h> #include <signal.h> #include <time.h> -#include <sys/socket.h> #include <curses.h> #include "../../weechat.h" |