Skip to content

Commit 6000b85

Browse files
Merge pull request #283 from LizardByte/nightly
v0.14.1
2 parents 70ae7a2 + d661568 commit 6000b85

File tree

144 files changed

+4884
-3707
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+4884
-3707
lines changed

.clang-format

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# This file is centrally managed in https://github.com/<organization>/.github/
2+
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
3+
# the above-mentioned repo.
4+
15
# Generated from CLion C/C++ Code Style settings
26
BasedOnStyle: LLVM
37
AccessModifierOffset: -2

.flake8

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[flake8]
2+
filename =
3+
*.py
4+
max-line-length = 120
5+
extend-exclude =
6+
venv/

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
---
12
name: Bug Report
23
description: Create a bug report to help us improve.
34
body:
45
- type: markdown
56
attributes:
67
value: >
78
**THIS IS NOT THE PLACE TO ASK FOR SUPPORT!**
8-
Please use [Github Discussions](https://github.com/SunshineStream/Sunshine/discussions) for support issues.
9+
Please use [Discord](https://docs.lizardbyte.dev/en/latest/about/support.html#discord) for support issues.
910
- type: textarea
1011
id: description
1112
attributes:
@@ -23,15 +24,25 @@ body:
2324
attributes:
2425
label: Additional Context
2526
description: Add any other context about the bug here.
26-
- type: input
27+
- type: dropdown
2728
id: os
2829
attributes:
29-
label: Sunshine Host Operating System and Version
30-
placeholder: eg. Windows 10, macOS 10.15, Ubuntu 20.04, etc.
30+
label: Host Operating System
31+
description: What version operating system are you running the software on?
32+
options:
33+
- Linux
34+
- macOS
35+
- Windows
36+
- other
37+
- type: input
38+
id: os-version
39+
attributes:
40+
label: Operating System Version
41+
description: Provide the version of the operating system. Additionally a build number would be helpful.
3142
validations:
3243
required: true
3344
- type: input
34-
id: architecture
45+
id: os-architecture
3546
attributes:
3647
label: Architecture
3748
placeholder: e.g. 32 bit, 64 bit, arm
@@ -41,7 +52,7 @@ body:
4152
id: version
4253
attributes:
4354
label: Sunshine Version
44-
placeholder: eg. 0.11.1
55+
placeholder: eg. 0.14.0
4556
validations:
4657
required: true
4758
- type: input
@@ -76,7 +87,16 @@ body:
7687
placeholder: e.g. PipeWire/KVM/X11
7788
validations:
7889
required: false
90+
- type: textarea
91+
id: logs
92+
attributes:
93+
label: Relevant log output
94+
description: |
95+
Please copy and paste any relevant log output. This will be automatically formatted into code,
96+
so no need for backticks.
97+
render: Shell
7998
- type: markdown
8099
attributes:
81100
value: |
82-
Make sure to close your issue when it's solved! If you found the solution yourself please comment so that others benefit from it.
101+
Make sure to close your issue when it's solved! If you found the solution yourself please comment
102+
so that others benefit from it.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1+
---
2+
# This action is centrally managed in https://github.com/<organization>/.github/
3+
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
4+
# the above-mentioned repo.
5+
16
blank_issues_enabled: false
27
contact_links:
3-
- name: AUR Package Issue
4-
url: https://aur.archlinux.org/packages/sunshine
5-
about: AUR Package Issues should be discussed on the AUR
6-
- name: Github Discussions
7-
url: https://github.com/SunshineStream/Sunshine/discussions
8-
about: General discussion, support, feature requests and more!
98
- name: Discord support
10-
url: https://discord.com/invite/CGg5JxN
11-
about: Ask question about Sunshine in Discord
9+
url: https://docs.lizardbyte.dev/about/support.html#discord
10+
about: Ask questions in Discord
11+
- name: Reddit support
12+
url: https://www.reddit.com/r/LizardByte
13+
about: Get community support on Reddit
14+
- name: Facebook support
15+
url: https://www.facebook.com/groups/lizardbyte
16+
about: Get community support on Facebook
17+
- name: Feature request
18+
url: https://feedback.lizardbyte.dev
19+
about: Share your suggestions or ideas to help us improve

.github/dependabot.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,30 @@
1+
---
2+
# This action is centrally managed in https://github.com/<organization>/.github/
3+
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
4+
# the above-mentioned repo.
5+
16
version: 2
27
updates:
38
- package-ecosystem: "github-actions"
49
directory: "/"
510
schedule:
611
interval: "daily"
12+
time: "00:00"
713
target-branch: "nightly"
8-
open-pull-requests-limit: 20
14+
open-pull-requests-limit: 10
15+
16+
- package-ecosystem: "npm"
17+
directory: "/"
18+
schedule:
19+
interval: "daily"
20+
time: "00:00"
21+
target-branch: "nightly"
22+
open-pull-requests-limit: 10
923

1024
- package-ecosystem: "pip"
11-
directory: "/scripts"
25+
directory: "/"
1226
schedule:
1327
interval: "daily"
28+
time: "00:00"
1429
target-branch: "nightly"
1530
open-pull-requests-limit: 10

.github/label-actions.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1+
---
2+
# This action is centrally managed in https://github.com/<organization>/.github/
3+
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
4+
# the above-mentioned repo.
5+
16
# Configuration for Label Actions - https://github.com/dessant/label-actions
27

38
added:
49
comment: >
510
This feature has been added and will be available in the next release.
6-
711
fixed:
812
comment: >
913
This issue has been fixed and will be available in the next release.
10-
1114
invalid:duplicate:
1215
comment: >
1316
:wave: @{issue-author}, this appears to be a duplicate of a pre-existing issue.
@@ -22,8 +25,8 @@ invalid:duplicate:
2225
invalid:support:
2326
comment: >
2427
:wave: @{issue-author}, we use the issue tracker exclusively for bug reports.
25-
However, this issue appears to be a support request. Please use our
26-
[Discord Server](https://discord.com/invite/CGg5JxN) to get help. Thanks.
28+
However, this issue appears to be a support request. Please use
29+
[Discord](https://docs.lizardbyte.dev/about/support.html#discord) for support issues. Thanks.
2730
close: true
2831
lock: true
2932
lock-reason: 'off-topic'

.github/pr_release_template.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Description
2+
<!--- Please include a summary of the changes. --->
3+
This PR was created automatically.
4+
5+
6+
### Screenshot
7+
<!--- Include screenshots if the changes are UI-related. --->
8+
9+
10+
### Issues Fixed or Closed
11+
<!--- Close issue example: `- Closes #1` --->
12+
<!--- Fix bug issue example: `- Fixes #2` --->
13+
<!--- Resolve issue example: `- Resolves #3` --->
14+
15+
16+
## Type of Change
17+
- [ ] Bug fix (non-breaking change which fixes an issue)
18+
- [ ] New feature (non-breaking change which adds functionality)
19+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
20+
- [ ] Documentation update (changes to documentation)
21+
- [ ] Repository update (changes to repository files)
22+
23+
## Changelog Summary
24+
<!--- Summarize all the changes in a bulleted list. --->

0 commit comments

Comments
 (0)