Skip to content

Commit f99db60

Browse files
committed
first commit
0 parents  commit f99db60

74 files changed

Lines changed: 5434 additions & 0 deletions

Some content is hidden

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

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.DS_Store
2+
3+
build/
4+
.cxx/
5+
.gradle/
6+
.idea/
7+
*.iml
8+
*.log
9+
*.so
10+
wrap.sh
11+
local.properties

CONTRIBUTING.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Contributing to xUnwind
2+
3+
Welcome to the xUnwind project. Read on to learn more about our development process and how to propose bug fixes and improvements.
4+
5+
## Issues
6+
7+
We use GitHub issues to track public bugs and feature requests. Before creating an issue, please note the following:
8+
9+
1. Please search existing issues before creating a new one.
10+
2. Please ensure your description is clear and has sufficient instructions to be able to reproduce the issue. The more information the better.
11+
12+
13+
## Branch Management
14+
15+
There are 2 main branches:
16+
17+
1. `master` branch
18+
19+
* It's the latest (pre-)release branch. We use `master` for tags.
20+
* **Please do NOT submit any PR on `master` branch.**
21+
22+
2. `dev` branch
23+
24+
* It's our stable developing branch.
25+
* Once `dev` has passed our internal tests, it will be merged to `master` branch for the next release.
26+
* **Please always submit PR on `dev` branch.**
27+
28+
29+
## Pull Requests
30+
31+
Please make sure the following is done when submitting a pull request:
32+
33+
1. Fork the repo and create your branch from `master`.
34+
2. Add the copyright notice to the top of any new files you've added.
35+
3. Check your Java code lints and checkstyles.
36+
4. Try your best to test your code.
37+
5. Squash all of your commits into one meaningful commit.
38+
39+
40+
## Code Style Guide
41+
42+
1. 4 spaces for indentation rather than tabs.
43+
2. Follow this [checkstyle configuration](checkstyle.xml) for Java code.
44+
3. Follow the C code style already in place.
45+
46+
47+
## License
48+
49+
By contributing to xUnwind, you agree that your contributions will be licensed under its [MIT LICENSE](LICENSE).

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020-present, HexHacking Team. All rights reserved.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)