Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-13 | Revert "AK: Made Strings reversible" | Andreas Kling | |
This reverts commit 26e81ad574d463faee19f5973108f80d0e02aaf6. We forgot to consider UTF-8 here. String is UTF-8 and we need to be careful about things like this. | |||
2019-09-13 | AK: Made Strings reversible | Jesse Buhagiar | |
`AK::String` can now be reversed via AK::String::reverse(). This makes life a lot easier for functions like `itoa()`, where the output ends up being backwards. Very much not like the normal STL (which requires an `std::reverse` object) way of doing things. A call to reverse returns a new `AK::String` so as to not upset any of the possible references to the same `StringImpl` shared between Strings. | |||
2019-06-24 | StringImpl: Fix possible uninitialized access in StringImpl::create(). | Andreas Kling | |
If the provided length is 0, there's no need to dereference the const char*. | |||
2019-06-21 | AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr. | Andreas Kling | |
2019-06-20 | AK: Make StringImpl a bit smaller. | Andreas Kling | |
There's no need for a member char* m_characters if we always store them in the inline buffer. So with this patch, we now do. After that, rearrange the members a bit for ideal packing. :^) | |||
2019-06-14 | AK: Massage it into building on my host system without breaking Serenity. | Andreas Kling | |
2019-05-28 | Add clang-format file | Robin Burchell | |
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh. | |||
2019-04-07 | AK: Improve StringImpl chomping a bit. | Andreas Kling | |
Chomp off any number of trailing [\0\n\r] characters and trim the allocation to fit instead of keeping the original size. | |||
2019-03-12 | Kernel: Cache MAC<->IP mappings (from ARP responses) seen on the wire. | Andreas Kling | |
2019-02-25 | More moving towards using signed types. | Andreas Kling | |
I'm still feeling this out, but I am starting to like the general idea. | |||
2019-02-25 | Convert more RetainPtr use to Retained. | Andreas Kling | |
2019-02-17 | AK: Fix broken instrumentation code for StringImpl. | Andreas Kling | |
2019-02-06 | Bootloader: Locate the kernel's data segment and clear it. | Andreas Kling | |
This was a constant source of stupid bugs and I kept postponing it because I wasn't in the mood to write assembly code. Until now! :^) | |||
2019-02-03 | Get nyancat nyanning in Serenity. | Andreas Kling | |
I found a cute program that renders an animated nyancat in the terminal. This patch adds enough hackery to get it working correctly. :^) | |||
2019-01-31 | Big, possibly complete sweep of naming changes. | Andreas Kling | |
2018-12-28 | Plug leaks in SynthFS::remove_file(). | Andreas Kling | |
The process spawn stress test can now run forever. :^) | |||
2018-12-21 | Yet another pass of style fixes. | Andreas Kling | |
2018-12-04 | Import a simple text editor I started working on. | Andreas Kling | |
2018-11-09 | Make kernel build with clang. | Andreas Kling | |
It's a bit faster than g++ and seems to generate perfectly fine code. The kernel is also roughly 10% smaller(!) | |||
2018-11-07 | Add a Chomp feature to String construction that removes a trailing newline. | Andreas Kling | |
This will be useful in many situations. | |||
2018-10-22 | Add a CircularQueue template class to AK. | Andreas Kling | |
2018-10-22 | Oops, StringImpl's "the empty string" global was not always initialized. | Andreas Kling | |
These "oops forgot to initialize" bugs are getting annoying... | |||
2018-10-17 | Integrate ext2 from VFS into Kernel. | Andreas Kling | |
2018-10-16 | Reduce dependence on STL. | Andreas Kling | |
2018-10-10 | Import all this stuff into a single repo called Serenity. | Andreas Kling | |