Version 0.1.4

v2.8-utf8proc
Sebastien Helleu 2005-07-30 08:28:43 +00:00
parent 3d724fb634
commit 89b955c79e
22 changed files with 1724 additions and 1608 deletions

2
BUGS
View File

@ -1,7 +1,7 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
WeeChat known bugs, 2005-05-21
WeeChat known bugs, 2005-07-30
- ./configure does not check that Gtk 2.0 libraries are installed
- when quitting WeeChat term title is not restored (if look_set_title is ON)

View File

@ -1,10 +1,10 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2005-07-22
ChangeLog - 2005-07-30
Version 0.1.4 (under dev!):
Version 0.1.4 (2005-07-30):
* join and part/quit prefixes (arrows) now displayed with different colors
* added "irc_highlight" setting, to get highlight with any word
* fixed auto-rejoin for channels with key

16
FAQ
View File

@ -1,4 +1,4 @@
WeeChat FAQ, 2005-05-21
WeeChat FAQ, 2005-07-30
=======================
Intended audience:
@ -50,8 +50,12 @@ Q: Why using WeeChat ? X-Chat and Irssi are so good...
A: Because WeeChat is very light and has new features.
Some new features:
* many GUI (Curses, Gtk, wxWidgets, Qt),
* extensible with scripts (Perl, Python, Ruby),
* many GUI (Curses, Gtk, wxWidgets, Qt)
* nicklist available in all GUI
* extensible with scripts (Perl, Python, Ruby)
* horizontal and vertical window split
* infobar highlight
* FIFO pipe for remote control
* developed from scratch (not based on any other IRC client)
* multi-platform
* 100% GPL and free
@ -83,7 +87,9 @@ A: You have to setup charset used for decoding, encoding, and internal WeeChat
================================================================================
Q: How can I customize key bindings?
A: Today you can't do that. This is planed for a future version.
A: Key bindings are customizable with /key command.
Default key Meta-k (usually Alt-k) lets you grab key code and insert it
in input zone.
2.5
@ -103,7 +109,7 @@ A: You can use /perl command to load scripts (default path is
Q: How can I load Python scripts?
Are Python scripts compatible with X-chat or/and Irssi ?
A: You can use /python command to load scripts (default path is
A: You can use /python command to load scripts (default path is
~/.weechat/python).
Note that scripts in ~/.weechat/python/autoload are automatically loaded
when WeeChat is starting up.

15
FAQ.fr
View File

@ -1,4 +1,4 @@
WeeChat FAQ, 2005-05-21
WeeChat FAQ, 2005-07-30
=======================
Public concerné :
@ -53,8 +53,12 @@ Q: Pourquoi utiliser WeeChat ? X-Chat et Irssi sont si bien...
R: Parce que WeeChat est très léger et a de nouvelles fonctionnalités.
Quelques nouvelles fonctionnalités :
* plusieurs interfaces (Curses, Gtk, wxWidgets, Qt),
* extensible par des scripts (Perl, Python, Ruby),
* plusieurs interfaces (Curses, Gtk, wxWidgets, Qt)
* liste des pseudos disponible dans toutes les interfaces
* extensible par des scripts (Perl, Python, Ruby)
* découpage de la fenêtre horizontalement et verticalement
* highlight dans la barre d'infos
* tube FIFO pour contrôle à distance
* développé à partir de zéro (non basé sur un quelconque client IRC)
* multi-platformes
* 100% GPL et libre
@ -87,8 +91,9 @@ R: Il faut configurer le charset utilis
================================================================================
Q: Comment puis-je configurer les raccourcis clavier ?
R: Aujourd'hui vous ne pouvez pas le faire. Ce sera possible dans une
version future.
R: Les raccourcis clavier sont modifiables avec la commande /key.
La touche par défaut Meta-k (souvent Alt-k) permet de capturer le code
d'une touche et de l'inclure dans la zone de saisie.
2.5

4
NEWS
View File

@ -1,6 +1,10 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
* FlashCode, 2005-07-30
WeeChat 0.1.4 released.
* FlashCode, 2005-07-02
WeeChat 0.1.3 released.

View File

@ -19,10 +19,10 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT(WeeChat, 0.1.4-cvs, flashcode@flashtux.org)
AC_INIT(WeeChat, 0.1.4, flashcode@flashtux.org)
AC_CONFIG_SRCDIR([src/common/weechat.c])
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE([weechat], [0.1.4-cvs])
AM_INIT_AUTOMAKE([weechat], [0.1.4])
# Checks for programs.
AC_PROG_CC

View File

@ -23,6 +23,10 @@ It is compliant with RFCs 1459, 2810, 2811, 2812, and 2813.
.br
display config file help (list of options)
.TP
.B \-f, \-\-key\-functions
.br
display internal functions for keys
.TP
.B \-h, \-\-help
.br
display summary of options
@ -31,6 +35,10 @@ display summary of options
.br
display IRC commands
.TP
.B \-k, \-\-keys
.br
display default keys
.TP
.B \-l, \-\-license
.br
display program license

535
po/es.po

File diff suppressed because it is too large Load Diff

539
po/fr.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
%define name weechat
%define version 0.1.3
%define version 0.1.4
%define release 1
Name: %{name}
@ -26,12 +26,12 @@ rm -rf $RPM_BUILD_ROOT
./configure --enable-perl --enable-python
make DESTDIR="$RPM_BUILD_ROOT" LOCALRPM="local"
%install
%install
make DESTDIR="$RPM_BUILD_ROOT" LOCALRPM="local" install
%find_lang %name
%clean
%clean
rm -rf $RPM_BUILD_ROOT
%files -f %{name}.lang
@ -40,7 +40,9 @@ rm -rf $RPM_BUILD_ROOT
/usr/local/man/man1/weechat-curses.1*
/usr/local/bin/weechat-curses
%changelog
%changelog
* Sat Jul 30 2005 FlashCode <flashcode@flashtux.org> 0.1.4-1
- Released version 0.1.4
* Sat Jul 02 2005 FlashCode <flashcode@flashtux.org> 0.1.3-1
- Released version 0.1.3
* Sat May 21 2005 FlashCode <flashcode@flashtux.org> 0.1.2-1

View File

@ -1,7 +1,7 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
WeeChat known bugs, 2005-05-21
WeeChat known bugs, 2005-07-30
- ./configure does not check that Gtk 2.0 libraries are installed
- when quitting WeeChat term title is not restored (if look_set_title is ON)

View File

@ -1,10 +1,10 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2005-07-22
ChangeLog - 2005-07-30
Version 0.1.4 (under dev!):
Version 0.1.4 (2005-07-30):
* join and part/quit prefixes (arrows) now displayed with different colors
* added "irc_highlight" setting, to get highlight with any word
* fixed auto-rejoin for channels with key

View File

@ -1,4 +1,4 @@
WeeChat FAQ, 2005-05-21
WeeChat FAQ, 2005-07-30
=======================
Intended audience:
@ -50,8 +50,12 @@ Q: Why using WeeChat ? X-Chat and Irssi are so good...
A: Because WeeChat is very light and has new features.
Some new features:
* many GUI (Curses, Gtk, wxWidgets, Qt),
* extensible with scripts (Perl, Python, Ruby),
* many GUI (Curses, Gtk, wxWidgets, Qt)
* nicklist available in all GUI
* extensible with scripts (Perl, Python, Ruby)
* horizontal and vertical window split
* infobar highlight
* FIFO pipe for remote control
* developed from scratch (not based on any other IRC client)
* multi-platform
* 100% GPL and free
@ -83,7 +87,9 @@ A: You have to setup charset used for decoding, encoding, and internal WeeChat
================================================================================
Q: How can I customize key bindings?
A: Today you can't do that. This is planed for a future version.
A: Key bindings are customizable with /key command.
Default key Meta-k (usually Alt-k) lets you grab key code and insert it
in input zone.
2.5
@ -103,7 +109,7 @@ A: You can use /perl command to load scripts (default path is
Q: How can I load Python scripts?
Are Python scripts compatible with X-chat or/and Irssi ?
A: You can use /python command to load scripts (default path is
A: You can use /python command to load scripts (default path is
~/.weechat/python).
Note that scripts in ~/.weechat/python/autoload are automatically loaded
when WeeChat is starting up.

View File

@ -1,4 +1,4 @@
WeeChat FAQ, 2005-05-21
WeeChat FAQ, 2005-07-30
=======================
Public concerné :
@ -53,8 +53,12 @@ Q: Pourquoi utiliser WeeChat ? X-Chat et Irssi sont si bien...
R: Parce que WeeChat est très léger et a de nouvelles fonctionnalités.
Quelques nouvelles fonctionnalités :
* plusieurs interfaces (Curses, Gtk, wxWidgets, Qt),
* extensible par des scripts (Perl, Python, Ruby),
* plusieurs interfaces (Curses, Gtk, wxWidgets, Qt)
* liste des pseudos disponible dans toutes les interfaces
* extensible par des scripts (Perl, Python, Ruby)
* découpage de la fenêtre horizontalement et verticalement
* highlight dans la barre d'infos
* tube FIFO pour contrôle à distance
* développé à partir de zéro (non basé sur un quelconque client IRC)
* multi-platformes
* 100% GPL et libre
@ -87,8 +91,9 @@ R: Il faut configurer le charset utilis
================================================================================
Q: Comment puis-je configurer les raccourcis clavier ?
R: Aujourd'hui vous ne pouvez pas le faire. Ce sera possible dans une
version future.
R: Les raccourcis clavier sont modifiables avec la commande /key.
La touche par défaut Meta-k (souvent Alt-k) permet de capturer le code
d'une touche et de l'inclure dans la zone de saisie.
2.5

View File

@ -1,6 +1,10 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
* FlashCode, 2005-07-30
WeeChat 0.1.4 released.
* FlashCode, 2005-07-02
WeeChat 0.1.3 released.

View File

@ -19,10 +19,10 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT(WeeChat, 0.1.4-cvs, flashcode@flashtux.org)
AC_INIT(WeeChat, 0.1.4, flashcode@flashtux.org)
AC_CONFIG_SRCDIR([src/common/weechat.c])
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE([weechat], [0.1.4-cvs])
AM_INIT_AUTOMAKE([weechat], [0.1.4])
# Checks for programs.
AC_PROG_CC

View File

@ -23,6 +23,10 @@ It is compliant with RFCs 1459, 2810, 2811, 2812, and 2813.
.br
display config file help (list of options)
.TP
.B \-f, \-\-key\-functions
.br
display internal functions for keys
.TP
.B \-h, \-\-help
.br
display summary of options
@ -31,6 +35,10 @@ display summary of options
.br
display IRC commands
.TP
.B \-k, \-\-keys
.br
display default keys
.TP
.B \-l, \-\-license
.br
display program license

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
%define name weechat
%define version 0.1.3
%define version 0.1.4
%define release 1
Name: %{name}
@ -26,12 +26,12 @@ rm -rf $RPM_BUILD_ROOT
./configure --enable-perl --enable-python
make DESTDIR="$RPM_BUILD_ROOT" LOCALRPM="local"
%install
%install
make DESTDIR="$RPM_BUILD_ROOT" LOCALRPM="local" install
%find_lang %name
%clean
%clean
rm -rf $RPM_BUILD_ROOT
%files -f %{name}.lang
@ -40,7 +40,9 @@ rm -rf $RPM_BUILD_ROOT
/usr/local/man/man1/weechat-curses.1*
/usr/local/bin/weechat-curses
%changelog
%changelog
* Sat Jul 30 2005 FlashCode <flashcode@flashtux.org> 0.1.4-1
- Released version 0.1.4
* Sat Jul 02 2005 FlashCode <flashcode@flashtux.org> 0.1.3-1
- Released version 0.1.3
* Sat May 21 2005 FlashCode <flashcode@flashtux.org> 0.1.2-1