Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-25 | Move common Application build steps into their own Makefile.common | Lawrence Manning | |
Further consolidation is of course possible, eg the Games/ programs follow the same rules more or less. | |||
2019-05-13 | Fix "make clean" not deleting app binaries. | Andreas Kling | |
2019-04-21 | Include Makefile.common in all other Makefiles. | Andreas Kling | |
2019-04-20 | Get rid of SERENITY macro since the compiler already defines __serenity__ | Andreas Kling | |
This makes it a bit easier to use AK templates out-of-tree. | |||
2019-04-10 | Introduce LibCore and move GElapsedTimer => CElapsedTimer. | Andreas Kling | |
I need a layer somewhere between AK (usable both by userspace and kernel) and LibGUI (usable by userspace except WindowServer.) So here's LibCore. | |||
2019-04-08 | LibGUI: Make GSocket connection asynchronous. | Andreas Kling | |
Now connect() will return immediately. Later on, when the socket is actually connected, it will call GSocket::on_connected from the event loop. :^) | |||
2019-03-27 | LibC: Run constructors on process startup. | Andreas Kling | |
Cooperate with the compiler to generate and execute the _init_array list of constructor functions on userspace program statup. This took two days to get working, my goodness. :^) | |||
2019-03-20 | Move WindowServer into Servers. | Andreas Kling | |
2019-03-16 | IRCClient: Rename IRCClientWindowFoo => IRCWindowFoo. | Andreas Kling | |
2019-03-15 | IRClient: Add a member list to channel views. | Andreas Kling | |
2019-03-15 | IRCClient: Use a model for the window list. | Andreas Kling | |
2019-03-15 | IRCClient: Rename IRCSubWindow => IRCClientWindow. | Andreas Kling | |
2019-03-15 | IRCClient: Hacking on IRCClient bringup. | Andreas Kling | |
2019-03-15 | IRCClient: Start working on a simple graphical IRC client. | Andreas Kling | |
This will be a nice way to exercise both LibGUI and the TCP/IP support. :^) |