summaryrefslogtreecommitdiff
path: root/Documentation
AgeCommit message (Collapse)Author
2022-12-19Documentation: Adjust default TARGET to x86_64 in the documentation0xxFF
2022-12-17Documentation: Explain CMake 3.25.x requirementAndrew Kaster
2022-12-17Documentation: Clarify that clang can be used as a host compilerAndrew Kaster
2022-12-16Documentation: Add libssl-dev in the debian / ubuntu requirementsGurkirat Singh
In the fresh and minimal installations dev package are often stripped. This commit will install the libssl dev packages required in `Utilities/cmcurl/CMakeLists.txt:608`.
2022-12-10Documentation: Describe extra clang tools built alongside BuildClang.shAndrew Kaster
Also rephrase some of the information on updated clang-format binaries
2022-12-09Documentation: Add a note on paths in the kernel development guidelinesLiav A
Add a note on hardcoded paths so everyone know that this is not an appropriate thing to do when writing kernel code.
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
This will make it easier to support both string types at the same time while we convert code, and tracking down remaining uses. One big exception is Value::to_string() in LibJS, where the name is dictated by the ToString AO.
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
2022-12-05Documentation: Fix typo in AdvancedBuildInstructions.mdAgustin Gianni
Fixes a small typo where the word `are` was missing.
2022-12-04Meta: Update all references of clang-format-14 to clang-format-15Liav A
Also, we add a section that describes how to get an updated clang-format with multiple possible options to do that.
2022-12-03Documentation: Recommend CLion code style settings over manual stepsAndreas Oppebøen
Changing the naming conventions one-by-one was tedious and error-prone. A settings file is likely to be more forward compatible than a screenshot. The settings file was made by repeating the manual steps provided in the documentation, and exporting the file in CLion.
2022-12-03Meta: Switch to clang-format-15 as the standard formatterLinus Groh
The two major changes noticeable on the SerenityOS codebase are: - Much improved support for const placement, clang-format-14 ignored our east-const configuration in various places - Different formatting for requires clauses, now breaking them onto their own line, which helps with readability a bit Current versions of CLion also ship LLVM 15, so the built-in formatting now matches CI formatting again :^)
2022-12-03Documentation: Update WSL QEMU Installation Requirementssno2
As Evil stated in the Discord, WSL users must install the DLL libraries with their QEMU Installation or else they will receive obscure errors about the syntax of the Meta/run.sh file as shown in SerenityOS#14033.
2022-11-25Documentation: Add a document about TmpFSLiav A
2022-11-25Documentation: Add guidelines document for kernel developmentLiav A
2022-11-03Documentation: Give collapsed sections consistent headersFiliph Sandström
2022-11-02Documentation: Update macOS build dependencies to gcc-12John Diamond
Since commit bc2ebcadc serenity requires gcc version 12 or later to build, so let's update the homebrew package version to match that.
2022-10-27Meta: Add configuration file for YouCompleteMeGunnar Beutner
YouCompleteMe is a plugin for Vim which provides code-completion functionality. This change adds a configuration file which makes YouCompleteMe aware of which compile flags to use with clangd.
2022-10-25Everywhere: Require version >= 12 for GCC host compilerLinus Groh
So far we've gotten away with using GCC 11 for Lagom and to compile the toolchain, but via #15795 we discovered a compiler bug that has been fixed in the latest version but would error the build with CI's GCC 11. Time for an upgrade :^) We already use ubuntu-22.04 images in most places, so this is pretty straightforward. The only exception is Idan's self-hosted runner, which uses Ubuntu Focal. LibJS should build fine with GCC 11, still.
2022-10-15Documentation: Add FAQ regarding MP3 patentskleines Filmröllchen
2022-10-13Documentation: Update VSCodeConfiguration.mdleeight
Because x86-64 is the default target, so update the related documentations. https://github.com/SerenityOS/serenity/commit/74018be739aa8fee6979c750beee0105867f6dcc
2022-10-12Documentation: Add initial document about the Kernel graphics subsystemLiav A
2022-10-12Documentation: Update CLion Configuration to use the x86-64 targetKenneth Myhra
Since the default target is x86-64 after PR #15441 was merged, then let us update the CLion Configuration accordingly.
2022-10-09Documentation: Update AddNewIDLFile for GC and Exposed changesAndrew Kaster
2022-10-03Documentation: Change references to uid based sockets to sidsPeter Elliott
2022-09-23Documentation: Add a document about the Kernel IOWindow conceptLiav A
2022-09-21Everywhere: Rename WrapperGenerator to BindingsGeneratorLinus Groh
This code generator no longer creates JS wrappers for platform objects in the old sense, instead they're JS objects internally themselves. Most of what we generate now are prototypes - which can be seen as bindings for the internal C++ methods implementing getters, setters, and methods - as well as object constructors, i.e. bindings for the internal create_with_global_object() method. Also tweak the naming of various CMake glue code existing around this.
2022-09-16Everywhere: Fully remove the separate LibM directoryTim Schumacher
2022-09-14Everywhere: Fix a variety of typosBrian Gianforcaro
Spelling fixes found by `codespell`.
2022-09-06Documentation: Amend comment describing use of "virtual" and "final"Arun Nanduri
2022-09-06LibWeb+LibJS: Make the EventTarget hierarchy (incl. DOM) GC-allocatedAndreas Kling
This is a monster patch that turns all EventTargets into GC-allocated PlatformObjects. Their C++ wrapper classes are removed, and the LibJS garbage collector is now responsible for their lifetimes. There's a fair amount of hacks and band-aids in this patch, and we'll have a lot of cleanup to do after this.
2022-09-06LibWeb: Make DOM::Event and all its subclasses GC-allocatedAndreas Kling
2022-09-06LibWeb: Make CSSRule and all its subclasses GC-allocatedAndreas Kling
2022-09-02Meta+Tests: Allow running FLAC spec testskleines Filmröllchen
The FLAC "spec tests", or rather the test suite by xiph that exercises weird FLAC features and edge cases, can be found at https://github.com/ietf-wg-cellar/flac-test-files and is a good challenge for our FLAC decoder to become more spec compliant. Running these tests is similar to LibWasm spec tests, you need to pass INCLUDE_FLAC_SPEC_TESTS to CMake. As of integrating these tests, 23 out of 63 fail. :yakplus:
2022-08-24Documentation: Remove execute bit from image fileBrian Gianforcaro
2022-08-22Documentation: Change spelling error in CLionConfiguration.mdSkye Sprung
Change "want exclude" to "want to exclude"
2022-08-19Docs: Update CLion configuration for WSLRoberto Bampi
In CLion on Windows subsystem for linux (WSL) we need to set up a CLion toolchain so that the IDE can find the correct CMake.
2022-08-14Base: Launch WebContent at session start-upLucas CHOLLET
2022-08-14Documentation: Add missing step when creating a new IDL typeSam Atkins
If you use your new IDL class as a type in an IDL file without doing this, you'll get confusing error messages.
2022-08-14Everywhere: Get rid of the fbdev kernel boot argument remaindersLiav A
2022-08-08Documentation: Add clang-format variant to EmacsConfiguration.mdRiyyi
Add a variant of auto formatting using clang-format that doesn't use additional packages. It works by adding a buffer-local hook to `'before-save` for all C++ project files.
2022-08-01Documentation: Fix c_cpp_properties.json typoChun Ngai Au
The current compilerArgs will cause an error when VSCode's C++ extension queries the compiler for defaults, causing it to revert to the system's default compiler.
2022-07-21Documentation: Add a table of contents for DocumentationSam Atkins
2022-07-21Documentation: Rename UsingQtCreator.mdSam Atkins
This name was the odd one out among the IDE/Editor guides.
2022-07-19Everywhere: Fully remove the separate LibPthread directoryTim Schumacher
2022-07-17LibWeb: Rename FormattingState to LayoutStateAndreas Kling
This seems a bit more descriptive (and also a bit shorter).
2022-07-11Documentation: Merge UsingFontEditor into existing FontEditor manpagekleines Filmröllchen
The generate-manpages script needs to be updated again to handle the new PNGs in section 1. (I'm intentionally not making this a multi-directory glob.)
2022-07-11Documentation: Move IPC endpoint documentation to manpage section 4kleines Filmröllchen
2022-07-11Documentation: Move all file format documentation into its own manpagekleines Filmröllchen
The documentation is largely unchanged except for adoption into the standard manpage format.
2022-07-06FontEditor: Rename FontEditorWidget => FontEditor::MainWidgetthankyouverycool