-
-
Notifications
You must be signed in to change notification settings - Fork 950
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from SunshineStream/nightly
v0.12.0
- Loading branch information
Showing
56 changed files
with
10,090 additions
and
190 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Bug Report | ||
description: Create a bug report to help us improve. | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
**THIS IS NOT THE PLACE TO ASK FOR SUPPORT!** | ||
Please use [Github Discussions](https://github.com/SunshineStream/Sunshine/discussions) for support issues. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the Bug | ||
description: A clear and concise description of the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected Behavior | ||
description: A clear and concise description of what you expected to happen. | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the bug here. | ||
- type: input | ||
id: os | ||
attributes: | ||
label: Sunshine Host Operating System and Version | ||
placeholder: eg. Windows 10, macOS 10.15, Ubuntu 20.04, etc. | ||
validations: | ||
required: true | ||
- type: input | ||
id: architecture | ||
attributes: | ||
label: Architecture | ||
placeholder: e.g. 32 bit, 64 bit, arm | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Sunshine Version | ||
placeholder: eg. 0.11.1 | ||
validations: | ||
required: true | ||
- type: input | ||
id: graphics_type | ||
attributes: | ||
label: GPU Type | ||
description: The type of the installed graphics card. | ||
placeholder: e.g. Intel, AMD, Nvidia | ||
validations: | ||
required: true | ||
- type: input | ||
id: graphics_model | ||
attributes: | ||
label: GPU Model | ||
description: The model of the installed graphics card. | ||
placeholder: e.g. GeForce RTX 2080 SUPER | ||
validations: | ||
required: true | ||
- type: input | ||
id: graphics_driver | ||
attributes: | ||
label: GPU Driver/Mesa Version | ||
description: The driver/mesa version of the installed graphics card. | ||
placeholder: e.g. 497.29 | ||
validations: | ||
required: true | ||
- type: input | ||
id: capture_method | ||
attributes: | ||
label: Capture Method (Linux Only) | ||
description: The driver/mesa version of the installed graphics card. | ||
placeholder: e.g. PipeWire/KVM/X11 | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Make sure to close your issue when it's solved! If you found the solution yourself please comment so that others benefit from it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Stale Issues / PRs | |
|
||
on: | ||
schedule: | ||
- cron: '00 19 * * *' | ||
- cron: '00 00 * * *' | ||
|
||
jobs: | ||
stale: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
name: Issues | ||
name: Label Actions | ||
|
||
on: | ||
issues: | ||
types: [labeled, unlabeled] | ||
discussion: | ||
types: [ labeled, unlabeled ] | ||
|
||
jobs: | ||
label: | ||
name: Label Issues | ||
name: Label Actions | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Label Issues | ||
- name: Label Actions | ||
uses: dessant/label-actions@v2 | ||
with: | ||
github-token: ${{ github.token }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.