summaryrefslogtreecommitdiff
path: root/Base/home/anon/.config
AgeCommit message (Collapse)Author
2022-02-23LibTest+Spreadsheet: Add some basic spreadsheet runtime behaviour testsAli Mohammad Pur
As there's a somewhat active development going on, let's keep the expected behaviour under tests to make sure nothing blows up :^)
2022-02-03Base: Start Keymap.Applet automaticallyTimur Sultanov
2022-01-15Base: Add default "ShowScrollBar" value to Terminal.ini configBrian Gianforcaro
2022-01-14Base: Skip the Shell/function.sh test since it's flaky on CIAndreas Kling
2022-01-12Base: Disable TestLibCoreStream in run-tests for nowAndreas Kling
This test is very flaky, so let's turn it off until someone fixes it.
2022-01-06Base: Add Bjarne Stroustrup's website to default browser bookmarks :^)Andreas Kling
2021-12-21Base: Set ImageViewer as the launcher for .qoi filesLinus Groh
2021-11-27Base: Set a default value for terminal scrollback sizekleines Filmröllchen
This setting was previously defaulted in the terminal setting code, which will be removed in the next step.
2021-11-26Browser+Base: Delete provided Browser.ini fileSam Atkins
Having files in Base's user `.config` folder means that every time the Serenity image is built, all user settings in that file are thrown away. So, let's not do that! :^) Modified the default value for the homepage url to match what was in Browser.ini, so there is no visible change.
2021-11-26Browser: Move search engine definitions to a json fileSam Atkins
This both makes them configurable, and means that we can read them from other applications, such as BrowserSettings. :^)
2021-11-23Applets: Rename DesktopPicker => WorkspacePickerAndreas Kling
This is consistent with the rest of the system.
2021-11-20PixelPaint: Allow toggling the active layer boundary display rectAndreas Kling
Let the user opt out of painting a rectangle around the currently active layer.
2021-11-04Base+LibCore: Store booleans in human-readable formatBen Wiederhake
Fixes #10640.
2021-10-17Base: Add a basic SystemServer.ini for the anon user :^)Andreas Kling
2021-10-05Everywhere: Change from http to https where feasibleBen Wiederhake
I used "git grep -FIn http://" to find all occurrences, and looked at each one. If an occurrence was really just a link, and if a https version exists, and if our Browser can access it at least as well as the http version, then I changed the occurrence to https. I'm happy to report that I didn't run into a single site where Browser can't deal with the https version.
2021-09-12Base: Add `~/.config/PixelPaint.ini` sample fileMustafa Quraish
This is just a config file with the default options that PixelPaint recognizes and reads so far. Adding this in since the options are not really documented anywhere so at least the user can now know what options are available.
2021-08-31Tests: Test LibMarkdown against commonmark test suitePeter Elliott
TestCommonmark runs the CommonMark test suite (https://spec.commonmark.org/0.30/spec.json) against LibMarkdown. Currently 44/652 tests pass.
2021-08-24Userland: Remove IRC ClientAndreas Kling
The IRC Client application made some sense while our main communication hub was an IRC channel. Now that we've moved on, IRC is just a random protocol with no particular relevance to this project. This also has the benefit of removing one major client of the single- process Web::InProcessWebView class.
2021-08-22Base: Add csv file associationKarol Kosek
2021-08-18Base: Remove System Monitor and Assistant from quick launch barAndreas Kling
System Monitor can already be accessed quickly by clicking one of the resource graph applets in the task bar, so this icon was redundant. Assistant can be opened with the Super+Space hotkey, so we don't need a dedicated icon for it.
2021-08-18Base: Rename GitHub browser bookmark to "GitHub"Andreas Kling
"SerenityOS @ GitHub" was a pointlessly long name for this.
2021-07-19Base: Add file associations for multiple programsLuK1337
This change adds missing file association for the following programs: - ImageViewer - PDFViewer - PixelPaint - Playground - Profiler - SoundPlayer
2021-07-14Tests: Change test-filtering mechanismHendiadyoin1
We have a new config argument to add space separated exclude regex' This is separate from "NotTestsPattern", because these are still Tests, although they are not supposed to be run by the runner This also adds the test for a working UserspaceEmulator to the tests run
2021-07-06Tests+Base: Convert stack-smash to be LibTest based and stop skipping itAndrew Kaster
Now that the test is converted to be LibTest based, we can remove it from the exclude list in /home/anon/.config/Tests.ini. Prior to this it would crash and fail because it was signaled instead of returning normally with exit code 0.
2021-06-30Base+Utilities: Add run-tests program to run system tests with LibTestAndrew Kaster
This test program heavily pulls from the JavaScriptTestRunner/test-js, but with a twist. Instead of loading JavaScript files into the current process, constructing a JS environment for them, and executing test suites/tests directly, run-tests posix_spawns each test file. Test file stdout is written to a temp file, and only dumped to console if the test fails or the verbose option is passed to the program. Unlike test-js, times are always printed for every test executed for better visibility in CI.
2021-06-30LaunchServer: Add flac file association to /bin/SoundPlayerngc6302h
2021-06-28Userland: Add new app called AssistantSpencer Dixon
'Assistant' is similar to macOS spotlight where you can quickly open a text input, start typing, and hit 'enter' to launch apps or open directories.
2021-06-21LaunchServer: Make all file handlers configurable including directoriesbitwitch
This commit gets rid of hard coded file handlers in Launcher.cpp in favor of using values in the LaunchServer.ini config file. The previous commit adds checks for the existence of handler programs while registering handlers. This commit takes advantage of that and ensures that LaunchServer will not attempt to open a file with a nonexistent program and can properly report failure before spawning a new child process. Resolves #8120
2021-06-09Meta: Remove references to the abandoned IRC channelAndreas Kling
2021-06-04LibVT+Terminal: Add color scheme supportDaniel Bertalan
This commit introduces color scheme support to Terminal. These are found in `/res/terminal_colors` and the default color scheme can be set in `~/.config/Terminal.ini`. Furthermore, a combo box is added for setting the color scheme at runtime. The previously used default color scheme has been added to `/res/terminal-colors/Default.ini`. To make the implementation more compatible with other color schemes, `TerminalWidget` now supports overriding the default foreground and background colors.
2021-05-18Applications: Add a very simple PDFViewerMatthew Olsson
2021-05-18LibGfx: Add support for DDS imagesstelar7
2021-05-15Base: Use http://serenityos.org/ for the default browser bookmarkAndreas Kling
We are currently unable to load the HTTPS version of the site due to missing cipher suite support.
2021-05-14Userland: Rename QuickShow => Image ViewerAndreas Kling
The old name was a bit too ambiguous. This one is crystal clear. :^)
2021-04-29Browser: Save search engine setting to preferencesMaciej Zygmanowski
2021-04-26LibGUI: Make common locations configurableDexesTTP
2021-03-27SoundPlayer: Add playlist supprtCesar Torres
And a M3U(8) parser
2021-02-24Base: Add jcs.org to Browser bookmarksAndreas Kling
This page is great for testing and it exposes a bunch of issues we should look into in LibWeb. :^)
2021-02-13FileManager: Add layout options to View menuthankyouverycool
File Manager's toolbar, location bar, status bar and folder pane can now be toggled on/off
2021-02-13FileManager: Save 'Show dotfiles' setting in FileManager.inithankyouverycool
2021-02-13TextEditor: Add layout options to View menuthankyouverycool
Toolbar, status bar, and ruler can now be toggled on/off and their settings are saved in ~/.config/TextEditor.ini
2021-01-05Browser: Add a very basic content filter listAndreas Kling
Let's start out with something small, just to make sure the feature gets tested.
2021-01-05Playground: Support opening gml file by path as command line argumentBrendan Coles
2020-12-30Terminal: Remove redundant scroll length settings optionIdan Horowitz
This is no longer needed as a global one is now available under mouse settings.
2020-12-24LaunchServer+Base: Stop using Browser as default protocol handlerLinus Groh
Browser supports very few protocols (http, https, gemini, file) at the moment, so there's no point in using it as a catch-all and default protocol handler. I added an explicit association for gemini to /bin/Browser instead. This stops Desktop::Launcher::open() from reporting success for any URL, which really isn't the case (Browser shows an error page...).
2020-12-21LibVT+Terminal: Add the option to disable the bellAlex McGrath
2020-12-10Base: Remove *.hsp filesAndreas Kling
HackStudio no longer has dedicated project files, so let's get rid of the *.hsp file concept. It'll eventually produce some files again, but they won't be the same kind of "project" files.
2020-12-05Browser: Add DuckDuckGo to bookmarks (#4288)Daniel Lemos
2020-11-10LaunchServer: Add hsp=/bin/HackStudio file association to configBrendan Coles
2020-11-10Base: remove unnecessary Game config files from /home/anon/.config/Brendan Coles