forked from hexhacking/xDL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 99f2d56
Showing
55 changed files
with
3,447 additions
and
0 deletions.
There are no files selected for viewing
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,11 @@ | ||
.DS_Store | ||
|
||
build/ | ||
.cxx/ | ||
.gradle/ | ||
.idea/ | ||
*.iml | ||
*.log | ||
*.so | ||
wrap.sh | ||
local.properties |
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,47 @@ | ||
# Contributing to xDL | ||
|
||
Welcome to the xDL project. Read on to learn more about our development process and how to propose bug fixes and improvements. | ||
|
||
## Issues | ||
|
||
We use GitHub issues to track public bugs and feature requests. Before creating an issue, please note the following: | ||
|
||
1. Please search existing issues before creating a new one. | ||
2. Please ensure your description is clear and has sufficient instructions to be able to reproduce the issue. The more information the better. | ||
|
||
|
||
## Branch Management | ||
|
||
There are 2 main branches: | ||
|
||
1. `master` branch | ||
|
||
* It's the latest (pre-)release branch. We use `master` for tags. | ||
* **Please do NOT submit any PR on `master` branch.** | ||
|
||
2. `dev` branch | ||
|
||
* It's our stable developing branch. | ||
* Once `dev` has passed our internal tests, it will be merged to `master` branch for the next release. | ||
* **Please always submit PR on `dev` branch.** | ||
|
||
|
||
## Pull Requests | ||
|
||
Please make sure the following is done when submitting a pull request: | ||
|
||
1. Fork the repo and create your branch from `master`. | ||
2. Add the copyright notice to the top of any new files you've added. | ||
3. Try your best to test your code. | ||
4. Squash all of your commits into one meaningful commit. | ||
|
||
|
||
## Code Style Guide | ||
|
||
1. 4 spaces for indentation rather than tabs. | ||
2. Follow the C code style already in place. | ||
|
||
|
||
## License | ||
|
||
By contributing to xDL, you agree that your contributions will be licensed under its [MIT LICENSE](LICENSE). |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020-present, HexHacking Team. All rights reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.