diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 367d441e37..93c519cf5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ concurrency: jobs: Lagom: - if: github.repository == 'LadybirdWebBrowser/ladybird' + if: github.repository == 'LadybirdBrowser/ladybird' strategy: fail-fast: false diff --git a/.github/workflows/dev-container.yml b/.github/workflows/dev-container.yml index 00cee41f3f..7139ac69f6 100644 --- a/.github/workflows/dev-container.yml +++ b/.github/workflows/dev-container.yml @@ -17,7 +17,7 @@ permissions: jobs: build: - if: github.repository == 'LadybirdWebBrowser/ladybird' + if: github.repository == 'LadybirdBrowser/ladybird' runs-on: ubuntu-latest steps: diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index 278a8a6e2a..9d6b5d183d 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -9,7 +9,7 @@ jobs: run_and_update_results: runs-on: self-hosted if: false - #if: always() && github.repository == 'LadybirdWebBrowser/ladybird' && github.ref == 'refs/heads/master' + #if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master' concurrency: libjs-test262 @@ -19,7 +19,7 @@ jobs: echo "Cleaning up previous run" rm -rf "${{ github.workspace }}/*" - - name: Checkout LadybirdWebBrowser/ladybird + - name: Checkout LadybirdBrowser/ladybird uses: actions/checkout@v4 - name: Checkout SerenityOS/libjs-test262 diff --git a/.github/workflows/lintcommits.yml b/.github/workflows/lintcommits.yml index 48d37e8559..b0dc9fa33d 100644 --- a/.github/workflows/lintcommits.yml +++ b/.github/workflows/lintcommits.yml @@ -8,7 +8,7 @@ on: [pull_request_target] jobs: lint_commits: runs-on: ubuntu-22.04 - if: always() && github.repository == 'LadybirdWebBrowser/ladybird' + if: always() && github.repository == 'LadybirdBrowser/ladybird' steps: - name: Lint PR commits @@ -91,4 +91,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.LADYBIRD_BOT_TOKEN }} with: - msg: "Hello!\n\nOne or more of the commit messages in this PR do not match the Ladybird [code submission policy](https://github.com/LadybirdWebBrowser/ladybird/blob/master/CONTRIBUTING.md#code-submission-policy), please check the `lint_commits` CI job for more details on which commits were flagged and why.\nPlease do not close this PR and open another, instead modify your commit message(s) with [git commit --amend](https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message) and force push those changes to update this PR." + msg: "Hello!\n\nOne or more of the commit messages in this PR do not match the Ladybird [code submission policy](https://github.com/LadybirdBrowser/ladybird/blob/master/CONTRIBUTING.md#code-submission-policy), please check the `lint_commits` CI job for more details on which commits were flagged and why.\nPlease do not close this PR and open another, instead modify your commit message(s) with [git commit --amend](https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message) and force push those changes to update this PR." diff --git a/.github/workflows/nightly-android.yml b/.github/workflows/nightly-android.yml index c93f0490dc..e1d16988b3 100644 --- a/.github/workflows/nightly-android.yml +++ b/.github/workflows/nightly-android.yml @@ -20,7 +20,7 @@ concurrency: jobs: CI: runs-on: ${{ matrix.os }} - if: always() && github.repository == 'LadybirdWebBrowser/ladybird' && github.ref == 'refs/heads/master' + if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master' strategy: fail-fast: false matrix: diff --git a/.github/workflows/serenity-js-artifacts.yml b/.github/workflows/serenity-js-artifacts.yml index c338111230..58588bc882 100644 --- a/.github/workflows/serenity-js-artifacts.yml +++ b/.github/workflows/serenity-js-artifacts.yml @@ -11,7 +11,7 @@ env: jobs: build-and-package: runs-on: ${{ matrix.os }} - if: always() && github.repository == 'LadybirdWebBrowser/ladybird' && github.ref == 'refs/heads/master' + if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master' strategy: fail-fast: false matrix: @@ -28,7 +28,7 @@ jobs: cancel-in-progress: true steps: - - name: Checkout LadybirdWebBrowser/ladybird + - name: Checkout LadybirdBrowser/ladybird uses: actions/checkout@v4 - name: "Set up environment" diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index aacd76b57f..d642dd0ff8 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false steps: - - name: Checkout LadybirdWebBrowser/ladybird + - name: Checkout LadybirdBrowser/ladybird uses: actions/checkout@v4 - name: Checkout SerenityOS/libjs-data libjs-wasm diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5577cf4654..c83d8a4b91 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -41,7 +41,7 @@ Nobody is perfect, and sometimes we mess things up. That said, here are some goo **Do:** * Write in idiomatic SerenityOS-style C++23, using the `AK` containers in all code. -* Conform to the project coding style found in [CodingStyle.md](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Documentation/CodingStyle.md). Use `clang-format` (version 18 or later) to automatically format C++ files. See [AdvancedBuildInstructions.md](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Documentation/AdvancedBuildInstructions.md#clang-format-updates) for instructions on how to get an up-to-date version if your OS distribution does not ship clang-format-18. +* Conform to the project coding style found in [CodingStyle.md](https://github.com/LadybirdBrowser/ladybird/blob/master/Documentation/CodingStyle.md). Use `clang-format` (version 18 or later) to automatically format C++ files. See [AdvancedBuildInstructions.md](https://github.com/LadybirdBrowser/ladybird/blob/master/Documentation/AdvancedBuildInstructions.md#clang-format-updates) for instructions on how to get an up-to-date version if your OS distribution does not ship clang-format-18. * Choose expressive variable, function and class names. Make it as obvious as possible what the code is doing. * Split your changes into separate, atomic commits (i.e. A commit per feature or fix, where the build, tests and the system are all functioning). * Make sure your commits are rebased on the master branch. diff --git a/Documentation/Browser/LibWebFromLoadingToPainting.md b/Documentation/Browser/LibWebFromLoadingToPainting.md index 31a60d236e..3fbdfc9b35 100644 --- a/Documentation/Browser/LibWebFromLoadingToPainting.md +++ b/Documentation/Browser/LibWebFromLoadingToPainting.md @@ -78,7 +78,7 @@ We separate CSS rules by their cascade origin. The two origins we're concerned w The cascade origin determines the processing order for rules. The "user-agent" style is the least important, so it gets processed first. Then author style is added on top of that. -Note: the user-agent style is a built-in CSS style sheet that lives in the LibWeb source code [here](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Userland/Libraries/LibWeb/CSS/Default.css). +Note: the user-agent style is a built-in CSS style sheet that lives in the LibWeb source code [here](https://github.com/LadybirdBrowser/ladybird/blob/master/Userland/Libraries/LibWeb/CSS/Default.css). The end product of style computation is a fully populated StyleProperties object. It has a StyleValue for each CSS::PropertyID. In spec parlance, these are the *computed* values. (Note that these are not the same as you get from `getComputedStyle()`, that API returns the *resolved* values.) diff --git a/Documentation/SelfHostedRunners.md b/Documentation/SelfHostedRunners.md index 333a5918e5..3804d33a71 100644 --- a/Documentation/SelfHostedRunners.md +++ b/Documentation/SelfHostedRunners.md @@ -54,7 +54,7 @@ tar xzf ./actions-runner-linux-x64-X.X.X.tar.gz ``` ### Link the runner to the repository ```shell -./config.sh --url https://github.com/LadybirdWebBrowser/ladybird --token INSERT_SECRET_TOKEN_HERE +./config.sh --url https://github.com/LadybirdBrowser/ladybird --token INSERT_SECRET_TOKEN_HERE ``` ### Configure the runner to protect against malicious PRs by adding the following line to .env: ```shell diff --git a/Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile b/Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile index 007cc55ef1..7533f046d9 100644 --- a/Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile +++ b/Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile @@ -22,7 +22,7 @@ FROM fedora:39 AS serenity-build WORKDIR /home RUN dnf install -y clang cmake git-core ninja-build -RUN git clone --depth=1 https://github.com/LadybirdWebBrowser/ladybird +RUN git clone --depth=1 https://github.com/LadybirdBrowser/ladybird RUN cd ladybird/Meta/Lagom && ./BuildFuzzers.sh diff --git a/SECURITY.md b/SECURITY.md index 4521c63307..4f942ece08 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,3 +1,3 @@ # Security Policy -Ladybird is unreleased software still in early development, and so bugs and vulnerabilities can be safely disclosed publicly. If you find an issue, we would prefer if you report it as a [GitHub issue](https://github.com/LadybirdWebBrowser/ladybird/issues/new). If your issue was found using a fuzzer, please check [oss-fuzz](https://bugs.chromium.org/p/oss-fuzz/issues/list?q=label:Proj-serenity) first to see if it has already been recorded. +Ladybird is unreleased software still in early development, and so bugs and vulnerabilities can be safely disclosed publicly. If you find an issue, we would prefer if you report it as a [GitHub issue](https://github.com/LadybirdBrowser/ladybird/issues/new). If your issue was found using a fuzzer, please check [oss-fuzz](https://bugs.chromium.org/p/oss-fuzz/issues/list?q=label:Proj-serenity) first to see if it has already been recorded.