summary refs log tree commit diff stats
AgeCommit message (Collapse)Author
2024-07-07Actually call them contribution guidelines HEAD defaultSoniEx2
2024-07-06Add contribution guidelinesSoniEx2
2024-05-11Add CHANGELOG.mdSoniEx2
2024-02-11Parse fedilinksSoniEx2
2024-02-11Enable CISoniEx2
2024-02-11Merge remote-tracking branch 'upstream/master' into defaultSoniEx2
2024-02-09CI: Fix typoPatrick Griffis
2024-02-09Replace hexchat.net linksPatrick Griffis
2024-02-09appdata: Fix release datePatrick
2024-02-072.16.2Patrick Griffis
2024-01-29Change various types to the correct signedness to avoid warnings.Collin Funk
Also cast the check of "inet_addr" to guint32. The POSIX declaration of this function returns in_addr_t which is the same as uint32_t. Windows does not define this type and instead uses unsigned long.
2024-01-04SASL SCRAM: create_nonce: changed data typePatrick Okraku
2024-01-04SASL SCRAM: create_nonce: changed data typePatrick Okraku
2024-01-04SASL SCRAM: renamed scram_free_session to scram_session_freePatrick Okraku
2024-01-04SASL SCRAM: Apply changes from code reviewPatrick Okraku
2023-11-05Added support for SCRAM-SHA-1, SCRAM-SHA-256 and SCRAM-SHA-512Patrick Okraku
2023-11-05SSL compile fixPatrick Okraku
2023-11-05Moved SASL PLAIN authentication to own functionPatrick Okraku
2023-11-03CI: Reduce duplicate buildsPatrick Griffis
2023-11-03win32: Remove Python 2 supportPatrick Griffis
2023-07-16Add description for .desktop file for HexChat thememan (#2791)Matr1x-101
2023-06-21servlist: Update UnderNet hostnamePatrick
Closes #2786
2023-05-01checksum: Replace GString usage with regular stringsPatrick Griffis
2023-05-01checksum: fixed the TODO and FIXME, tested and improved info message printingTotto16
2023-05-01checksum: Move checksum operation to a threadPatrick Griffis
2023-04-24python: fix for timers that unhook themselvesCelelibi
The python plugin use weak references for hooks, which might let a necessary object disappear if the callback of a timer hook unhooks itself. Signed-off-by: Celelibi <celelibi@gmail.com>
2023-04-03python: add flush() to StdoutCelelibi
Python sometime calls flush() on sys.stdout or sys.stderr. In particular, it might do so when an exception is raised. This fixes the second error message that was generated in such cases. Signed-off-by: Celelibi <celelibi@gmail.com>
2023-03-14Be even more picky about invalid URLsPatrick Griffis
2023-01-30Add TechNet to servlistColby
2023-01-24Add option to exclude nickname in window title (#2759)konsolebox
2022-12-18Merge remote-tracking branch 'upstream/master' into defaultSoniEx2
2022-12-18Warn of plugin bugsSoniEx2
2022-11-05Fix updating the topic (user@host) of dialogs on CHGHOST.Sadie Powell
This is updated when a user receives a new message but would have not been updated when a user sent a CHGHOST.
2022-11-05Also request the extended-monitor capability.Sadie Powell
This allows getting hostname/awaymsg/etc updates for monitored clients which will update the internal cache for that data.
2022-10-29ci: Add gtk-update-icon-cache to msys2 workflowPatrick
2022-10-29add shortcut options in setupDjLegolas
will allow the user to control on which of the shortcuts to create: * start menu - will now show the relevant window * desktop * quick launch on uninstall, all will be removed on uninstall
2022-10-16Make it more clear that /SERVER and /SERVCHAN use SSL by default.Sadie Powell
2022-10-16Default /SERVER and friends to use SSL when built with OpenSSL.Sadie Powell
Since commit 747a52aae8806a9072a23ea68212767f352ac431 users have to opt-out of using SSL when creating a new server. This commit makes it so /SERVER also uses SSL by default. In order to connect insecurely users must now use one of these methods: /SERVER -insecure irc.example.com /SERVER irc.example.com -6667 The `-ssl` flag and the `+port` syntax have been retained for compat reasons.
2022-09-22Fix PROTOCTL NAMESX and only send when not using `multi-prefix`.Sadie Powell
This capability is the equivalent of the old protoctl token.
2022-09-20Support whitespace between language codesAndreas Schärtl
So far, when configuring multiple spell check languages, Hexchat requires the user to separate multiple entries with commas and only commas. This patch allows users to also enter whitespace, e.g. de_DE, en_US as is common in many applications.
2022-08-29Fix various compiler warnings.Sadie Powell
fish.c: -Wincompatible-pointer-types fkeys.c: -Wmisleading-indentation proto-irc.c: -Wincompatible-pointer-types util.c: -Wdeprecated-declarations xtext.c: -Wmaybe-uninitialized
2022-08-26notification_plugin_deinit: Set function signature to int(void *)Adrian
Previously the function signature was inconsistent throughout src/fe-gtk/plugin-notification.{h,c}: One file had the signature int(void), while the other had int(void *). Since this type mismatch might lead to problems (especially with LTO) and the (possibly provided) function argument isn't used in the function's definition, this commit sets int(void *) as function signature for both the declaration and definition of the function. Fixes: https://github.com/hexchat/hexchat/issues/2726
2022-08-01servlist: Remove ACNPatrick
They are no longer supporting TLS and let their cert expire. Non-TLS networks do not belong in our default list. Closes #2722
2022-07-15servlist: Remove IRCHighWayPatrick Griffis
They have self-signed certs which doesn't belong in our default list.
2022-05-14fix sysinfo print of cpu nameDjLegolas
the cpu name might have tailing spaces in Windows, which weren't remove before printing.
2022-05-13Split long SASL auth strings into 400-byte chunks (#2709)Artem Zhurikhin
Fixes #2705
2022-05-10raise the max length of a server password to 1024Ashpool
- alleviate #1296
2022-05-08update python3 from 3.6 to 3.8.10DjLegolas
Signed-off-by: DjLegolas <djlegolas@protonmail.com>
2022-05-07fix addons load in python2DjLegolas
2022-04-30appdata: Update appstream usage for desktop applicationsPatrick Griffis