diff --git a/README.md b/README.md index c197dbf3..8c57399e 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ jobs: if-no-files-found: error include-hidden-files: true retention-days: 1 - + call-jekyll-build: needs: prep uses: LizardByte/LizardByte.github.io/.github/workflows/jekyll-build.yml@master @@ -110,15 +110,14 @@ CONFIG_FILE: _config.yml EXTRACT_ARCHIVE: pre_built_database.zip # if there is a nested archive to extract GITHUB_TIMEOUT: 10 # timeout in minutes to use when searching for GitHub artifacts, max 15 THEME_REF: master -``` +``` Additionally, do the following: 1. Deactivate the `stable` version 2. Make the `latest` version hidden -3. Add project as a subproject of `LizardByte-gh-pages-main` -4. Update branch protection rules in GitHub repo settings to require status checks from ReadTheDocs -5. Add the below `.readthedocs.yaml` file to the root of the repo, or a custom path as specified in the project settings +3. Update branch protection rules in GitHub repo settings to require status checks from ReadTheDocs +4. Add the below `.readthedocs.yaml` file to the root of the repo, or a custom path as specified in the project settings ```yml --- diff --git a/_config_theme.yml b/_config_theme.yml index 7acb90e1..0dd64310 100644 --- a/_config_theme.yml +++ b/_config_theme.yml @@ -131,6 +131,7 @@ exclude: - Gemfile.lock - LICENSE - README.md + - scripts/ include: - .well-known diff --git a/_posts/2025-01-06-welcome.md b/_posts/2025-01-06-welcome.md index 80712b91..1cf5875d 100644 --- a/_posts/2025-01-06-welcome.md +++ b/_posts/2025-01-06-welcome.md @@ -6,7 +6,8 @@ gh-repo: LizardByte/LizardByte.github.io gh-badge: [follow, star] tags: [news] comments: true -author: ReenigneArcher +authors: + - github: ReenigneArcher --- We're thrilled to have you here. This blog is your go-to source for all the latest announcements, updates, and news about LizardByte projects. Whether you're a developer, a tech enthusiast, or just curious about what we do, you'll find valuable insights and information here. diff --git a/_posts/guides-community/2023-09-14-remote-ssh-headless-sunshine-setup.md b/_posts/guides-community/2023-09-14-remote-ssh-headless-sunshine-setup.md index a0bd3c85..f2dd763b 100644 --- a/_posts/guides-community/2023-09-14-remote-ssh-headless-sunshine-setup.md +++ b/_posts/guides-community/2023-09-14-remote-ssh-headless-sunshine-setup.md @@ -5,7 +5,8 @@ gh-repo: LizardByte/LizardByte.github.io gh-badge: [follow, star] tags: [community-guide, community-guide-sunshine, linux, sunshine] comments: true -author: e-dong +authors: + - github: e-dong distro-tabs: - name: 'Debian based' @@ -24,7 +25,7 @@ distro-tabs: # e.g. sudo pacman -S openssh-runit ``` - name: 'Alpine based' - content: + content: - | ```bash sudo apk update @@ -42,7 +43,7 @@ distro-tabs: ```bash sudo yum install openssh-server ``` - + service-tabs: - name: SystemD content: diff --git a/_posts/guides-community/2024-04-18-discord-call-cancellation-sunshine-linux.md b/_posts/guides-community/2024-04-18-discord-call-cancellation-sunshine-linux.md index 13d0fbe6..60439420 100644 --- a/_posts/guides-community/2024-04-18-discord-call-cancellation-sunshine-linux.md +++ b/_posts/guides-community/2024-04-18-discord-call-cancellation-sunshine-linux.md @@ -5,7 +5,8 @@ gh-repo: LizardByte/LizardByte.github.io gh-badge: [follow, star] tags: [community-guide, community-guide-sunshine, linux, sunshine, discord] comments: true -author: RickAndTired +authors: + - github: RickAndTired --- 1. Set your normal *Sound Output* volume to 100% diff --git a/_posts/guides-community/2024-05-24-discord-call-cancellation-sunshine-windows.md b/_posts/guides-community/2024-05-24-discord-call-cancellation-sunshine-windows.md index 1c0ea6b9..607bce21 100644 --- a/_posts/guides-community/2024-05-24-discord-call-cancellation-sunshine-windows.md +++ b/_posts/guides-community/2024-05-24-discord-call-cancellation-sunshine-windows.md @@ -6,7 +6,8 @@ gh-repo: LizardByte/LizardByte.github.io gh-badge: [follow, star] tags: [community-guide, community-guide-sunshine, windows, sunshine, discord] comments: true -author: BeeLeDev +authors: + - github: BeeLeDev --- ## Voicemeeter Configuration diff --git a/_posts/guides-community/2024-10-16-autostart-sunshine-on-boot-without-auto-login.md b/_posts/guides-community/2024-10-16-autostart-sunshine-on-boot-without-auto-login.md index 2c63563b..bfe23eb1 100644 --- a/_posts/guides-community/2024-10-16-autostart-sunshine-on-boot-without-auto-login.md +++ b/_posts/guides-community/2024-10-16-autostart-sunshine-on-boot-without-auto-login.md @@ -5,7 +5,8 @@ gh-repo: LizardByte/LizardByte.github.io gh-badge: [follow, star] tags: [community-guide, community-guide-sunshine, linux, sunshine] comments: true -author: MidwesternRodent +authors: + - github: MidwesternRodent editor-tabs: - name: 'nano' @@ -200,7 +201,7 @@ allowed to access this machine over SSH, and will allow us to establish an SSH c to the SSH server running on the localhost. ```bash -cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys +cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys ``` {% include admonition.html type="tip" body=" diff --git a/_posts/guides/2024-02-01-multi-platform-cpp-development-in-clion.md b/_posts/guides/2024-02-01-multi-platform-cpp-development-in-clion.md index 9c6cd76f..73445387 100644 --- a/_posts/guides/2024-02-01-multi-platform-cpp-development-in-clion.md +++ b/_posts/guides/2024-02-01-multi-platform-cpp-development-in-clion.md @@ -7,7 +7,8 @@ gh-badge: [follow, star] tags: [clion, c++, cpp, cmake, dev, guide, linux, macos, windows] thumbnail-img: /assets/img/thumbnails/clion.png comments: true -author: ReenigneArcher +authors: + - github: ReenigneArcher --- ## Introduction @@ -37,9 +38,9 @@ and from a single system. ```Dockerfile FROM ubuntu:22.04 - + RUN DEBIAN_FRONTEND="noninteractive" apt-get update && apt-get -y install tzdata - + RUN apt-get update \ && apt-get install -y build-essential \ gcc \ diff --git a/_posts/guides/2024-12-08-git-commit-signing-in-windows.md b/_posts/guides/2024-12-08-git-commit-signing-in-windows.md index c74d5053..4094f8fa 100644 --- a/_posts/guides/2024-12-08-git-commit-signing-in-windows.md +++ b/_posts/guides/2024-12-08-git-commit-signing-in-windows.md @@ -6,7 +6,8 @@ gh-repo: LizardByte/LizardByte.github.io gh-badge: [follow, star] tags: [dev, git, github, guide, windows] comments: true -author: ReenigneArcher +authors: + - github: ReenigneArcher --- ## Introduction @@ -20,7 +21,7 @@ This post will show you how to sign your Git commits in Windows using GPG and Kl 1. Open Kleopatra and select "New Key Pair" ![New Key Pair](/assets/img/posts/2024-12-08-git-commit-signing-in-windows/new-key-pair.png) - + 2. Enter your GitHub username and email. The email must be one you have assigned to your GitHub account. You can find your no-reply email https://github.com/settings/emails on this page if you have one set. 3. Optionally, expand "Advanced Options" and change the "Key Material" option. I used "rsa4096". @@ -122,7 +123,7 @@ This approach will allow previously verified commits to remain verified. and edit each commit to adjust. Finally, when you amend the commit do so with the following command. ```bash - git commit --amend --date=now --no-edit + git commit --amend --date=now --no-edit ``` ## Conclusion diff --git a/_posts/releases/sunshine/2025-01-18-v2025.118.151840.md b/_posts/releases/sunshine/2025-01-18-v2025.118.151840.md index 8f462864..6b2e975d 100644 --- a/_posts/releases/sunshine/2025-01-18-v2025.118.151840.md +++ b/_posts/releases/sunshine/2025-01-18-v2025.118.151840.md @@ -6,7 +6,8 @@ gh-badge: [follow, fork, star] tags: [release, sunshine] release-tag: v2025.118.151840 comments: true -author: LizardByte-bot +authors: + - github: LizardByte-bot --- ## Attention diff --git a/_posts/releases/sunshine/2025-01-22-v2025.122.141614.md b/_posts/releases/sunshine/2025-01-22-v2025.122.141614.md index a93715e0..23319020 100644 --- a/_posts/releases/sunshine/2025-01-22-v2025.122.141614.md +++ b/_posts/releases/sunshine/2025-01-22-v2025.122.141614.md @@ -6,7 +6,8 @@ gh-repo: LizardByte/Sunshine gh-badge: [follow, fork, star] tags: [release, sunshine] comments: true -author: LizardByte-bot +authors: + - github: LizardByte-bot --- ## What's Changed diff --git a/_posts/releases/sunshine/2025-06-28-v2025.628.4510.md b/_posts/releases/sunshine/2025-06-28-v2025.628.4510.md index 45f5a3cb..b49a582b 100644 --- a/_posts/releases/sunshine/2025-06-28-v2025.628.4510.md +++ b/_posts/releases/sunshine/2025-06-28-v2025.628.4510.md @@ -6,7 +6,8 @@ gh-repo: LizardByte/Sunshine gh-badge: [follow, fork, star] tags: [release, sunshine] comments: true -author: LizardByte-bot +authors: + - github: LizardByte-bot --- ## Attention diff --git a/third-party/beautiful-jekyll b/third-party/beautiful-jekyll index 9167f659..cfcfe462 160000 --- a/third-party/beautiful-jekyll +++ b/third-party/beautiful-jekyll @@ -1 +1 @@ -Subproject commit 9167f659ebd027f0caf7f76f0ae8a86da16e1c2a +Subproject commit cfcfe4624048e7f3411cf31df7aa376110a73517