summaryrefslogtreecommitdiff
path: root/Userland/Utilities/gml-format.cpp
AgeCommit message (Collapse)Author
2022-10-10Userland: Remove unecessary uses of __serenity__ macroAndrew Kaster
2022-04-11Utilities: Read positional arguments as Strings not char*sSam Atkins
This is a pretty trivial change so they're all batched together.
2022-04-03Utilities: Use default execpromises parameter to `pledge(..)`Brian Gianforcaro
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-02-19gml-format: Exit with non-0 exit code when the file formatting changesIdan Horowitz
This let's CI detect when the changes include incorrect GML formatting. We now also print a message to make it obvious why CI failed.
2022-02-13gml-format: Skip writing formatted GML to file if no changes were madeIdan Horowitz
This stops all GML files from appeared under the "Changes not staged for commit" section of the commit message comment due to the changed last-modified timestamp of the file.
2022-02-13gml-format+Playground: Print GML parsing error on formatting failureIdan Horowitz
2022-02-07LibGUI: Remove GML prefix in favor of proper namespacekleines Filmröllchen
Prefixes are very much a C thing which we don't need in C++. This commit moves all GML-related classes in LibGUI into the GUI::GML namespace, a change somewhat overdue.
2022-01-14gml-format: Port to LibMainLucas CHOLLET
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-05-12LibCore+Everywhere: Move OpenMode out of IODeviceAli Mohammad Pur
...and make it an enum class so people don't omit "OpenMode".
2021-04-22Everywhere: Use linusg@serenityos.org for my copyright headersLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
Good-bye LogStream. Long live AK::Format!
2021-01-12Userland: Move command-line utilities to Userland/Utilities/Andreas Kling