Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-14 | Userland: Rename QuickShow => Image Viewer | Andreas Kling | |
The old name was a bit too ambiguous. This one is crystal clear. :^) | |||
2021-05-11 | Shell: Add an option to autosave history every N ms | Ali Mohammad Pur | |
...and set it to 10 seconds by default. | |||
2021-05-10 | Base: Fix a spelling error in the mitigations man page | Mart G | |
2021-05-10 | Shell: Parse '\t' in doublequoted strings as a tab character | Ali Mohammad Pur | |
This not being recognised is surprising. | |||
2021-05-10 | Shell: Add support for \uhhhhhhhh escapes in strings | Ali Mohammad Pur | |
This will be replaced with the unicode character whose codepoint is given by the unsigned 32-bit number 'hhhhhhhh' (hex). | |||
2021-05-08 | Base: Fix path to LibJS tests in test-js(1) man page | Linus Groh | |
2021-05-08 | Base: Update TextEditor man page to include line and column arguments | ry755 | |
This documents the feature in c2872766f2322aa38490160b571059f05e7dcb2d | |||
2021-05-07 | Base: Add manpage for file(1) | Valtteri Koskivuori | |
2021-05-07 | Base: Consistently stylize arguments in man pages as inline code | Linus Groh | |
2021-05-05 | Base: Add manpage for groups(1) | setepenre | |
2021-05-05 | Base: Fix typos and spelling errors in man pages | Brendan Coles | |
2021-05-05 | Base: Minor cleanup of a few man pages. | Brian Gianforcaro | |
- Fix some typos and formatting. - Add links to Mitigations from unveil / pledge. | |||
2021-05-05 | Base: Add a boot_parameters(7) to document kernel boot parameters. | Brian Gianforcaro | |
2021-05-04 | Base: Update recvfd() man page after addition of `options` argument | Andreas Kling | |
2021-05-01 | Man: Add a manpage for rev(1) | Mango0x45 | |
2021-05-01 | Base: Add a man page for the 'bt' command. | Brian Gianforcaro | |
2021-04-29 | WindowServer: Move configuration file to /etc/WindowServer.ini | Andreas Kling | |
This was in the /etc/WindowServer/ directory which had nothing else in it, so let's just get rid of the directory and move this up one step. | |||
2021-04-29 | Base: Describe heredocs in Shell's manpage | Ali Mohammad Pur | |
2021-04-25 | Base: Make test(1) summary line match other man pages | Rudolf Adamkovič | |
Other `man` pages use the imperative form. | |||
2021-04-20 | Everywhere: Replace SERENITY_ROOT with SERENITY_SOURCE_DIR | Panagiotis Vasilopoulos | |
2021-04-18 | Everywhere: Fix a bunch of typos | Linus Groh | |
2021-04-17 | Base: Remove stray backtick in the watch manpage | Gunnar Beutner | |
2021-04-16 | man: Update SystemServer(5) documentation with new Socket style | sin-ack | |
This patch adds new information about the usage of multiple sockets with eager services and the new socket takeover mechanism exposed by SystemServer. | |||
2021-04-15 | Base: Add documentation for `get_process_name` | Nicholas-Baron | |
`set_process_name` has a getter pair (which it links to); lets document it. Solves #6007. | |||
2021-04-12 | Userland: Add support for -S to env command | Peter Elliott | |
- Refactor env to use Core::ArgsParser - create symlink from /bin/env to /usr/bin/env for compatiability | |||
2021-04-11 | Everywhere: Update references from ReadMe.md => README.md | Andreas Kling | |
2021-03-27 | Base: Update `modunload` path | Roi | |
The file `modunload.md` has moved to `man8` | |||
2021-03-27 | Base: man pages: document arguments, fix typos, use American English | Brendan Coles | |
2021-03-24 | jp: add man page | Cesar Torres | |
2021-03-23 | Base: Add man page for zip(1) | Idan Horowitz | |
2021-03-22 | Base: Document Shell's variable indexing behaviour | AnotherTest | |
2021-03-22 | Base: Document Shell's immediate functions | AnotherTest | |
2021-03-16 | Base: Change path to both `modload` and `modunload` (#5804) | Roi | |
2021-03-13 | QuickShow: Add help documentation | Brendan Coles | |
2021-03-08 | Base: Add sysctl man page | Brendan Coles | |
2021-03-08 | Everywhere: Remove unnecessary whitespace at the end of some lines. | Emanuele Torre | |
2021-03-07 | Shell: Add support for enumerating lists in for loops | AnotherTest | |
With some odd syntax to boot: ```sh $ for index i x in $whatever {} ``` | |||
2021-03-04 | Shell: Document all supported PROMPT flags | Ben Wiederhake | |
2021-03-04 | Base: Add man pages for null/zero/full character devices | Brendan Coles | |
2021-02-28 | Base: Add mktemp(1) man page | Idan Horowitz | |
2021-02-24 | Profiler: Add help documentation | Brendan Coles | |
2021-02-23 | Inspector: Add help documentation | Brendan Coles | |
2021-02-21 | Kernel: Add "map_fixed" pledge promise | Andreas Kling | |
This is a new promise that guards access to mmap() with MAP_FIXED. Fixed-address mappings are rarely used, but can be useful if you are trying to groom the process address space for malicious purposes. None of our programs need this at the moment, as the only user of MAP_FIXED is DynamicLoader, but the fixed mappings are constructed before the process has had a chance to pledge anything. | |||
2021-02-20 | Base: Update path in js(1) manpage example | Linus Groh | |
2021-02-20 | Base: Mention -n option in echo(1) manpage | Linus Groh | |
2021-02-20 | Base: Tweak ddate(1) manpage tagline | Linus Groh | |
2021-02-20 | Base: Unify synopsis format in manpages | Linus Groh | |
2021-02-20 | Base: Do a little copy-editing in Mitigations(7) | Andreas Kling | |
2021-02-20 | Base: Fix a broken commit link in Mitigations(7) | Andreas Kling | |
2021-02-20 | Base: Document more the mitigations in man7/Mitigations.md | Brian Gianforcaro | |
Document: * Unmap After Init * RELRO * -fstack-clash-protection * -fstack-protector / -fstack-protector-strong |