File tree Expand file tree Collapse file tree 3 files changed +9
-32
lines changed Expand file tree Collapse file tree 3 files changed +9
-32
lines changed Original file line number Diff line number Diff line change @@ -53,40 +53,16 @@ jobs:
53
53
run : |
54
54
exit_code=0
55
55
56
- # find invalid file names
57
- for file in $(find ./commands -type f -name '*.md'); do
58
- filename=$(basename "$file")
59
- if [[ $filename != 'body.md' && $filename != 'footer.md' ]]; then
60
- echo "Invalid file $file. Only body.md and footer.md are allowed" >> $GITHUB_STEP_SUMMARY
61
- exit_code=1
62
- fi
63
- done
64
-
65
56
# check character count
66
- for file in $(find ./commands -type f \( -name 'body .md' -o -name 'footer.md' \) ); do
57
+ for file in $(find ./commands -type f -name '* .md'); do
67
58
echo "Checking $file"
68
59
char_count=$(wc -c <"$file")
69
60
echo "Character count: $char_count"
70
61
filename=$(basename "$file")
71
62
echo "Filename: $filename"
72
- if [[ $filename == 'body.md' && $ char_count -gt 4096 ]]; then
63
+ if [[ $char_count -gt 4096 ]]; then
73
64
echo "$file exceeds the 4096 character limit" >> $GITHUB_STEP_SUMMARY
74
65
exit_code=1
75
- elif [[ $filename == 'footer.md' && $char_count -gt 2048 ]]; then
76
- echo "$file exceeds the 2048 character limit"
77
- exit_code=1
78
- fi
79
- if [[ $filename == 'body.md' ]]; then
80
- dir=$(dirname "$file")
81
- if [[ -f "$dir/footer.md" ]]; then
82
- footer_char_count=$(wc -c <"$dir/footer.md")
83
- total_char_count=$((char_count + footer_char_count))
84
- if [[ $total_char_count -gt 6000 ]]; then
85
- echo "The combined character count of $file and $dir/footer.md exceeds the 6000 character limit" \
86
- >> $GITHUB_STEP_SUMMARY
87
- exit_code=1
88
- fi
89
- fi
90
66
fi
91
67
done
92
68
Original file line number Diff line number Diff line change @@ -13,3 +13,10 @@ configuration as follows:
13
13
Then click the stream name. The stream you made from Talkie should appear as an option.
14
14
15
15
That's it!
16
+
17
+ :information_source : ** Notes**
18
+
19
+ - As Receptor does not auto-start as it is not an installed program, you may want to add it as a
20
+ Sunshine pre-launch command. Receptor will remember the last audio stream it was connected to.
21
+ - You may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.
22
+ - To use Vban over the internet, you will also have to manually forward UDP Port 6980.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments