Go to file
Berke Viktor 47d6222f1c Be consistent about caps 2012-07-20 15:50:42 +02:00
plugins more branding changes 2012-07-19 18:30:12 +03:00
po Remove duplicates caused by manual find-n-replace in German translation 2012-07-18 16:28:02 +02:00
src Be consistent about caps 2012-07-20 15:50:42 +02:00
win32 A decent WizardImage for the installer 2012-07-18 22:55:21 +02:00
.gitignore Add some Unix-specific files for .gitignore, more to come later 2012-07-18 10:51:39 +02:00
COPYING add xchat r1489 2011-02-24 04:14:30 +01:00
COPYING.rtf initial x86 installer 2011-08-18 02:26:24 +02:00
ChangeLog Update XChat to r1515 2012-07-13 20:18:53 +02:00
HACKING more XChat to HexChat renaming 2012-07-14 06:04:45 +03:00
Makefile.am Another bunch of rebranding stuff 2012-07-13 18:04:00 +02:00
README Add note about building info 2012-07-19 12:10:06 +02:00
acinclude.m4 add xchat r1489 2011-02-24 04:14:30 +01:00
autogen.sh Add execution bit for autogen.sh 2012-07-13 21:37:26 +02:00
config.h Version bump for tarname too 2012-07-19 12:02:59 +02:00
config.rpath add xchat r1489 2011-02-24 04:14:30 +01:00
configure.in Fix dbus-libproxy confusion causing compilation to fail with dbus disabled and libproxy present 2012-07-18 21:19:11 +02:00
faq.html Add FAQ entry for migrating from XChat 2012-07-18 15:51:04 +02:00
hexchat-b.svg Update logos thanks to TingPing, now only WizardImage is left 2012-07-16 22:53:28 +02:00
hexchat.desktop more XChat to HexChat renaming 2012-07-14 06:04:45 +03:00
hexchat.ico Update logos thanks to TingPing, now only WizardImage is left 2012-07-16 22:53:28 +02:00
hexchat.png Update logos thanks to TingPing, now only WizardImage is left 2012-07-16 22:53:28 +02:00
hexchat.spec Complete the rebranding of the D-Bus plugin 2012-07-18 15:18:43 +02:00
hexchat.svg Update logos thanks to TingPing, now only WizardImage is left 2012-07-16 22:53:28 +02:00
version.txt Switch to new version format for Update Checker 2012-07-12 18:38:47 +02:00

README

HexChat README
~~~~~~~~~~~~~
 X-Chat ("xchat") Copyright (c) 1998-2010 By Peter Zelezny.
 HexChat ("hexchat") Copyright (c) 2009-2012 By Berke Viktor.

 This program is released under the GPL v2 with the additional exemption
 that compiling, linking, and/or using OpenSSL is allowed. You may
 provide binary packages linked to the OpenSSL libraries, provided that
 all other requirements of the GPL are met.
 See file COPYING for details.

 For building instructions, see http://www.hexchat.org/developers/building


What is it?
~~~~~~~~~~~
 HexChat is an IRC client for UNIX operating systems. I.R.C. is Internet
 Relay Chat, see http://irchelp.org for more information about IRC in
 general. HexChat runs on most BSD and POSIX compliant operating systems.


Requirements:
~~~~~~~~~~~~~
 * GTK+ 2.10 (this is available at http://www.gtk.org)
 * GLib 2.12 (GTK+ 2.10 requires GLib 2.12)

 HexChat is known to work on, at least:

	* Linux
	* FreeBSD
	* OpenBSD
	* NetBSD
	* Solaris
	* AIX
	* IRIX
	* DEC/Compaq Tru64 UNIX
	* HP-UX 10.20 and 11
	* MacOS X
	* Windows XP/2000/Vista/7


Notes for packagers:
~~~~~~~~~~~~~~~~~~~~

 If you need your packages to work on i386, you don't need to compile with
 --disable-mmx, because it's also checked at run-time.


Python Scripts:
~~~~~~~~~~~~~~~
 Scripts for 1.8.x are not compatible, and a brand new interface has be
 written. Documentation can be found here: http://xchat.org/docs/.
 Consider using the Python interface for your scripts, it's a very nice
 API, allows for loading/unloading individual scripts, and gives you
 almost all the features of the C-Plugin API.


Perl Scripts:
~~~~~~~~~~~~~
 Perl 5.8 or newer is required.
 Scripts for 1.8.x are compatible with the following exceptions:

* IRC::command will not interpret %C, %B, %U etc.

* user_list and user_list_short:
  If a user has both op and voice, only the op flag will be 1.

* add_user_list/sub_user_list/clear_user_list
  These functions do nothing.

* notify_list
  Not implemented. Always returns an empty list.

* server_list
  Lists servers that are not connected aswell.

* Some print events may have new names and some were added.

* Text printed by scripts must now be UTF8.

* Text passed to scripts (via add_message_handler) will be encoded in UTF8.


Autoloading Perl Scripts and Plugins
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * HexChat automatically loads, at startup:
	~/.config/hexchat/*.pl Perl scripts
	~/.config/hexchat/plugins/*.pl Perl scripts
	~/.config/hexchat/*.py Python scripts
	~/.config/hexchat/plugins/*.py Python scripts
	~/.config/hexchat/*.so Plugins
	$(libdir)/hexchat/plugins/*.so plugins
	(this usually translates to /usr/lib/hexchat/plugins/*.so)


Control Codes:
~~~~~~~~~~~~~~
 %%     -  A single percentage sign
 %C     -  Control-C (mIRC color code)
 %B     -  Bold Text
 %U     -  Underline Text
 %R     -  Reverse Text
 %O     -  Reset all Text attributes
 %XXX   -  ASCII XXX (where XXX is a decimal 3 digit number)
           (Eg: %007 sends a BEEP)

 %Cforeground,background will produce a color code, eg: %C03,10

 These are now disabled by default (see Settings > Prefs > Input Box).
 Instead you can insert the real codes via ctrl-k, ctrl-b and ctrl-o.