Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-03-06 | Create installation directories with make install not configure. | Peter Powell | |
This fixes system-wide installations requiring root in order to create directories. | |||
2015-02-27 | Fix miscalculation of maxlen in Channel::UserList() introduced by the ↵ | Attila Molnar | |
WriteNumeric() conversion | |||
2015-02-27 | Fix oversights in substr() conversion | Attila Molnar | |
Thanks to @StevenVanAcker for reporting and testing this | |||
2015-02-22 | Merge pull request #916 from ShutterQuick/master+kickrejoinbound | Attila Molnar | |
Advertise m_kicknorejoin's upper bound. Closes #913 | |||
2015-02-22 | capab: m_kicknorejoin: Don't advertise upper bound to 2.0 servers | Daniel Vassdal | |
2015-02-22 | m_kicknorejoin: Advertise upper bound. Closes #913 | Daniel Vassdal | |
2015-02-22 | Merge pull request #998 from SaberUK/master+fix-clang-builds | Attila Molnar | |
Fix oversight which caused problems with Clang on OSX. | |||
2015-02-22 | Merge pull request #1000 from ShutterQuick/master+281 | Attila Molnar | |
m_sqloper: Add `active` column | |||
2015-02-22 | m_sqloper.cpp: Add support for the `active` column | Daniel Vassdal | |
When active is true the user is allowed to log in. When it is FALSE, he is not. 2.0 users must alter their table (or view) so that it contains this field. | |||
2015-02-22 | m_sqloper.sqlite3.sql: Add `active` column | Daniel Vassdal | |
2015-02-22 | m_sqloper.postgresql.sql: Add `active` column | Daniel Vassdal | |
2015-02-22 | m_sqloper.mssql.sql: Add `active` column | Daniel Vassdal | |
2015-02-22 | m_sqloper.mysql.sql: Add `active` column | Daniel Vassdal | |
2015-02-21 | m_sqloper.mysql.sql: TYPE is deprecated as of MySQL 5.5 | Daniel Vassdal | |
"The older TYPE option that was synonymous with ENGINE was removed in MySQL 5.5." https://dev.mysql.com/doc/refman/5.6/en/create-table.html | |||
2015-02-20 | Fix oversight which caused problems with Clang on OSX. | Peter Powell | |
2015-02-20 | Change all occurrences of Inspire to InspIRCd | Attila Molnar | |
2015-02-20 | Merge pull request #997 from SaberUK/master+compiler-detection | Attila Molnar | |
Improve compiler detection in configure; update supported compiler tests. | |||
2015-02-18 | Remove a workaround for a compiler which is no longer supported. | Peter Powell | |
2015-02-18 | Add the <type_traits> header to the compiler test file. | Peter Powell | |
2015-02-18 | Improve compiler detection in configure. | Peter Powell | |
- Split the detection and compatibility checks into two different steps (previously it was confusing as it would say the compiler was not available when it was really not compatible). - Fix a minor bug where compilers detected using xcrun on Darwin would not have xcrun returned as part of the compiler name from find_compiler. | |||
2015-02-15 | Eliminate constant return value of the all events version of ↵ | Attila Molnar | |
ModuleManager::SetPriority() | |||
2015-02-15 | Convert mods calling the old compat wrapper of ModuleManager::SetPriority() ↵ | Attila Molnar | |
to use the current method, remove wrapper | |||
2015-02-15 | Remove I_BEGIN from enum Implementation | Attila Molnar | |
2015-02-12 | m_spanningtree Pass Server* to the OnServerLink/OnServerSplit events | Attila Molnar | |
2015-02-12 | Merge branch 'master+crossmodevents' | Attila Molnar | |
2015-02-12 | m_httpd_stats Remove days/hours/mins/secs from <uptime> | Attila Molnar | |
Uptime can be calculated easily from the boot time | |||
2015-02-12 | m_httpd_stats Fix pointer being shown instead of server name in <user> | Attila Molnar | |
2015-02-11 | m_httpd Remove now unused variable "claimed" | Attila Molnar | |
2015-02-11 | Remove class Event and the OnEvent hook | Attila Molnar | |
2015-02-11 | Convert the spanningtree events to use the new cross-module event system | Attila Molnar | |
2015-02-11 | Remove unused parameters from HTTPRequest constructor | Attila Molnar | |
2015-02-11 | Convert the HTTPd request event to use the new cross-module event system | Attila Molnar | |
2015-02-11 | Convert the HTTPd ACL event to use the new cross-module event system | Attila Molnar | |
2015-02-11 | Convert the SASL fallback event to use the new cross-module event system | Attila Molnar | |
2015-02-11 | Convert the CAP event to use the new cross-module event system | Attila Molnar | |
2015-02-11 | Allow enabling/disabling caps via GenericCap::SetActive() | Attila Molnar | |
2015-02-11 | Convert the account login event to use the new cross-module event system | Attila Molnar | |
2015-02-11 | Add new cross-module event system | Attila Molnar | |
2015-02-11 | Add missing const operators to dynamic_reference[_nocheck] | Attila Molnar | |
2015-02-11 | Allow dynrefs to have an OnCapture() hook | Attila Molnar | |
2015-02-11 | Ensure all dynrefs with the same target resolve to the same object when one ↵ | Attila Molnar | |
name points to multiple objects | |||
2015-02-06 | Merge branch 'master+tlsversion' | Attila Molnar | |
2015-02-06 | Merge pull request #986 from StevenVanAcker/fix-initscript2 | Attila Molnar | |
Making init-script exit codes compliant with LSB 4.1 | |||
2015-02-06 | Merge pull request #984 from Renegade334/modules-exempt-uline | Attila Molnar | |
Allow U-lined services to bypass m_silence (configurable) | |||
2015-02-06 | m_mysql Add charset config option | Florian Praden | |
2015-02-05 | Making init-script exit codes compliant with LSB 4.1 | Steven Van Acker | |
2015-02-05 | Merge pull request #976 from SaberUK/master+fix-xline-db | Attila Molnar | |
Fix xline reasons being truncated in m_xline_db. | |||
2015-02-05 | Merge pull request #971 from SaberUK/master+numeric-xline | Attila Molnar | |
Use ERR_YOUREBANNEDCREEP instead of NOTICE when a user is banned. | |||
2015-02-05 | modules/m_silence: Allow U-lined services to bypass silence masks | Renegade334 | |
Adds a config entry (silence->exemptuline) that specifies whether users on U-lined servers can bypass silence masks. | |||
2015-01-29 | Fix xline reasons being truncated in m_xline_db. | Peter Powell | |
This error was introduced in bbeb5ea3. |