Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-04 | Fix many many problems in xtext.c related to character width. | RichardHitt | |
* Rework multiline logic to use a GSList, not an array * Remove all multibyte booleans; everything is potentially multibyte - Except for gtk_xtext_get_word(), which needs special attention * Enhance pango work for bold and italics (attr_list -> attr_lists[4]) * Enhance gtk_xtext_strip_color () to save bold, italics info * Involve emphasis information in all pixel-width calculations * Rework find_x () to account for emphasis info in widths Closes #891 Fixes #872 | |||
2014-02-04 | Add /getbool command | TingPing | |
2014-02-04 | osx: Set Menlo as default font | TingPing | |
This moves the find_font function to the front ends since it depends on pango and cairo | |||
2014-02-04 | Print help messages for user commands | TingPing | |
2014-02-04 | Merge pull request #890 from orium/lagmeter-fixes | TingPing | |
Lagmeter fixes | |||
2014-02-02 | Fix warning | TingPing | |
2014-02-02 | Merge pull request #892 from ShutterQuick/patch-1 | TingPing | |
servlist: Add Canternet | |||
2014-02-02 | servlist: Add Canternet | ShutterQuick | |
2014-02-01 | Prevent users from having the same alternate nicks | TingPing | |
For some reason users do this and then complain when they cannot connect when nick is in use. There are other ways for them to break it but at least it shouldn't be on accident. | |||
2014-01-30 | Make all parent directories when creating configdir | TingPing | |
2014-01-30 | Add synIRC to network list | TingPing | |
Closes #888 | |||
2014-01-30 | Now make_ping_time() in common/util.c returns the time in milliseconds instead | Diogo Sousa | |
of microseconds. In fe_set_lag(serv, lag) the lag argument is now in milliseconds as well. Fixes #758. | |||
2014-01-30 | osx: generate plist file | TingPing | |
2014-01-30 | More autotools cleanup | TingPing | |
- Don't build msproxy if unused - Add resources to cleanfiles - Remove old extra_dist from plugins | |||
2014-01-29 | Use verbose builds with travis | TingPing | |
2014-01-29 | Respect verbosity setting when building htm | TingPing | |
2014-01-29 | Fixes #881 Fix two bugs -- | RichardHitt | |
gtk_xtext_find_char() adjust negative y for int typecast gtk_xtext_find_x() return out_of_bounds TRUE if line outside windodw gtk_xtext_selection_draw() recognize TRUE out_of_bounds | |||
2014-01-29 | osx: Silence openssl deprecated warnings | TingPing | |
2014-01-28 | configure: Don't error when python not found | TingPing | |
2014-01-28 | osx: Fix bundled Python | TingPing | |
2014-01-27 | osx: Fix loading plugins from bundle | TingPing | |
2014-01-27 | Allow overriding libdir | TingPing | |
2014-01-27 | Fixed lag meter getting stuck. | Diogo Sousa | |
Also lag_sent in struct server should have always been an unsigned long. Fixes #749. | |||
2014-01-26 | win32: Include gtk theme in minimal install | TingPing | |
2014-01-26 | Show error when you lack write permissions to configdir | TingPing | |
2014-01-26 | Fix loading default keybindings w/o write permissions | TingPing | |
Closes #615 | |||
2014-01-20 | Enable --command on win32 | TingPing | |
and make existing depend on | |||
2014-01-20 | Actually call commands sent with --command | TingPing | |
Closes #884 | |||
2014-01-20 | Remove unused xdcc server plugin | TingPing | |
2014-01-20 | Translate appdata file | TingPing | |
2014-01-20 | configure: Clean up EXTRA_DIST | TingPing | |
2014-01-20 | Don't store the potfile in git | TingPing | |
2014-01-20 | Remove unused plugins | TingPing | |
2014-01-20 | Fix warning | TingPing | |
Leftovers from 38cbabea | |||
2014-01-20 | Remove unused perl files | TingPing | |
- old example scripts - outdated docs - mingw build script | |||
2014-01-18 | Revert GtkObject removal until Gtk3 | TingPing | |
2014-01-18 | Update most deprecated gtk functions | TingPing | |
2014-01-18 | Update most deprecated gdk functions | TingPing | |
2014-01-16 | Show a popup when opening plugin window when built without support | TingPing | |
2014-01-16 | Fix warning when built without plugins | TingPing | |
2014-01-16 | configiure: Fix testing compiler flags on anything other than gcc | TingPing | |
2014-01-16 | configure: add missing result message | TingPing | |
2014-01-16 | configure: Don't build python or perl plugin when plugins are disabled | TingPing | |
2014-01-15 | Check for gio during configure | TingPing | |
2014-01-14 | Add gtk-mac-bundler files | TingPing | |
2014-01-14 | Build with gtk-mac-integration | TingPing | |
- Use HexChat logo for dock icon - Use appmenu (not finished) | |||
2014-01-14 | Don't use SCROLL_HACK on osx | TingPing | |
2014-01-14 | Clean up formatting during build | TingPing | |
2014-01-14 | Move acinclude.m4 into m4 dir | TingPing | |
2014-01-13 | configure.ac: Actually check the CFLAGS and LDFLAGS returned by ↵ | Arnavion | |
ExtUtils::Embed before deciding to compile the Perl plugin. - openSUSE has ExtUtils::Embed, EXTERN.h and perl.so in the base perl package. - Fedora has ExtUtils::Embed in a separate perl-devel package. - Mageia has ExtUtils::Embed in the base perl package but EXTERN.h in a separate perl-devel package. Without this package, the compiler complains about the missing header. - Debian has ExtUtils::Embed and EXTERN.h in the base perl package but perl.so in a separate libperl-dev package. Without this package, gcc compiles successfully but complains at link-time about -lperl (ExtUtils::Embed returns '-lperl' in ldopts but it's not actually installed). configure.ac already requires ExtUtil::Embed to enable perl. To handle the case of Mageia and Debian, this change uses AC_TRY_LINK to verify that the flags returned by ExtUtils::Embed can actually be used to compile before deciding to enable the perl plugin. |