Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-24 | Keymap: Added de-macintosh.json for German Mac keyboards | networkException | |
Some special characters might not match the exact layout from macOS as this was tested on Linux, but it is close enough to be well usable | |||
2021-03-23 | HackStudio+LanguageServers/Cpp: Show scope of symbols in Locator | Itamar | |
2021-03-23 | Base: Add man page for zip(1) | Idan Horowitz | |
2021-03-23 | PixelPaint: Added Zoom tool | lucastarche | |
2021-03-22 | Base: Document Shell's variable indexing behaviour | AnotherTest | |
2021-03-22 | Base: Document Shell's immediate functions | AnotherTest | |
2021-03-18 | Serendipity: Add new tips and use more GML | thankyouverycool | |
2021-03-16 | Base: Change path to both `modload` and `modunload` (#5804) | Roi | |
2021-03-15 | Keymap: Added no-latin1.json for Norwegian pc105 keyboards (#5794) | Magnus Alvestad | |
2021-03-13 | Base: Remove ANSI color ladybug text file | Andreas Kling | |
This was part of a neofetch-like program we had a long time ago, but has long since been removed. | |||
2021-03-13 | LanguageServers/Cpp: Complete Preprocessor definitions | Itamar | |
Preprocessor definitions now appear in the AutoComplete suggestions box as well as in the Locator. | |||
2021-03-13 | LibCpp: Replace defined preprocessor values when parsing | Itamar | |
2021-03-13 | QuickShow: Add help documentation | Brendan Coles | |
2021-03-11 | Base: Make the default prompt a different color for root | Andreas Kling | |
2021-03-09 | Utilities: Add a quotes database and 'fortunes' program | Ben Wiederhake | |
I told you, we need a quotes ~~page~~ file! :D | |||
2021-03-08 | Base: Add sysctl man page | Brendan Coles | |
2021-03-08 | Base: Fix newlines at end of file in some files. | Emanuele Torre | |
2021-03-08 | Everywhere: Remove unnecessary whitespace at the end of some lines. | Emanuele Torre | |
2021-03-08 | Base: Replace HTMl => HTML | Emanuele Torre | |
2021-03-07 | Serendipity: Couple more tips and some clean-up | thankyouverycool | |
2021-03-07 | Meta: Use the new Shell features to improve run-tests-and-shutdown | AnotherTest | |
Fixes two TODOs in that file :^) | |||
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-06 | Base: Add egrep and rgrep aliases to /etc/shellrc | Brendan Coles | |
2021-03-04 | Shell: Document all supported PROMPT flags | Ben Wiederhake | |
2021-03-04 | Base: Remove two outdated aliases from /etc/shellrc | Andreas Kling | |
2021-03-04 | Base: Add man pages for null/zero/full character devices | Brendan Coles | |
2021-03-03 | Base: Set a nice PROMPT in /etc/shellrc :^) | Andreas Kling | |
2021-03-02 | Serendipity: A new welcome app | thankyouverycool | |
Provides the basic Help+ReadMe care package to new users and some interesting tips to get started. Feel free to add more! | |||
2021-03-02 | Userland: Gate OSC 9 usage in test-js behind an argument | Andrew Kaster | |
Instead of assuming that we should use the OSC 9 progress messages whenever we run on serenity, add a show-progress=[true|false] option. This lets us avoid seeing esc sequence spam in GitHub Actions logs. | |||
2021-03-01 | Base: Add test-math to set of tests run on CI | Andrew Kaster | |
It currently fails though :( Likely contributes to innacuracies in LibJS tests as well. | |||
2021-02-28 | Base/CI: Boot serenity in CI in a mode that runs tests on target | Andrew Kaster | |
Build a new version of Serenity in CI that doesn't have all the debug symbols on, or we'd be waiting a very long time to boot. Insert a TestRunner entry into SystemServer.ini that will run a shell script that runs tests in /bin and /usr/Tests and shuts down the system in the new self-test boot mode. Also make sure enough basic services are started in self-test such that the tests will actually run properly. | |||
2021-02-28 | Base: Add mktemp(1) man page | Idan Horowitz | |
2021-02-27 | HackStudio: Support searching symbol declarations in the Locator | Itamar | |
The Locator now keeps a cache of the declared symbol in a document. The language client updates that cache whenever it gets an update from the language server about declared symbols. This allows searching for symbol declarations in the Locator, in addition to file names. Closes #5478 | |||
2021-02-27 | LibGUI: add a rudimentary framework for Wizards. | Nick Vella | |
This patch provides the basic components needed for developers to create consistent wizard interface experiences in their applications. `WizardDialog` provides the dialog frame for the wizard, handling navigation and presentation. `AbstractWizardPage`s form the base class of Wizard pages, which are pushed onto the `WizardDialog` page stack via `WizardDialog::push_page`. `CoverWizardPage` and `WizardPage` are provided to ease the creation of Wizard interfaces consistent with the Serenity visual language. | |||
2021-02-26 | Base: Adjust cursor and link colors in Redmond themes | thankyouverycool | |
Fixes red blinking carets and unreadable link text | |||
2021-02-25 | Base: Update some icons for color, quality and consistency | thankyouverycool | |
And remove unused filetypes | |||
2021-02-25 | Base: Add new icons for fonts and File Manager | thankyouverycool | |
2021-02-24 | Base: Add jcs.org to Browser bookmarks | Andreas Kling | |
This page is great for testing and it exposes a bunch of issues we should look into in LibWeb. :^) | |||
2021-02-24 | Profiler: Add help documentation | Brendan Coles | |
2021-02-23 | Inspector: Add help documentation | Brendan Coles | |
2021-02-22 | Base: Add Slovak keymap | TheMorc | |
2021-02-21 | keymaps: Add dvorak-programmer | Kevin Kuehler | |
I left the numpad the same as qwerty because I don't have a keyborad with a numpad and don't know if those keys change or not. | |||
2021-02-21 | Base: Add a lion emoji 🦁 | Andreas Kling | |
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 | |