Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-12 | Userland: Move command-line utilities to Userland/Utilities/ | Andreas Kling | |
2021-01-07 | date: Use ArgsParser and add ISO8601 / RFC3339 / RFC5322 output formats | Brendan Coles | |
2020-06-12 | AK: Make string-to-number conversion helpers return Optional | Andreas Kling | |
Get rid of the weird old signature: - int StringType::to_int(bool& ok) const And replace it with sensible new signature: - Optional<int> StringType::to_int() const | |||
2020-05-09 | Userland: Remove double-'#include' in date.cpp | Ben Wiederhake | |
2020-05-08 | Kernel+Userland: Add "settime" pledge promise for setting system time | Andreas Kling | |
We now require the "settime" promise from pledged processes who want to change the system time. | |||
2020-03-19 | Userland: Add functionality of changing system date in date utility | Liav A | |
2020-02-18 | date: Use pledge() | Andreas Kling | |
2020-02-15 | LibCore: Move LogStream::operator<< overloads into cpp files | Andreas Kling | |
2020-02-11 | Userland: Use Core::DateTime | Andreas Kling | |
2020-01-27 | Kernel+LibC+Userland: Switch to 64-bit time_t | Andreas Kling | |
Let's not have that 2038 problem people are talking about. :^) | |||
2020-01-18 | Meta: Add license header to source files | Andreas Kling | |
As suggested by Joshua, this commit adds the 2-clause BSD license as a comment block to the top of every source file. For the first pass, I've just added myself for simplicity. I encourage everyone to add themselves as copyright holders of any file they've added or modified in some significant way. If I've added myself in error somewhere, feel free to replace it with the appropriate copyright holder instead. Going forward, all new source files should include a license header. | |||
2019-06-07 | Userland: Run clang-format on everything. | Andreas Kling | |
2019-05-04 | date: Add "-u" argument for printing current Unix timestamp. | Andreas Kling | |
2019-02-03 | Userland: Make /bin/date pretty-print the date, too. | Andreas Kling | |
2018-11-09 | Fix all current build warnings in the userland. | Andreas Kling | |
2018-10-25 | Add gettimeofday() syscall and LibC wrappers gettimeofday() and time(). | Andreas Kling | |
This only has second accuracy right now, I'll work out subseconds later. |