summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-09-29Fix segfaultfeature/tor-i2p-dccSoniEx2
https://github.com/hexchat/hexchat/issues/2265
2018-10-13Fix UB (dangling pointer usage)fix-ubSoniEx2
Using dangling pointers, even if it's just to compare them with valid pointers (such as comparing them with the ones in sess_list), is UB. This fixes that.
2018-09-26Fix compilation failure on non-linux, non-darwin, non-windows systems.Mattia Rizzolo
'gnu' => Hurd 'gnu/' => all the gnu/* stuff like gnu/kfreebsd Signed-off-by: Mattia Rizzolo <mattia@mapreri.org>
2018-09-23Use prefix variable in pkgconfig filePatrick Griffis
2018-09-01build: Silence some Meson warnings and bump requirement to 0.40.0Patrick Griffis
2018-09-01Fix new stringop-truncation warningsPatrick Griffis
2018-09-01sysinfo: Fixup formattingPatrick Griffis
2018-09-01sysinfo: Add support for /etc/os-releasePatrick Griffis
2018-08-29Bump version to 2.14.2Patrick Griffis
2018-08-29win32: Reflect gvsbuild changesPatrick Griffis
2018-08-16Fix inconsistent behavior (re)connecting on SSLIvan
2018-07-26build: Add with-appdata optionPatrick Griffis
This is mostly useful to avoid a newer gettext dependency for translating the appdata file but it is also just useless data for some distros without any app store. Closes #2219
2018-05-08Fix sending PASS with spaces or starting with :jkhsjdhjs
Closes #2186 Closes #1550
2018-04-04Fix another bad translationPatrick Griffis
2018-04-04travis: Avoid locale problemsPatrick Griffis
2018-04-03tests: Explicitly open files as utf-8 for travisPatrick Griffis
2018-04-03Fix tests on UbuntuPatrick Griffis
2018-04-03Update translationsPatrick Griffis
2018-04-03travis: Run testsPatrick Griffis
2018-04-03Validate all translations contain valid text eventsPatrick Griffis
2018-03-31Fix plugins on macOSRainer Müller
The switch to the meson build system broke plugins on macOS. GNU libtool builds shared libraries with ".dylib" and shared modules (plugins) with the extension ".so", but meson is using ".dylib" for both. Although overriding the name_suffix for shared_module() in meson is possible, this would be messy for other platforms as there is no way to query the default. Therefore it seems like we have to go with ".dylib" for now on macOS. However, G_MODULE_SUFFIX is defined to ".so", because glib follows what GNU libtool does. Therefore define a separate preprocessor macro that has the correct extension. See: https://github.com/mesonbuild/meson/issues/1160
2018-03-26build: perl as a dependency in meson.buildRainer Müller
With the switch to meson, the problem previously fixed in #1822 came back. The build system might pick up the installed hexchat-config.h instead of using the header in the source directory, as the compiler arguments would be in the order of "-I${prefix}/include -I..". It seems that the c_args in meson are always put to the front of the compiler arguments, in order to be able to override any include paths from dependencies. However, this was not the intention here, so perl should also be modeled as a dependency. This ensures that the arguments with local include directories come first.
2018-03-23build: Add option to specify path to perl binaryRainer Müller
2018-03-20Deiconify window on tray click. Closes #2136Manuel Schneider
2018-03-18build: Re-add support for the legacy perl apiPatrick Griffis
This was accidentally left behind, expose it beind an option as with the old build system but default to false now. Enough time has passed and only distros that care about it can enable it.
2018-03-17build: Correctly set plugin licensesPatrick Griffis
2018-03-17build: Fix id in plugin metainfo filesPatrick Griffis
2018-03-17build: Add metainfo files for addonsPatrick Griffis
2018-03-16Remove shift+click to close tab bindingPatrick Griffis
It is an odd binding that conflicts with typical behavior where shift click selects multiple items and there is already the middle click shortcut to close tabs quickly. Closes #918
2018-03-13Bump to 2.14.1Patrick Griffis
2018-03-13Revert "xtext: Always use Pango to get correct glyph width on Unix"Patrick Griffis
This reverts commit d3f1ab78138a1f9256ec02842799ed6cd1e3ec1e. The performance even on Linux is just too poor in many cases.
2018-03-13fix typo in commentMattia Rizzolo
Signed-off-by: Mattia Rizzolo <mattia@mapreri.org>
2018-03-11Fix fscanf() usage without size limitPatrick Griffis
Closes #2137
2018-03-10build: Remove -pie from global ldflagsPatrick Griffis
According to `hardening-check` the cflag is enough for `hexchat` and this was causing breakage in plugins Closes #2132
2018-03-10Bump to 2.14.0Patrick Griffis
2018-03-09Fix /ignore not accepting full hostsPatrick Griffis
Fixes #1828
2018-03-09win32: Update Python downloadsPatrick Griffis
2018-03-09Remove mpcinfo pluginPatrick Griffis
The code quality of it is terrible, the user experience of using it is terrible, and it should have been removed years ago
2018-03-09win32: Update to build against gvsbuildPatrick Griffis
2018-03-09Various fixes for mingwPatrick Griffis
2018-03-09win32: Respond to WM_TIMECHANGE by updating the CRT timezone infoMark Jansen
Closes #2090 Fixes #1851
2018-03-09build: Fix building with-text=true and with-plugin=falsePatrick Griffis
Closes #2113
2018-03-08Update translationsPatrick Griffis
2018-03-04Fix out of bounds read when DCC message sender contains quotesPatrick Griffis
This cannot be triggered by any user generally. Fixes #2128
2018-03-02Fix possible out of bounds read when being ctcp floodedPatrick Griffis
Note that this is unlikely to be triggerable by another user. Thanks to @dequis for discovering.
2018-02-18dbus: Add option to use app-id for bus namePatrick Griffis
This is required for Flatpak but is an API break so it is opt-in for now.
2018-02-18fishlim: Fix build warningPatrick Griffis
2018-02-11xtext: Fix accidental truncationPatrick Griffis
Fixes #2121
2018-02-06xtext: Always use Pango to get correct glyph width on UnixPeng Wu
This should be slower but pango seems to be reasonably fast on Unix though extremely slow on Windows. https://bugzilla.redhat.com/show_bug.cgi?id=1536298
2018-02-06xtext: Fix invalid utf-8 from truncationPatrick Griffis