change org to LizardByte (#263)
- updates issue template - updates docker readme
This commit is contained in:
28
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
28
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@@ -5,7 +5,7 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
value: >
|
value: >
|
||||||
**THIS IS NOT THE PLACE TO ASK FOR SUPPORT!**
|
**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
|
- type: textarea
|
||||||
id: description
|
id: description
|
||||||
attributes:
|
attributes:
|
||||||
@@ -23,15 +23,25 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: Additional Context
|
label: Additional Context
|
||||||
description: Add any other context about the bug here.
|
description: Add any other context about the bug here.
|
||||||
- type: input
|
- type: dropdown
|
||||||
id: os
|
id: os
|
||||||
attributes:
|
attributes:
|
||||||
label: Sunshine Host Operating System and Version
|
label: Host Operating System
|
||||||
placeholder: eg. Windows 10, macOS 10.15, Ubuntu 20.04, etc.
|
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:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
id: architecture
|
id: os-architecture
|
||||||
attributes:
|
attributes:
|
||||||
label: Architecture
|
label: Architecture
|
||||||
placeholder: e.g. 32 bit, 64 bit, arm
|
placeholder: e.g. 32 bit, 64 bit, arm
|
||||||
@@ -41,7 +51,7 @@ body:
|
|||||||
id: version
|
id: version
|
||||||
attributes:
|
attributes:
|
||||||
label: Sunshine Version
|
label: Sunshine Version
|
||||||
placeholder: eg. 0.11.1
|
placeholder: eg. 0.14.0
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
@@ -76,6 +86,12 @@ body:
|
|||||||
placeholder: e.g. PipeWire/KVM/X11
|
placeholder: e.g. PipeWire/KVM/X11
|
||||||
validations:
|
validations:
|
||||||
required: false
|
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
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
|
|||||||
26
.github/workflows/CI.yml
vendored
26
.github/workflows/CI.yml
vendored
@@ -31,7 +31,7 @@ jobs:
|
|||||||
id: verify_changelog
|
id: verify_changelog
|
||||||
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
|
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
|
||||||
# base_ref for pull request check, ref for push
|
# base_ref for pull request check, ref for push
|
||||||
uses: SunshineStream/actions/verify_changelog@master
|
uses: LizardByte/.github/actions/verify_changelog@master
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
outputs:
|
outputs:
|
||||||
@@ -209,8 +209,8 @@ jobs:
|
|||||||
- name: Build Linux Flatpak
|
- name: Build Linux Flatpak
|
||||||
working-directory: build
|
working-directory: build
|
||||||
run: |
|
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 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 com.github.sunshinestream.sunshine'
|
sudo su $(whoami) -c 'flatpak build-bundle ./repo ../artifacts/sunshine.flatpak dev.lizardbyte.sunshine'
|
||||||
|
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
@@ -220,9 +220,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
uses: SunshineStream/actions/create_release@master
|
uses: LizardByte/.github/actions/create_release@master
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GH_BOT_TOKEN }}
|
||||||
next_version: ${{ needs.check_changelog.outputs.next_version }}
|
next_version: ${{ needs.check_changelog.outputs.next_version }}
|
||||||
last_version: ${{ needs.check_changelog.outputs.last_version }}
|
last_version: ${{ needs.check_changelog.outputs.last_version }}
|
||||||
release_body: ${{ needs.check_changelog.outputs.release_body }}
|
release_body: ${{ needs.check_changelog.outputs.release_body }}
|
||||||
@@ -415,9 +415,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
uses: SunshineStream/actions/create_release@master
|
uses: LizardByte/.github/actions/create_release@master
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GH_BOT_TOKEN }}
|
||||||
next_version: ${{ needs.check_changelog.outputs.next_version }}
|
next_version: ${{ needs.check_changelog.outputs.next_version }}
|
||||||
last_version: ${{ needs.check_changelog.outputs.last_version }}
|
last_version: ${{ needs.check_changelog.outputs.last_version }}
|
||||||
release_body: ${{ needs.check_changelog.outputs.release_body }}
|
release_body: ${{ needs.check_changelog.outputs.release_body }}
|
||||||
@@ -481,9 +481,9 @@ jobs:
|
|||||||
# no artifacts to release currently
|
# no artifacts to release currently
|
||||||
# - name: Create Release
|
# - name: Create Release
|
||||||
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
# uses: SunshineStream/actions/create_release@master
|
# uses: LizardByte/.github/actions/create_release@master
|
||||||
# with:
|
# with:
|
||||||
# token: ${{ secrets.GITHUB_TOKEN }}
|
# token: ${{ secrets.GH_BOT_TOKEN }}
|
||||||
# next_version: ${{ needs.check_changelog.outputs.next_version }}
|
# next_version: ${{ needs.check_changelog.outputs.next_version }}
|
||||||
# last_version: ${{ needs.check_changelog.outputs.last_version }}
|
# last_version: ${{ needs.check_changelog.outputs.last_version }}
|
||||||
# release_body: ${{ needs.check_changelog.outputs.release_body }}
|
# release_body: ${{ needs.check_changelog.outputs.release_body }}
|
||||||
@@ -692,9 +692,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
uses: SunshineStream/actions/create_release@master
|
uses: LizardByte/.github/actions/create_release@master
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GH_BOT_TOKEN }}
|
||||||
next_version: ${{ needs.check_changelog.outputs.next_version }}
|
next_version: ${{ needs.check_changelog.outputs.next_version }}
|
||||||
last_version: ${{ needs.check_changelog.outputs.last_version }}
|
last_version: ${{ needs.check_changelog.outputs.last_version }}
|
||||||
release_body: ${{ needs.check_changelog.outputs.release_body }}
|
release_body: ${{ needs.check_changelog.outputs.release_body }}
|
||||||
@@ -760,9 +760,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
uses: SunshineStream/actions/create_release@master
|
uses: LizardByte/.github/actions/create_release@master
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GH_BOT_TOKEN }}
|
||||||
next_version: ${{ needs.check_changelog.outputs.next_version }}
|
next_version: ${{ needs.check_changelog.outputs.next_version }}
|
||||||
last_version: ${{ needs.check_changelog.outputs.last_version }}
|
last_version: ${{ needs.check_changelog.outputs.last_version }}
|
||||||
release_body: ${{ needs.check_changelog.outputs.release_body }}
|
release_body: ${{ needs.check_changelog.outputs.release_body }}
|
||||||
|
|||||||
2
.github/workflows/localize.yml
vendored
2
.github/workflows/localize.yml
vendored
@@ -76,7 +76,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
add-paths: |
|
add-paths: |
|
||||||
locale/*.po
|
locale/*.po
|
||||||
token: ${{ secrets.GH_PAT }} # must trigger PR tests
|
token: ${{ secrets.GH_BOT_TOKEN }} # must trigger PR tests
|
||||||
commit-message: New localization template
|
commit-message: New localization template
|
||||||
branch: localize/update
|
branch: localize/update
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0)
|
|||||||
|
|
||||||
project(Sunshine VERSION 0.14.0
|
project(Sunshine VERSION 0.14.0
|
||||||
DESCRIPTION "Sunshine is a Gamestream host for Moonlight."
|
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, \
|
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})
|
elseif(${SUNSHINE_CONFIGURE_AUR})
|
||||||
configure_file(packaging/linux/aur/PKGBUILD PKGBUILD @ONLY)
|
configure_file(packaging/linux/aur/PKGBUILD PKGBUILD @ONLY)
|
||||||
elseif(${SUNSHINE_CONFIGURE_FLATPAK})
|
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})
|
elseif(${SUNSHINE_CONFIGURE_PORTFILE})
|
||||||
configure_file(packaging/macos/Portfile Portfile @ONLY)
|
configure_file(packaging/macos/Portfile Portfile @ONLY)
|
||||||
endif()
|
endif()
|
||||||
@@ -480,11 +480,11 @@ target_compile_options(sunshine PRIVATE $<$<COMPILE_LANGUAGE:CXX>:${SUNSHINE_COM
|
|||||||
# CPACK / Packaging
|
# CPACK / Packaging
|
||||||
|
|
||||||
# Common options
|
# Common options
|
||||||
set(CPACK_PACKAGE_NAME "SunshineStream")
|
set(CPACK_PACKAGE_NAME "Sunshine")
|
||||||
set(CPACK_PACKAGE_VENDOR "SunshineStream")
|
set(CPACK_PACKAGE_VENDOR "LizardByte")
|
||||||
set(CPACK_PACKAGE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/cpack_artifacts)
|
set(CPACK_PACKAGE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/cpack_artifacts)
|
||||||
set(CPACK_PACKAGE_CONTACT "https://github.com/SunshineStream/Sunshine")
|
set(CPACK_PACKAGE_CONTACT "https://app.lizardbyte.dev")
|
||||||
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "https://github.com/SunshineStream/Sunshine")
|
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "https://github.com/LizardByte")
|
||||||
set(CPACK_PACKAGE_DESCRIPTION ${CMAKE_PROJECT_DESCRIPTION})
|
set(CPACK_PACKAGE_DESCRIPTION ${CMAKE_PROJECT_DESCRIPTION})
|
||||||
set(CPACK_PACKAGE_HOMEPAGE_URL ${CMAKE_PROJECT_HOMEPAGE_URL})
|
set(CPACK_PACKAGE_HOMEPAGE_URL ${CMAKE_PROJECT_HOMEPAGE_URL})
|
||||||
set(CPACK_RESOURCE_FILE_LICENSE ${PROJECT_SOURCE_DIR}/LICENSE)
|
set(CPACK_RESOURCE_FILE_LICENSE ${PROJECT_SOURCE_DIR}/LICENSE)
|
||||||
|
|||||||
@@ -11,16 +11,10 @@ docker run -d \
|
|||||||
-e PUID=<uid> \
|
-e PUID=<uid> \
|
||||||
-e PGID=<gid> \
|
-e PGID=<gid> \
|
||||||
-e TZ=<timezone> \
|
-e TZ=<timezone> \
|
||||||
-p 47990:47990 \
|
-p 47984-47990:47984-47990/tcp \
|
||||||
-p 47984:47984 \
|
|
||||||
-p 47989:47989 \
|
|
||||||
-p 48010:48010 \
|
-p 48010:48010 \
|
||||||
-p 47998:47998 \
|
-p 47998-48000:47998-48000/udp \
|
||||||
-p 47999:47999 \
|
lizardbyte/sunshine
|
||||||
-p 48000:48000 \
|
|
||||||
-p 48002:48002 \
|
|
||||||
-p 48010:48010 \
|
|
||||||
sunshinestream/sunshine
|
|
||||||
```
|
```
|
||||||
|
|
||||||
To update the container it must be removed and recreated:
|
To update the container it must be removed and recreated:
|
||||||
@@ -31,7 +25,7 @@ docker stop sunshine
|
|||||||
# Remove the container
|
# Remove the container
|
||||||
docker rm sunshine
|
docker rm sunshine
|
||||||
# Pull the latest update
|
# Pull the latest update
|
||||||
docker pull sunshinestream/sunshine
|
docker pull lizardbyte/sunshine
|
||||||
# Run the container with the same parameters as before
|
# Run the container with the same parameters as before
|
||||||
docker run -d ...
|
docker run -d ...
|
||||||
```
|
```
|
||||||
@@ -44,25 +38,19 @@ Create a `docker-compose.yml` file with the following contents (substitute your
|
|||||||
version: '3'
|
version: '3'
|
||||||
services:
|
services:
|
||||||
sunshine:
|
sunshine:
|
||||||
image: sunshinestream/sunshine
|
image: lizardbyte/sunshine
|
||||||
container_name: sunshine
|
container_name: sunshine
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- <path to data>:/config
|
- <path to data>:/config
|
||||||
environment:
|
environment:
|
||||||
- PUID=<uid>
|
- PUID=<uid>
|
||||||
- PGID=<gid>
|
- PGID=<gid>
|
||||||
- TZ=<timezone>
|
- TZ=<timezone>
|
||||||
ports:
|
ports:
|
||||||
- "47990:47990"
|
- 47984-47990:47984-47990/tcp
|
||||||
- "47984:47984"
|
- 48010:48010
|
||||||
- "47989:47989"
|
- 47998-48000:47998-48000/udp
|
||||||
- "48010:48010"
|
|
||||||
- "47998:47998"
|
|
||||||
- "47999:47999"
|
|
||||||
- "48000:48000"
|
|
||||||
- "48002:48002"
|
|
||||||
- "48010:48010"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Create and start the container (run the command from the same folder as your `docker-compose.yml` file):
|
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.
|
**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
|
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://<host_ip>:47990`). The internal port must be `47990`, but the external port may be changed
|
port `47990` (e.g. `http://<host_ip>: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 |
|
| Parameter | Function | Example Value | Required |
|
||||||
|
|||||||
34
README.rst
34
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
|
Overview
|
||||||
========
|
========
|
||||||
SunshineStream has the full documentation hosted on `Read the Docs <http://sunshinestream.readthedocs.io/>`_.
|
LizardByte has the full documentation hosted on `Read the Docs <https://docs.lizardbyte.dev/projects/sunshine/>`_.
|
||||||
|
|
||||||
About
|
About
|
||||||
-----
|
-----
|
||||||
@@ -29,13 +29,13 @@ These are the advantages of Sunshine over GeForce Experience.
|
|||||||
Integrations
|
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)
|
: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)
|
: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
|
.. image:: https://img.shields.io/readthedocs/sunshinestream?label=Docs&style=for-the-badge&logo=readthedocs
|
||||||
:alt: Read the Docs
|
:alt: Read the Docs
|
||||||
@@ -48,26 +48,24 @@ Integrations
|
|||||||
Support
|
Support
|
||||||
---------
|
---------
|
||||||
|
|
||||||
.. image:: https://img.shields.io/discord/938534566107418705?label=Discord&style=for-the-badge&color=blue&logo=discord
|
Our support methods are listed in our `LizardByte Docs <https:docs.lizardbyte.dev/about/support.html>`_.
|
||||||
: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
|
|
||||||
|
|
||||||
Downloads
|
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
|
: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
|
: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
|
:target: https://aur.archlinux.org/packages/sunshine-git
|
||||||
|
|
||||||
.. comment
|
.. 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
|
:alt: Docker
|
||||||
:target: https://hub.docker.com/r/sunshinestream/sunshine
|
:target: https://hub.docker.com/r/lizardbyte/sunshine
|
||||||
|
|||||||
@@ -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
|
Advanced Usage
|
||||||
==============
|
==============
|
||||||
|
|||||||
@@ -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.
|
.. Todo:: This is a planned feature. Currently no Dockerfile or image exists for Sunshine.
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
Installation
|
||||||
============
|
============
|
||||||
@@ -23,7 +23,7 @@ Follow the instructions for your preferred package type below.
|
|||||||
|
|
||||||
AppImage
|
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
|
:alt: GitHub issues by-label
|
||||||
|
|
||||||
According to AppImageLint the AppImage can run on the following distros.
|
According to AppImageLint the AppImage can run on the following distros.
|
||||||
@@ -54,7 +54,7 @@ AUR Package
|
|||||||
|
|
||||||
Debian 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
|
:alt: GitHub issues by-label
|
||||||
|
|
||||||
#. Download ``sunshine.deb`` and run the following code.
|
#. Download ``sunshine.deb`` and run the following code.
|
||||||
@@ -67,7 +67,7 @@ Debian Package
|
|||||||
|
|
||||||
Flatpak 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
|
:alt: GitHub issues by-label
|
||||||
|
|
||||||
.. Todo:: This package needs to have CUDA added.
|
.. Todo:: This package needs to have CUDA added.
|
||||||
@@ -87,7 +87,7 @@ Flatpak Package
|
|||||||
|
|
||||||
RPM 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
|
:alt: GitHub issues by-label
|
||||||
|
|
||||||
#. Add `rpmfusion` repositories by running the following code.
|
#. Add `rpmfusion` repositories by running the following code.
|
||||||
@@ -107,7 +107,7 @@ RPM Package
|
|||||||
|
|
||||||
macOS
|
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
|
:alt: GitHub issues by-label
|
||||||
|
|
||||||
pkg
|
pkg
|
||||||
@@ -143,10 +143,10 @@ Portfile
|
|||||||
|
|
||||||
Windows
|
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
|
: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
|
:alt: GitHub issues by-label
|
||||||
|
|
||||||
Installed option:
|
Installed option:
|
||||||
@@ -155,6 +155,6 @@ Installed option:
|
|||||||
Standalone option:
|
Standalone option:
|
||||||
#. Download and extract ``sunshine-windows.zip``
|
#. Download and extract ``sunshine-windows.zip``
|
||||||
|
|
||||||
.. _latest release: https://github.com/SunshineStream/Sunshine/releases/latest
|
.. _latest release: https://github.com/LizardByte/Sunshine/releases/latest
|
||||||
.. _Dockerhub.io: https://hub.docker.com/repository/docker/sunshinestream/sunshine
|
.. _Dockerhub.io: https://hub.docker.com/repository/docker/lizardbyte/sunshine
|
||||||
.. _ghcr.io: https://github.com/orgs/SunshineStream/packages?repo_name=sunshine
|
.. _ghcr.io: https://github.com/orgs/LizardByte/packages?repo_name=sunshine
|
||||||
|
|||||||
@@ -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
|
Third Party Packages
|
||||||
====================
|
====================
|
||||||
|
|
||||||
.. Danger:: These packages are not maintained by SunshineStream. Use at your own risk.
|
.. Danger:: These packages are not maintained by LizardByte. 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
|
|
||||||
|
|
||||||
Chocolatey
|
Chocolatey
|
||||||
----------
|
----------
|
||||||
|
|||||||
@@ -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
|
Usage
|
||||||
=====
|
=====
|
||||||
@@ -106,7 +106,7 @@ Sunshine needs access to `uinput` to create mouse and gamepad events.
|
|||||||
deb /usr/bin/sunshine ✔
|
deb /usr/bin/sunshine ✔
|
||||||
rpm /usr/bin/sunshine ✔
|
rpm /usr/bin/sunshine ✔
|
||||||
AppImage ~/sunshine.AppImage ✖
|
AppImage ~/sunshine.AppImage ✖
|
||||||
Flatpak flatpak run com.github.sunshinestream.sunshine ✖
|
Flatpak flatpak run dev.lizardbyte.sunshine ✖
|
||||||
======== ============================================== ===============
|
======== ============================================== ===============
|
||||||
|
|
||||||
Start once
|
Start once
|
||||||
|
|||||||
@@ -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
|
Build
|
||||||
=====
|
=====
|
||||||
@@ -14,7 +14,7 @@ Ensure `git <https://git-scm.com/>`_ is installed and run the following:
|
|||||||
|
|
||||||
.. code-block:: bash
|
.. 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
|
cd sunshine && mkdir build && cd build
|
||||||
|
|
||||||
Compile
|
Compile
|
||||||
|
|||||||
@@ -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
|
Linux
|
||||||
=====
|
=====
|
||||||
|
|||||||
@@ -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
|
macOS
|
||||||
=====
|
=====
|
||||||
|
|||||||
@@ -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
|
Windows
|
||||||
=======
|
=======
|
||||||
|
|||||||
@@ -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
|
Contributing
|
||||||
============
|
============
|
||||||
|
|||||||
@@ -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
|
Localization
|
||||||
============
|
============
|
||||||
@@ -25,7 +25,7 @@ Only elements of the API are planned to be translated.
|
|||||||
.. Attention:: The rest API has not yet been implemented.
|
.. Attention:: The rest API has not yet been implemented.
|
||||||
|
|
||||||
Translations Basics
|
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.
|
- Other brand names should never be translated.
|
||||||
Examples:
|
Examples:
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
Table of Contents
|
||||||
=================
|
=================
|
||||||
|
|||||||
@@ -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
|
General
|
||||||
=======
|
=======
|
||||||
|
|||||||
@@ -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
|
Linux
|
||||||
=====
|
=====
|
||||||
|
|||||||
@@ -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
|
macOS
|
||||||
=====
|
=====
|
||||||
|
|||||||
@@ -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
|
Windows
|
||||||
=======
|
=======
|
||||||
|
|||||||
@@ -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
|
# Reference: https://wiki.archlinux.org/title/PKGBUILD
|
||||||
|
|
||||||
pkgname=@SUNSHINE_AUR_PKG@
|
pkgname=@SUNSHINE_AUR_PKG@
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
app-id: com.github.sunshinestream.sunshine
|
app-id: dev.lizardbyte.sunshine
|
||||||
runtime: org.freedesktop.Platform
|
runtime: org.freedesktop.Platform
|
||||||
runtime-version: "21.08"
|
runtime-version: "21.08"
|
||||||
sdk: org.freedesktop.Sdk
|
sdk: org.freedesktop.Sdk
|
||||||
@@ -13,13 +13,13 @@ revision 0
|
|||||||
categories multimedia emulators games
|
categories multimedia emulators games
|
||||||
platforms darwin
|
platforms darwin
|
||||||
license GPL-3
|
license GPL-3
|
||||||
maintainers @SunshineStream
|
maintainers @LizardByte
|
||||||
description @PROJECT_DESCRIPTION@
|
description @PROJECT_DESCRIPTION@
|
||||||
|
|
||||||
# long_description will not be split into multiple lines as it's configured by CMakeLists
|
# long_description will not be split into multiple lines as it's configured by CMakeLists
|
||||||
long_description @PROJECT_LONG_DESCRIPTION@
|
long_description @PROJECT_LONG_DESCRIPTION@
|
||||||
homepage @PROJECT_HOMEPAGE_URL@
|
homepage @PROJECT_HOMEPAGE_URL@
|
||||||
master_sites https://github.com/sunshinestream/sunshine/releases
|
master_sites https://github.com/lizardbyte/sunshine/releases
|
||||||
|
|
||||||
compiler.cxx_standard 2017
|
compiler.cxx_standard 2017
|
||||||
fetch.type git
|
fetch.type git
|
||||||
@@ -49,7 +49,7 @@ startupitem.netchange yes
|
|||||||
|
|
||||||
platform darwin {
|
platform darwin {
|
||||||
if { ${os.major} < 20 } {
|
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."
|
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 <path to user config>', e.g. 'sunshine ~/sunshine.conf' "
|
notes-append "Run @PROJECT_NAME@ by executing 'sunshine <path to user config>', e.g. 'sunshine ~/sunshine.conf' "
|
||||||
notes-append "The config file will be created if it doesn't exist."
|
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 "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."
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import os
|
|||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
project_name = 'Sunshine'
|
project_name = 'Sunshine'
|
||||||
project_owner = 'SunshineStream'
|
project_owner = 'LizardByte'
|
||||||
|
|
||||||
script_dir = os.path.dirname(os.path.abspath(__file__))
|
script_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
root_dir = os.path.dirname(script_dir)
|
root_dir = os.path.dirname(script_dir)
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ SUNSHINE_ASSETS_DIR="${SUNSHINE_ASSETS_DIR:-/etc/sunshine}"
|
|||||||
|
|
||||||
SUNSHINE_ROOT="${SUNSHINE_ROOT:-/root/sunshine}"
|
SUNSHINE_ROOT="${SUNSHINE_ROOT:-/root/sunshine}"
|
||||||
SUNSHINE_TAG="${SUNSHINE_TAG:-master}"
|
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}
|
SUNSHINE_ENABLE_WAYLAND=${SUNSHINE_ENABLE_WAYLAND:-ON}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ absolute_path() {
|
|||||||
CMAKE_BUILD_TYPE="-e CMAKE_BUILD_TYPE=Release"
|
CMAKE_BUILD_TYPE="-e CMAKE_BUILD_TYPE=Release"
|
||||||
SUNSHINE_PACKAGE_BUILD=OFF
|
SUNSHINE_PACKAGE_BUILD=OFF
|
||||||
SUNSHINE_PACKAGE_EXTENSION=deb
|
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
|
CONTAINER_NAME=sunshine
|
||||||
|
|
||||||
# Docker will fail if ctrl+c is passed through and the input is not a tty
|
# Docker will fail if ctrl+c is passed through and the input is not a tty
|
||||||
|
|||||||
@@ -9,10 +9,9 @@
|
|||||||
<p>
|
<p>
|
||||||
Resources for Sunshine!
|
Resources for Sunshine!
|
||||||
</p>
|
</p>
|
||||||
<a class="btn btn-primary" href="https://sunshinestream.github.io" target="_blank">Official Website</a>
|
<a class="btn btn-primary" href="https://app.lizardbyte.dev" target="_blank">LizardByte Website</a>
|
||||||
<a class="btn btn-warning" href="https://github.com/SunshineStream/Sunshine/discussions" target="_blank"><i class="fab fa-fw fa-github"></i> Github Discussions</a>
|
<a class="btn btn-warning" href="https://app.lizardbyte.dev/discord" target="_blank"><i class="fab fa-fw fa-discord"></i> Discord</a>
|
||||||
<a class="btn btn-warning" href="https://sunshinestream.github.io/discord" target="_blank"><i class="fas fa-fw fa-sun"></i><i class="fab fa-fw fa-discord"></i> Sunshine Discord</a>
|
<a class="btn btn-warning" href="https://github.com/LizardByte/Sunshine/discussions" target="_blank"><i class="fab fa-fw fa-github"></i> Github Discussions</a>
|
||||||
<a class="btn btn-warning" href="https://moonlight-stream.org/discord" target="_blank"><i class="fas fa-fw fa-moon"></i><i class="fab fa-fw fa-discord"></i> Moonlight Discord</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--Legal-->
|
<!--Legal-->
|
||||||
@@ -23,8 +22,8 @@
|
|||||||
<p>
|
<p>
|
||||||
By continuing to use this software you agree to the terms and conditions in the following documents.
|
By continuing to use this software you agree to the terms and conditions in the following documents.
|
||||||
</p>
|
</p>
|
||||||
<a class="btn btn-danger" href="https://github.com/SunshineStream/Sunshine/blob/master/LICENSE" target="_blank"><i class="fas fa-fw fa-file-alt"></i> License</a>
|
<a class="btn btn-danger" href="https://github.com/LizardByte/Sunshine/blob/master/LICENSE" target="_blank"><i class="fas fa-fw fa-file-alt"></i> License</a>
|
||||||
<a class="btn btn-danger" href="https://github.com/SunshineStream/Sunshine/blob/master/NOTICE" target="_blank"><i class="fas fa-fw fa-exclamation"></i> Third Party Notice</a>
|
<a class="btn btn-danger" href="https://github.com/LizardByte/Sunshine/blob/master/NOTICE" target="_blank"><i class="fas fa-fw fa-exclamation"></i> Third Party Notice</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>com.github.sunshinestream.sunshine</string>
|
<string>dev.lizardbyte.sunshine</string>
|
||||||
<key>CFBundleName</key>
|
<key>CFBundleName</key>
|
||||||
<string>Sunshine</string>
|
<string>Sunshine</string>
|
||||||
<key>NSMicrophoneUsageDescription</key>
|
<key>NSMicrophoneUsageDescription</key>
|
||||||
|
|||||||
Reference in New Issue
Block a user