summaryrefslogtreecommitdiff
path: root/Userland/DevTools/HackStudio/ProjectFile.h
AgeCommit message (Collapse)Author
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
This makes it more symmetrical with adopt_own() (which is used to create a NonnullOwnPtr from the result of a naked new.)
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-21HackStudio: Display warning when opening binary filesItamar
We now detect and display a warning when we can't render the text of an opened file. Closes #5062.
2021-03-06HackStudio: Add ProjectFile::create_if_neededItamar
2021-01-12DevTools: Move to Userland/DevTools/Andreas Kling