Skip to content

Commit f3d5cfb

Browse files
committed
Initial commit for attempted rewrite
0 parents  commit f3d5cfb

Some content is hidden

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

79 files changed

+20144
-0
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[*]
2+
insert_final_newline = true
3+
4+
[*.{c,cpp,h,hpp}]
5+
indent_style = tab
6+
indent_size = 4
7+
8+
[*.{yml,yaml}]
9+
indent_style = space
10+
indent_size = 2

.github/FUNDING.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
open_collective: obs-websocket
2+
github: Palakis
3+
custom: https://www.paypal.me/stephanelepin

.github/ISSUE_TEMPLATE.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
##### Issue type
2+
<!--- Uncomment one of the two options below. -->
3+
4+
<!--- - Bug report -->
5+
<!--- - Feature request -->
6+
7+
##### Description
8+
<!--- Describe the bug encountered or feature requested. -->
9+
10+
##### Steps to reproduce and other useful info
11+
<!--- If it's a bug, please describe the steps to reproduce it and PLEASE include an OBS log file. Otherwise, remove this section. -->
12+
13+
##### Technical information
14+
- **Operating System** :
15+
- **OBS Studio version** :
16+
- **obs-websocket version** :
17+
18+
##### Development Environment
19+
<!--- If you're trying to compile obs-websocket, please describe your compiler type and version (e.g: GCC 4.7, VC2013, ...), and the CMake settings used. -->
20+
<!--- Remove this section if it does not apply. -->
53.8 KB
Loading

.github/images/obsws_logo.png

57.2 KB
Loading
7.85 KB
Loading

.github/pull_request_template.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!--- Please fill out the following template, which will help other contributors review your Pull Request. -->
2+
3+
<!--- Make sure you’ve read the contribution guidelines here: https://github.com/Palakis/obs-websocket/blob/4.x-current/CONTRIBUTING.md -->
4+
5+
### Description
6+
<!--- Describe your changes. -->
7+
8+
### Motivation and Context
9+
<!--- Why is this change required? What problem does it solve? -->
10+
<!--- If it fixes/closes an open issue or implements feature request, -->
11+
<!--- please link to the issue here. -->
12+
13+
### How Has This Been Tested?
14+
<!--- Please describe in detail how you tested your changes, along with the OS(s) you tested with. -->
15+
Tested OS(s):
16+
17+
### Types of changes
18+
<!--- What types of changes does your PR introduce? Uncomment all that apply -->
19+
20+
<!--- - Bug fix (non-breaking change which fixes an issue) -->
21+
<!--- - New request/event (non-breaking) -->
22+
<!--- - Documentation change (a change to documentation pages) -->
23+
<!--- - Enhancement (modification to a current event/request which adds functionality) -->
24+
<!--- - Performance enhancement (non-breaking change which improves efficiency) -->
25+
<!--- - Code cleanup (non-breaking change which makes code smaller or more readable) -->
26+
27+
### Checklist:
28+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
29+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
30+
- [ ] I have read the [**contributing** document](https://github.com/Palakis/obs-websocket/blob/4.x-current/CONTRIBUTING.md).
31+
- [ ] My code is not on the master branch.
32+
- [ ] The code has been tested.
33+
- [ ] All commit messages are properly formatted and commits squashed where appropriate.
34+
- [ ] I have included updates to all appropriate documentation.
35+

0 commit comments

Comments
 (0)