Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-01-09 | Always build the stats modules. | Sadie Powell | |
These have no external dependencies so it makes no sense to not always build them. | |||
2024-01-08 | Fix various format string issues. | Sadie Powell | |
2024-01-04 | Update the copyright headers for 2024. | Sadie Powell | |
2023-12-17 | Remove some unnecessary spaces that break editor indentation. | Sadie Powell | |
2023-10-11 | Start migrating to range-based for loops. | Sadie Powell | |
2022-12-31 | Merge branch '2.0' into 2.1. | Sadie Powell | |
2022-12-31 | Update the copyright headers for 2023. | Sadie Powell | |
2022-01-12 | Merge branch '2.0' into 2.1. | Sadie Powell | |
2022-01-10 | Avoid duplicate checks in irc2sql. | Sadie Powell | |
2022-01-06 | Update the copyright headers for 2022. | Sadie Powell | |
2022-01-04 | Consistently use #pragma once across all header files. | Sadie Powell | |
This replaces a mixture of no include guards, ANOPE_FOO_H, and FOO_H. | |||
2022-01-04 | Modernize CXXFLAGS on Unix and enable -Werror on CI. | Sadie Powell | |
Also clear up warnings that this exposed. | |||
2022-01-03 | Replace anope_{final,override} with their C++11 equivalent. | Sadie Powell | |
2021-08-01 | Deduplicate code for checking if a user is securely connected. | Sadie Powell | |
2021-04-27 | Use InnoDB instead of the deprecated MyISAM engine. | Sadie Powell | |
Ref: https://www.percona.com/blog/2016/10/11/mysql-8-0-end-myisam/ | |||
2021-04-27 | Use utf8mb4 instead of utf8 in chanstats and irc2sql. | Sadie Powell | |
The utf8 charset, confusingly, is an alias for utf8mb3 which is not a real UTF-8 encoding as it can only store three byte characters. The real UTF-8 charset is utf8mb4. | |||
2021-01-07 | Update copyright to 2021. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2021 Anope Team/i' {} \; | |||
2020-10-21 | Fix the query used by IRC2SQL for updating server information. | Sadie Powell | |
2020-01-07 | m_chanstats: Make ChanServ's HELP SET CHANSTATS translatable too. (#253) | Robby | |
Also refresh the language files while at it. | |||
2020-01-04 | Update copyright to 2020. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2020 Anope Team/i' {} \; | |||
2019-01-01 | Update copyright to 2019. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2019 Anope Team/i' {} \; | |||
2018-04-25 | Update copyright to 2018. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2018 Anope Team/i' {} \; | |||
2017-01-17 | Cleanup some excess whitespaces and tabs, and fix a few typos along the way. | Robby | |
2017-01-16 | Update copyright to 2017. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2017 Anope Team/i' {} \; Added missing copyright headers to files that didn't have it yet. | |||
2016-11-05 | irc2sql: fix changing status modes to update ison modes | Adam | |
2016-11-05 | irc2sql: fix crash on shutdown with no sql | Adam | |
2016-11-05 | irc2sql: update max topic len to 512 | Adam | |
2016-11-04 | irc2sql: fix a couple SQL errors | Adam | |
2016-01-28 | Update copyright to 2016. This was done with: | Robby | |
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-20.. Anope Team/-2014 Anope Team/i' {} \; Added missing copyright headers to files that didn't have it yet. Fixed some whitespace and blank lines along the way. | |||
2015-07-08 | Fix a ton of typos. | Peter Powell | |
2015-04-30 | irc2sql: handle away messages. | Jyzee | |
2015-01-28 | More properly track topic change sources and allow users with access to ↵ | Adam | |
change topics through topiclock | |||
2014-09-14 | changed the engine of the chanstats table from InnoDB back to MyISAM to ↵ | DukePyrolator | |
avoid increasing the auto_increment counter on each INSERT IGNORE. For existing tables please manually run 'ALTER TABLE anope_chanstats ENGINE=MyISAM'. | |||
2014-05-20 | Speed up akill xline checks | Adam | |
Cache xline nick, user, host, etc instead of rebuilding it everytime its requested. Store users ip in sockaddr form and not string form to prevent having to rebuild sockaddrs when checking xlines. Also do not try to convert empty config values in Config::Get as this can be rather common if a non string configuration value is not set, and the cost of the ConvertException is great. | |||
2014-05-01 | Pass password to nick register event so modules like m_ldap_authentication ↵ | Adam | |
can create the respective account using the decrypted password which might not always be available | |||
2014-03-09 | irc2sql: removed the currentusers field from the chan table, keeping it ↵ | DukePyrolator | |
updated on each join/part eats too many ressources | |||
2014-01-21 | Fix missing colon in stats and top, fix smileys and actions count. Patch by ↵ | Adam | |
bush. | |||
2014-01-21 | Made the chanstats confs try and look similar to every other configuration file | Adam | |
2014-01-19 | m_chanstats: fixed the config options NSDefChanstats and CSDefChanstats | DukePyrolator | |
2014-01-17 | m_chanstats: do not count negative words if you have more smileys in a line ↵ | DukePyrolator | |
than words | |||
2014-01-06 | Fix compile with -std=c++11 | Adam | |
2014-01-03 | Move modules/stats under extras because it depends on m_mysql, update its ↵ | Adam | |
config a bit to look similar to all of the other config files |