From da3c39e9e36bc8754cc02a60c8d1961f7e7dde9b Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 29 Jul 2022 09:45:26 -0400 Subject: [PATCH] change org to LizardByte (#263) - updates issue template - updates docker readme --- .github/ISSUE_TEMPLATE/bug-report.yml | 28 +++++++++++--- .github/workflows/CI.yml | 26 ++++++------- .github/workflows/localize.yml | 2 +- CMakeLists.txt | 12 +++--- DOCKER_README.md | 38 +++++++------------ README.rst | 34 ++++++++--------- docs/source/about/advanced_usage.rst | 2 +- docs/source/about/docker.rst | 2 +- docs/source/about/installation.rst | 22 +++++------ docs/source/about/third_party_packages.rst | 17 +-------- docs/source/about/usage.rst | 4 +- docs/source/building/build.rst | 4 +- docs/source/building/linux.rst | 2 +- docs/source/building/macos.rst | 2 +- docs/source/building/windows.rst | 2 +- docs/source/contributing/contributing.rst | 2 +- docs/source/contributing/localization.rst | 4 +- docs/source/index.rst | 2 +- docs/source/troubleshooting/general.rst | 2 +- docs/source/troubleshooting/linux.rst | 2 +- docs/source/troubleshooting/macos.rst | 2 +- docs/source/troubleshooting/windows.rst | 2 +- packaging/linux/aur/PKGBUILD | 2 +- ...nshine.yml => dev.lizardbyte.sunshine.yml} | 2 +- packaging/macos/Portfile | 8 ++-- scripts/_locale.py | 2 +- scripts/build-private.sh | 2 +- scripts/build-sunshine.sh | 2 +- src_assets/common/assets/web/index.html | 11 +++--- src_assets/common/config/sunshine.conf | 2 +- src_assets/macos/assets/Info.plist | 2 +- 31 files changed, 117 insertions(+), 129 deletions(-) rename packaging/linux/flatpak/{com.github.sunshinestream.sunshine.yml => dev.lizardbyte.sunshine.yml} (99%) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index a9c38290..8e4bfc76 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -5,7 +5,7 @@ body: attributes: value: > **THIS IS NOT THE PLACE TO ASK FOR SUPPORT!** - Please use [Github Discussions](https://github.com/SunshineStream/Sunshine/discussions) for support issues. + Please use [Discord](https://docs.lizardbyte.dev/about/support.html#discord) for support issues. - type: textarea id: description attributes: @@ -23,15 +23,25 @@ body: attributes: label: Additional Context description: Add any other context about the bug here. - - type: input + - type: dropdown id: os attributes: - label: Sunshine Host Operating System and Version - placeholder: eg. Windows 10, macOS 10.15, Ubuntu 20.04, etc. + label: Host Operating System + description: What version operating system are you running the software on? + options: + - Linux + - macOS + - Windows + - other + - type: input + id: os-version + attributes: + label: Operating System Version + description: Provide the version of the operating system. Additionally a build number would be helpful. validations: required: true - type: input - id: architecture + id: os-architecture attributes: label: Architecture placeholder: e.g. 32 bit, 64 bit, arm @@ -41,7 +51,7 @@ body: id: version attributes: label: Sunshine Version - placeholder: eg. 0.11.1 + placeholder: eg. 0.14.0 validations: required: true - type: input @@ -76,6 +86,12 @@ body: placeholder: e.g. PipeWire/KVM/X11 validations: required: false + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: Shell - type: markdown attributes: value: | diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5448633f..649ab696 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,7 +31,7 @@ jobs: id: verify_changelog if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }} # base_ref for pull request check, ref for push - uses: SunshineStream/actions/verify_changelog@master + uses: LizardByte/.github/actions/verify_changelog@master with: token: ${{ secrets.GITHUB_TOKEN }} outputs: @@ -209,8 +209,8 @@ jobs: - name: Build Linux Flatpak working-directory: build run: | - sudo su $(whoami) -c 'flatpak run org.flatpak.Builder --repo=repo --force-clean build-sunshine com.github.sunshinestream.sunshine.yml' - sudo su $(whoami) -c 'flatpak build-bundle ./repo ../artifacts/sunshine.flatpak com.github.sunshinestream.sunshine' + sudo su $(whoami) -c 'flatpak run org.flatpak.Builder --repo=repo --force-clean build-sunshine dev.lizardbyte.sunshine.yml' + sudo su $(whoami) -c 'flatpak build-bundle ./repo ../artifacts/sunshine.flatpak dev.lizardbyte.sunshine' - name: Upload Artifacts uses: actions/upload-artifact@v3 @@ -220,9 +220,9 @@ jobs: - name: Create Release if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: SunshineStream/actions/create_release@master + uses: LizardByte/.github/actions/create_release@master with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GH_BOT_TOKEN }} next_version: ${{ needs.check_changelog.outputs.next_version }} last_version: ${{ needs.check_changelog.outputs.last_version }} release_body: ${{ needs.check_changelog.outputs.release_body }} @@ -415,9 +415,9 @@ jobs: - name: Create Release if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: SunshineStream/actions/create_release@master + uses: LizardByte/.github/actions/create_release@master with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GH_BOT_TOKEN }} next_version: ${{ needs.check_changelog.outputs.next_version }} last_version: ${{ needs.check_changelog.outputs.last_version }} release_body: ${{ needs.check_changelog.outputs.release_body }} @@ -481,9 +481,9 @@ jobs: # no artifacts to release currently # - name: Create Release # if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} -# uses: SunshineStream/actions/create_release@master +# uses: LizardByte/.github/actions/create_release@master # with: -# token: ${{ secrets.GITHUB_TOKEN }} +# token: ${{ secrets.GH_BOT_TOKEN }} # next_version: ${{ needs.check_changelog.outputs.next_version }} # last_version: ${{ needs.check_changelog.outputs.last_version }} # release_body: ${{ needs.check_changelog.outputs.release_body }} @@ -692,9 +692,9 @@ jobs: - name: Create Release if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: SunshineStream/actions/create_release@master + uses: LizardByte/.github/actions/create_release@master with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GH_BOT_TOKEN }} next_version: ${{ needs.check_changelog.outputs.next_version }} last_version: ${{ needs.check_changelog.outputs.last_version }} release_body: ${{ needs.check_changelog.outputs.release_body }} @@ -760,9 +760,9 @@ jobs: - name: Create Release if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: SunshineStream/actions/create_release@master + uses: LizardByte/.github/actions/create_release@master with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GH_BOT_TOKEN }} next_version: ${{ needs.check_changelog.outputs.next_version }} last_version: ${{ needs.check_changelog.outputs.last_version }} release_body: ${{ needs.check_changelog.outputs.release_body }} diff --git a/.github/workflows/localize.yml b/.github/workflows/localize.yml index f4828e99..d48ab223 100644 --- a/.github/workflows/localize.yml +++ b/.github/workflows/localize.yml @@ -76,7 +76,7 @@ jobs: with: add-paths: | locale/*.po - token: ${{ secrets.GH_PAT }} # must trigger PR tests + token: ${{ secrets.GH_BOT_TOKEN }} # must trigger PR tests commit-message: New localization template branch: localize/update delete-branch: true diff --git a/CMakeLists.txt b/CMakeLists.txt index d86a7d9a..5e94d53a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0) project(Sunshine VERSION 0.14.0 DESCRIPTION "Sunshine is a Gamestream host for Moonlight." - HOMEPAGE_URL "https://sunshinestream.github.io" + HOMEPAGE_URL "https://app.lizardbyte.dev" ) set(PROJECT_LONG_DESCRIPTION "Sunshine is a self hosted, low latency, cloud gaming solution with support for AMD, \ @@ -20,7 +20,7 @@ if(${SUNSHINE_CONFIGURE_APPIMAGE}) elseif(${SUNSHINE_CONFIGURE_AUR}) configure_file(packaging/linux/aur/PKGBUILD PKGBUILD @ONLY) elseif(${SUNSHINE_CONFIGURE_FLATPAK}) - configure_file(packaging/linux/flatpak/com.github.sunshinestream.sunshine.yml com.github.sunshinestream.sunshine.yml @ONLY) + configure_file(packaging/linux/flatpak/dev.lizardbyte.sunshine.yml dev.lizardbyte.sunshine.yml @ONLY) elseif(${SUNSHINE_CONFIGURE_PORTFILE}) configure_file(packaging/macos/Portfile Portfile @ONLY) endif() @@ -480,11 +480,11 @@ target_compile_options(sunshine PRIVATE $<$:${SUNSHINE_COM # CPACK / Packaging # Common options -set(CPACK_PACKAGE_NAME "SunshineStream") -set(CPACK_PACKAGE_VENDOR "SunshineStream") +set(CPACK_PACKAGE_NAME "Sunshine") +set(CPACK_PACKAGE_VENDOR "LizardByte") set(CPACK_PACKAGE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/cpack_artifacts) -set(CPACK_PACKAGE_CONTACT "https://github.com/SunshineStream/Sunshine") -set(CPACK_DEBIAN_PACKAGE_MAINTAINER "https://github.com/SunshineStream/Sunshine") +set(CPACK_PACKAGE_CONTACT "https://app.lizardbyte.dev") +set(CPACK_DEBIAN_PACKAGE_MAINTAINER "https://github.com/LizardByte") set(CPACK_PACKAGE_DESCRIPTION ${CMAKE_PROJECT_DESCRIPTION}) set(CPACK_PACKAGE_HOMEPAGE_URL ${CMAKE_PROJECT_HOMEPAGE_URL}) set(CPACK_RESOURCE_FILE_LICENSE ${PROJECT_SOURCE_DIR}/LICENSE) diff --git a/DOCKER_README.md b/DOCKER_README.md index aa2f1017..a2647e00 100644 --- a/DOCKER_README.md +++ b/DOCKER_README.md @@ -11,16 +11,10 @@ docker run -d \ -e PUID= \ -e PGID= \ -e TZ= \ - -p 47990:47990 \ - -p 47984:47984 \ - -p 47989:47989 \ + -p 47984-47990:47984-47990/tcp \ -p 48010:48010 \ - -p 47998:47998 \ - -p 47999:47999 \ - -p 48000:48000 \ - -p 48002:48002 \ - -p 48010:48010 \ - sunshinestream/sunshine + -p 47998-48000:47998-48000/udp \ + lizardbyte/sunshine ``` To update the container it must be removed and recreated: @@ -31,7 +25,7 @@ docker stop sunshine # Remove the container docker rm sunshine # Pull the latest update -docker pull sunshinestream/sunshine +docker pull lizardbyte/sunshine # Run the container with the same parameters as before docker run -d ... ``` @@ -44,25 +38,19 @@ Create a `docker-compose.yml` file with the following contents (substitute your version: '3' services: sunshine: - image: sunshinestream/sunshine + image: lizardbyte/sunshine container_name: sunshine restart: unless-stopped volumes: - - :/config + - :/config environment: - - PUID= - - PGID= - - TZ= + - PUID= + - PGID= + - TZ= ports: - - "47990:47990" - - "47984:47984" - - "47989:47989" - - "48010:48010" - - "47998:47998" - - "47999:47999" - - "48000:48000" - - "48002:48002" - - "48010:48010" + - 47984-47990:47984-47990/tcp + - 48010:48010 + - 47998-48000:47998-48000/udp ``` Create and start the container (run the command from the same folder as your `docker-compose.yml` file): @@ -88,7 +76,7 @@ container. **Example:** `-p external:internal` - This shows the port mapping from internal to external of the container. Therefore `-p 47990:47990` would expose port `47990` from inside the container to be accessible from the host's IP on port `47990` (e.g. `http://:47990`). The internal port must be `47990`, but the external port may be changed -(e.g. `-p 8080:47990`). +(e.g. `-p 8080:47990`). All the ports listed in the `docker run` and `docker-compose` examples are required. | Parameter | Function | Example Value | Required | diff --git a/README.rst b/README.rst index eaf4b4a5..1e1a156e 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,8 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/README.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/README.rst Overview ======== -SunshineStream has the full documentation hosted on `Read the Docs `_. +LizardByte has the full documentation hosted on `Read the Docs `_. About ----- @@ -29,13 +29,13 @@ These are the advantages of Sunshine over GeForce Experience. Integrations ------------ -.. image:: https://img.shields.io/github/workflow/status/sunshinestream/sunshine/CI/master?label=CI%20build&logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/workflow/status/lizardbyte/sunshine/CI/master?label=CI%20build&logo=github&style=for-the-badge :alt: GitHub Workflow Status (CI) - :target: https://github.com/SunshineStream/Sunshine/actions/workflows/CI.yml?query=branch%3Amaster + :target: https://github.com/LizardByte/Sunshine/actions/workflows/CI.yml?query=branch%3Amaster -.. image:: https://img.shields.io/github/workflow/status/sunshinestream/sunshine/localize/nightly?label=localize%20build&logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/workflow/status/lizardbyte/sunshine/localize/nightly?label=localize%20build&logo=github&style=for-the-badge :alt: GitHub Workflow Status (localize) - :target: https://github.com/SunshineStream/Sunshine/actions/workflows/localize.yml?query=branch%3Anightly + :target: https://github.com/LizardByte/Sunshine/actions/workflows/localize.yml?query=branch%3Anightly .. image:: https://img.shields.io/readthedocs/sunshinestream?label=Docs&style=for-the-badge&logo=readthedocs :alt: Read the Docs @@ -48,26 +48,24 @@ Integrations Support --------- -.. image:: https://img.shields.io/discord/938534566107418705?label=Discord&style=for-the-badge&color=blue&logo=discord - :alt: Discord - :target: https://sunshinestream.github.io/discord - -.. image:: https://img.shields.io/github/discussions/sunshinestream/sunshine?logo=github&style=for-the-badge - :alt: GitHub Discussions - :target: https://github.com/SunshineStream/Sunshine/discussions +Our support methods are listed in our `LizardByte Docs `_. Downloads --------- -.. image:: https://img.shields.io/github/downloads/sunshinestream/sunshine/total?style=for-the-badge&logo=github +.. image:: https://img.shields.io/github/downloads/lizardbyte/sunshine/total?style=for-the-badge&logo=github :alt: GitHub Releases - :target: https://github.com/SunshineStream/Sunshine/releases/latest + :target: https://github.com/LizardByte/Sunshine/releases/latest -.. image:: https://img.shields.io/badge/dynamic/json?color=blue&label=AUR&style=for-the-badge&query=$.results.0.NumVotes&url=https%3A%2F%2Fgithub.com%2FSunshineStream%2Fservice-repo%2Freleases%2Fdownload%2Fdaily%2Faur_sunshine-git.json&logo=archlinux +.. image:: https://img.shields.io/badge/dynamic/json?color=blue&label=AUR&style=for-the-badge&query=$.results.0.NumVotes&url=https%3A%2F%2Fapp.lizardbyte.dev%2Funo%2Faur%2Fsunshine.json&logo=archlinux :alt: AUR votes + :target: https://aur.archlinux.org/packages/sunshine + +.. image:: https://img.shields.io/badge/dynamic/json?color=blue&label=AUR-git&style=for-the-badge&query=$.results.0.NumVotes&url=https%3A%2F%2Fapp.lizardbyte.dev%2Funo%2Faur%2Fsunshine-git.json&logo=archlinux + :alt: AUR-git votes :target: https://aur.archlinux.org/packages/sunshine-git .. comment - image:: https://img.shields.io/docker/pulls/sunshinestream/sunshine?style=for-the-badge&logo=docker + image:: https://img.shields.io/docker/pulls/lizardbyte/sunshine?style=for-the-badge&logo=docker :alt: Docker - :target: https://hub.docker.com/r/sunshinestream/sunshine + :target: https://hub.docker.com/r/lizardbyte/sunshine diff --git a/docs/source/about/advanced_usage.rst b/docs/source/about/advanced_usage.rst index 2cf18103..0d65175e 100644 --- a/docs/source/about/advanced_usage.rst +++ b/docs/source/about/advanced_usage.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/about/advanced_usage.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/about/advanced_usage.rst Advanced Usage ============== diff --git a/docs/source/about/docker.rst b/docs/source/about/docker.rst index f9afa251..8a597e26 100644 --- a/docs/source/about/docker.rst +++ b/docs/source/about/docker.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/DOCKER_README.md +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/DOCKER_README.md .. Todo:: This is a planned feature. Currently no Dockerfile or image exists for Sunshine. diff --git a/docs/source/about/installation.rst b/docs/source/about/installation.rst index cbe5aca3..f1687b3d 100644 --- a/docs/source/about/installation.rst +++ b/docs/source/about/installation.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/about/installation.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/about/installation.rst Installation ============ @@ -23,7 +23,7 @@ Follow the instructions for your preferred package type below. AppImage ^^^^^^^^ -.. image:: https://img.shields.io/github/issues/sunshinestream/sunshine/pkg:appimage?logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/issues/lizardbyte/sunshine/pkg:appimage?logo=github&style=for-the-badge :alt: GitHub issues by-label According to AppImageLint the AppImage can run on the following distros. @@ -54,7 +54,7 @@ AUR Package Debian Package ^^^^^^^^^^^^^^ -.. image:: https://img.shields.io/github/issues/sunshinestream/sunshine/pkg:deb?logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/issues/lizardbyte/sunshine/pkg:deb?logo=github&style=for-the-badge :alt: GitHub issues by-label #. Download ``sunshine.deb`` and run the following code. @@ -67,7 +67,7 @@ Debian Package Flatpak Package ^^^^^^^^^^^^^^^ -.. image:: https://img.shields.io/github/issues/sunshinestream/sunshine/pkg:flatpak?logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/issues/lizardbyte/sunshine/pkg:flatpak?logo=github&style=for-the-badge :alt: GitHub issues by-label .. Todo:: This package needs to have CUDA added. @@ -87,7 +87,7 @@ Flatpak Package RPM Package ^^^^^^^^^^^ -.. image:: https://img.shields.io/github/issues/sunshinestream/sunshine/pkg:rpm?logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/issues/lizardbyte/sunshine/pkg:rpm?logo=github&style=for-the-badge :alt: GitHub issues by-label #. Add `rpmfusion` repositories by running the following code. @@ -107,7 +107,7 @@ RPM Package macOS ----- -.. image:: https://img.shields.io/github/issues/sunshinestream/sunshine/os:macos?logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/issues/lizardbyte/sunshine/os:macos?logo=github&style=for-the-badge :alt: GitHub issues by-label pkg @@ -143,10 +143,10 @@ Portfile Windows ------- -.. image:: https://img.shields.io/github/issues/sunshinestream/sunshine/os:windows:10?logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/issues/lizardbyte/sunshine/os:windows:10?logo=github&style=for-the-badge :alt: GitHub issues by-label -.. image:: https://img.shields.io/github/issues/sunshinestream/sunshine/os:windows:11?logo=github&style=for-the-badge +.. image:: https://img.shields.io/github/issues/lizardbyte/sunshine/os:windows:11?logo=github&style=for-the-badge :alt: GitHub issues by-label Installed option: @@ -155,6 +155,6 @@ Installed option: Standalone option: #. Download and extract ``sunshine-windows.zip`` -.. _latest release: https://github.com/SunshineStream/Sunshine/releases/latest -.. _Dockerhub.io: https://hub.docker.com/repository/docker/sunshinestream/sunshine -.. _ghcr.io: https://github.com/orgs/SunshineStream/packages?repo_name=sunshine +.. _latest release: https://github.com/LizardByte/Sunshine/releases/latest +.. _Dockerhub.io: https://hub.docker.com/repository/docker/lizardbyte/sunshine +.. _ghcr.io: https://github.com/orgs/LizardByte/packages?repo_name=sunshine diff --git a/docs/source/about/third_party_packages.rst b/docs/source/about/third_party_packages.rst index 99c7e96c..456a201f 100644 --- a/docs/source/about/third_party_packages.rst +++ b/docs/source/about/third_party_packages.rst @@ -1,22 +1,9 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/about/third_party_packages.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/about/third_party_packages.rst Third Party Packages ==================== -.. Danger:: These packages are not maintained by SunshineStream. Use at your own risk. - -AUR (Arch Linux User Repository) --------------------------------- - -.. image:: https://img.shields.io/badge/dynamic/json?color=orange&label=AUR&style=for-the-badge&prefix=v&query=$.results.0.Version&url=https%3A%2F%2Fgithub.com%2FSunshineStream%2Fservice-repo%2Freleases%2Fdownload%2Fdaily%2Faur_sunshine.json&logo=archlinux - :alt: AUR version - :target: https://aur.archlinux.org/packages/sunshine - -.. image:: https://img.shields.io/badge/dynamic/json?color=yellowgreen&label=votes&style=for-the-badge&query=$.results.0.NumVotes&url=https%3A%2F%2Fgithub.com%2FSunshineStream%2Fservice-repo%2Freleases%2Fdownload%2Fdaily%2Faur_sunshine.json&logo=archlinux - :alt: AUR votes - -.. image:: https://img.shields.io/badge/dynamic/json?color=blue&label=maintainer&style=for-the-badge&query=$.results.0.Maintainer&url=https%3A%2F%2Fgithub.com%2FSunshineStream%2Fservice-repo%2Freleases%2Fdownload%2Fdaily%2Faur_sunshine.json&logo=archlinux - :alt: AUR maintainer +.. Danger:: These packages are not maintained by LizardByte. Use at your own risk. Chocolatey ---------- diff --git a/docs/source/about/usage.rst b/docs/source/about/usage.rst index da835bdf..009585ed 100644 --- a/docs/source/about/usage.rst +++ b/docs/source/about/usage.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/about/usage.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/about/usage.rst Usage ===== @@ -106,7 +106,7 @@ Sunshine needs access to `uinput` to create mouse and gamepad events. deb /usr/bin/sunshine ✔ rpm /usr/bin/sunshine ✔ AppImage ~/sunshine.AppImage ✖ - Flatpak flatpak run com.github.sunshinestream.sunshine ✖ + Flatpak flatpak run dev.lizardbyte.sunshine ✖ ======== ============================================== =============== Start once diff --git a/docs/source/building/build.rst b/docs/source/building/build.rst index a703959d..4ce4745e 100644 --- a/docs/source/building/build.rst +++ b/docs/source/building/build.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/building/build.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/building/build.rst Build ===== @@ -14,7 +14,7 @@ Ensure `git `_ is installed and run the following: .. code-block:: bash - git clone https://github.com/sunshinestream/sunshine.git --recurse-submodules + git clone https://github.com/lizardbyte/sunshine.git --recurse-submodules cd sunshine && mkdir build && cd build Compile diff --git a/docs/source/building/linux.rst b/docs/source/building/linux.rst index 475e0c66..c841ad61 100644 --- a/docs/source/building/linux.rst +++ b/docs/source/building/linux.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/building/linux.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/building/linux.rst Linux ===== diff --git a/docs/source/building/macos.rst b/docs/source/building/macos.rst index d20a5517..b719c6ee 100644 --- a/docs/source/building/macos.rst +++ b/docs/source/building/macos.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/building/macos.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/building/macos.rst macOS ===== diff --git a/docs/source/building/windows.rst b/docs/source/building/windows.rst index 7708da49..0c6dde57 100644 --- a/docs/source/building/windows.rst +++ b/docs/source/building/windows.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/building/windows.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/building/windows.rst Windows ======= diff --git a/docs/source/contributing/contributing.rst b/docs/source/contributing/contributing.rst index dfd2e080..e79fd4ea 100644 --- a/docs/source/contributing/contributing.rst +++ b/docs/source/contributing/contributing.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/contributing/contributing.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/contributing/contributing.rst Contributing ============ diff --git a/docs/source/contributing/localization.rst b/docs/source/contributing/localization.rst index 8127eda3..32ec4a5e 100644 --- a/docs/source/contributing/localization.rst +++ b/docs/source/contributing/localization.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/contributing/localization.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/contributing/localization.rst Localization ============ @@ -25,7 +25,7 @@ Only elements of the API are planned to be translated. .. Attention:: The rest API has not yet been implemented. Translations Basics - - The brand names `SunshineStream` and `Sunshine` should never be translated. + - The brand names `LizardByte` and `Sunshine` should never be translated. - Other brand names should never be translated. Examples: diff --git a/docs/source/index.rst b/docs/source/index.rst index aaa2663c..62697791 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/index.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/index.rst Table of Contents ================= diff --git a/docs/source/troubleshooting/general.rst b/docs/source/troubleshooting/general.rst index 322327cc..865214db 100644 --- a/docs/source/troubleshooting/general.rst +++ b/docs/source/troubleshooting/general.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/troubleshooting/general.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/troubleshooting/general.rst General ======= diff --git a/docs/source/troubleshooting/linux.rst b/docs/source/troubleshooting/linux.rst index 71e9eac0..5bac8c08 100644 --- a/docs/source/troubleshooting/linux.rst +++ b/docs/source/troubleshooting/linux.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/troubleshooting/linux.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/troubleshooting/linux.rst Linux ===== diff --git a/docs/source/troubleshooting/macos.rst b/docs/source/troubleshooting/macos.rst index 5a6ae658..f6014eb7 100644 --- a/docs/source/troubleshooting/macos.rst +++ b/docs/source/troubleshooting/macos.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/troubleshooting/macos.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/troubleshooting/macos.rst macOS ===== diff --git a/docs/source/troubleshooting/windows.rst b/docs/source/troubleshooting/windows.rst index 461bce0a..bb21589c 100644 --- a/docs/source/troubleshooting/windows.rst +++ b/docs/source/troubleshooting/windows.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/SunshineStream/Sunshine/tree/nightly/docs/source/troubleshooting/windows.rst +:github_url: https://github.com/LizardByte/Sunshine/tree/nightly/docs/source/troubleshooting/windows.rst Windows ======= diff --git a/packaging/linux/aur/PKGBUILD b/packaging/linux/aur/PKGBUILD index be0e38fe..ede1af25 100644 --- a/packaging/linux/aur/PKGBUILD +++ b/packaging/linux/aur/PKGBUILD @@ -1,4 +1,4 @@ -# Edit on github: https://github.com/SunshineStream/Sunshine/tree/nightly/packaging/linux/aur/PKGBUILD +# Edit on github: https://github.com/LizardByte/Sunshine/tree/nightly/packaging/linux/aur/PKGBUILD # Reference: https://wiki.archlinux.org/title/PKGBUILD pkgname=@SUNSHINE_AUR_PKG@ diff --git a/packaging/linux/flatpak/com.github.sunshinestream.sunshine.yml b/packaging/linux/flatpak/dev.lizardbyte.sunshine.yml similarity index 99% rename from packaging/linux/flatpak/com.github.sunshinestream.sunshine.yml rename to packaging/linux/flatpak/dev.lizardbyte.sunshine.yml index 4c16819d..7dd789b8 100644 --- a/packaging/linux/flatpak/com.github.sunshinestream.sunshine.yml +++ b/packaging/linux/flatpak/dev.lizardbyte.sunshine.yml @@ -1,4 +1,4 @@ -app-id: com.github.sunshinestream.sunshine +app-id: dev.lizardbyte.sunshine runtime: org.freedesktop.Platform runtime-version: "21.08" sdk: org.freedesktop.Sdk diff --git a/packaging/macos/Portfile b/packaging/macos/Portfile index 061027e9..8707cedc 100644 --- a/packaging/macos/Portfile +++ b/packaging/macos/Portfile @@ -13,13 +13,13 @@ revision 0 categories multimedia emulators games platforms darwin license GPL-3 -maintainers @SunshineStream +maintainers @LizardByte description @PROJECT_DESCRIPTION@ # long_description will not be split into multiple lines as it's configured by CMakeLists long_description @PROJECT_LONG_DESCRIPTION@ homepage @PROJECT_HOMEPAGE_URL@ -master_sites https://github.com/sunshinestream/sunshine/releases +master_sites https://github.com/lizardbyte/sunshine/releases compiler.cxx_standard 2017 fetch.type git @@ -49,7 +49,7 @@ startupitem.netchange yes platform darwin { if { ${os.major} < 20 } { - # See: https://github.com/SunshineStream/Sunshine/discussions/117#discussioncomment-2513494 + # See: https://github.com/LizardByte/Sunshine/discussions/117#discussioncomment-2513494 notes-append "Port is limited to software encoding, when used with macOS releases prior to Big Sur." } } @@ -81,4 +81,4 @@ platform darwin { notes-append "Run @PROJECT_NAME@ by executing 'sunshine ', e.g. 'sunshine ~/sunshine.conf' " notes-append "The config file will be created if it doesn't exist." notes-append "It is recommended to set a location for the apps file in the config." -notes-append "See our documentation at 'https://sunshinestream.readthedocs.io/en/v@PROJECT_VERSION@/' for further info." +notes-append "See our documentation at 'https://docs.lizardbyte.dev/projects/sunshine/en/v@PROJECT_VERSION@/' for further info." diff --git a/scripts/_locale.py b/scripts/_locale.py index 339e2d4a..b8274aed 100644 --- a/scripts/_locale.py +++ b/scripts/_locale.py @@ -13,7 +13,7 @@ import os import subprocess project_name = 'Sunshine' -project_owner = 'SunshineStream' +project_owner = 'LizardByte' script_dir = os.path.dirname(os.path.abspath(__file__)) root_dir = os.path.dirname(script_dir) diff --git a/scripts/build-private.sh b/scripts/build-private.sh index 93d18748..80c7d6bc 100755 --- a/scripts/build-private.sh +++ b/scripts/build-private.sh @@ -8,7 +8,7 @@ SUNSHINE_ASSETS_DIR="${SUNSHINE_ASSETS_DIR:-/etc/sunshine}" SUNSHINE_ROOT="${SUNSHINE_ROOT:-/root/sunshine}" SUNSHINE_TAG="${SUNSHINE_TAG:-master}" -SUNSHINE_GIT_URL="${SUNSHINE_GIT_URL:-https://github.com/sunshinestream/sunshine.git}" +SUNSHINE_GIT_URL="${SUNSHINE_GIT_URL:-https://github.com/lizardbyte/sunshine.git}" SUNSHINE_ENABLE_WAYLAND=${SUNSHINE_ENABLE_WAYLAND:-ON} diff --git a/scripts/build-sunshine.sh b/scripts/build-sunshine.sh index 5be82808..42843752 100755 --- a/scripts/build-sunshine.sh +++ b/scripts/build-sunshine.sh @@ -28,7 +28,7 @@ absolute_path() { CMAKE_BUILD_TYPE="-e CMAKE_BUILD_TYPE=Release" SUNSHINE_PACKAGE_BUILD=OFF SUNSHINE_PACKAGE_EXTENSION=deb -SUNSHINE_GIT_URL=https://github.com/sunshinestream/sunshine.git +SUNSHINE_GIT_URL=https://github.com/lizardbyte/sunshine.git CONTAINER_NAME=sunshine # Docker will fail if ctrl+c is passed through and the input is not a tty diff --git a/src_assets/common/assets/web/index.html b/src_assets/common/assets/web/index.html index 3273ec5d..32e8ed6c 100644 --- a/src_assets/common/assets/web/index.html +++ b/src_assets/common/assets/web/index.html @@ -9,10 +9,9 @@

Resources for Sunshine!

- Official Website - Github Discussions - Sunshine Discord - Moonlight Discord + LizardByte Website + Discord + Github Discussions @@ -23,8 +22,8 @@

By continuing to use this software you agree to the terms and conditions in the following documents.

- License - Third Party Notice + License + Third Party Notice diff --git a/src_assets/common/config/sunshine.conf b/src_assets/common/config/sunshine.conf index 04d51c2a..58dd670b 100644 --- a/src_assets/common/config/sunshine.conf +++ b/src_assets/common/config/sunshine.conf @@ -1 +1 @@ -# See our documentation at https://sunshinestream.readthedocs.io/en/latest/about/advanced_usage.html +# See our documentation at https://docs.lizardbyte.dev/projects/sunshine diff --git a/src_assets/macos/assets/Info.plist b/src_assets/macos/assets/Info.plist index c849435a..0cd88095 100644 --- a/src_assets/macos/assets/Info.plist +++ b/src_assets/macos/assets/Info.plist @@ -3,7 +3,7 @@ CFBundleIdentifier - com.github.sunshinestream.sunshine + dev.lizardbyte.sunshine CFBundleName Sunshine NSMicrophoneUsageDescription