1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 07:24:58 +00:00
serenity/Applications/IRCClient
asynts d5ffb51a83 AK: Don't add newline for outf/dbgf/warnf.
In the future all (normal) output should be written by any of the
following functions:

    out    (currently called new_out)
    outln
    dbg    (currently called new_dbg)
    dbgln
    warn   (currently called new_warn)
    warnln

However, there are still a ton of uses of the old out/warn/dbg in the
code base so the new functions are called new_out/new_warn/new_dbg. I am
going to rename them as soon as all the other usages are gone (this
might take a while.)

I also added raw_out/raw_dbg/raw_warn which don't do any escaping,
this should be useful if no formatting is required and if the input
contains tons of curly braces. (I am not entirely sure if this function
will stay, but I am adding it for now.)
2020-10-04 17:04:55 +02:00
..
CMakeLists.txt Build: Switch to CMake :^) 2020-05-14 20:15:18 +02:00
IRCAppWindow.cpp Applications+IRCClient: Use new format functions. 2020-09-23 21:45:28 +02:00
IRCAppWindow.h IRCClient: remove some unused headers and replace tabs with spaces 2020-05-28 17:01:31 +02:00
IRCChannel.cpp IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCChannel.h IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCChannelMemberListModel.cpp LibGUI: Move GUI::Model::Role to GUI::ModelRole 2020-08-16 16:44:09 +02:00
IRCChannelMemberListModel.h LibGUI: Move GUI::Model::Role to GUI::ModelRole 2020-08-16 16:44:09 +02:00
IRCClient.cpp AK: Don't add newline for outf/dbgf/warnf. 2020-10-04 17:04:55 +02:00
IRCClient.h IRCClient: Connect to IRC server URL specified in command line argument 2020-04-23 09:50:19 +02:00
IRCLogBuffer.cpp IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCLogBuffer.h IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCQuery.cpp IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCQuery.h IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCWindow.cpp Applications: Use placeholders in TextBoxes where applicable 2020-09-21 20:15:10 +02:00
IRCWindow.h IRCClient: Use NonnullRefPtr<IRCClient> throughout 2020-09-10 18:45:00 +02:00
IRCWindowListModel.cpp IRCClient: Use NonnullRefPtr<IRCClient> throughout 2020-09-10 18:45:00 +02:00
IRCWindowListModel.h IRCClient: Use NonnullRefPtr<IRCClient> throughout 2020-09-10 18:45:00 +02:00
main.cpp Applications+IRCClient: Use new format functions. 2020-09-23 21:45:28 +02:00