mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-23 17:52:36 -04:00
Fix dead links
This commit is contained in:
parent
6022f5b9d2
commit
dc6bdf7715
@ -3,21 +3,19 @@
|
|||||||
Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
|
Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
|
||||||
|
|
||||||
Contributions to this project are [released](https://docs.github.com/en/github/site-policy/github-terms-of-service#6-contributions-under-repository-license)
|
Contributions to this project are [released](https://docs.github.com/en/github/site-policy/github-terms-of-service#6-contributions-under-repository-license)
|
||||||
to the public under the [GPL-3.0 License](https://github.com/AnonymusRaccoon/Kyoo/blob/master/LICENSE).
|
to the public under the [GPL-3.0 License](https://github.com/zoriya/Kyoo/blob/master/LICENSE).
|
||||||
|
|
||||||
## Submitting a pull request
|
## Submitting a pull request
|
||||||
|
|
||||||
1. [Fork](https://github.com/AnonymusRaccoon/Kyoo/fork) and clone the repository
|
1. [Fork](https://github.com/zoriya/Kyoo/fork) and clone the repository
|
||||||
2. Install the toolstack and/or download precompiled binaries for the transcoder (see [Development & Build](https://github.com/AnonymusRaccoon/Kyoo#development--build))
|
2. Create a new branch: `git checkout -b my-branch-name`
|
||||||
3. Create a new branch: `git checkout -b my-branch-name`
|
3. Make your changes (Please try to follow the same coding style as what has already been made - indent with tabs, align with spaces etc).
|
||||||
4. Make your changes (Please try to follow the same coding style as what has already been made - indent with tabs, align with spaces etc)
|
Don't forget to run the auto-formatter.
|
||||||
5. Make sure the tests pass: `dotnet tests`
|
4. Push to your fork and [submit a pull request](https://github.com/zoriya/Kyoo/compare)
|
||||||
6. Push to your fork and [submit a pull request](https://github.com/AnonymusRaccoon/Kyoo/compare)
|
5. Pat your self on the back and wait for your pull request to be reviewed and merged.
|
||||||
7. Pat your self on the back and wait for your pull request to be reviewed and merged.
|
|
||||||
|
|
||||||
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
|
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
|
||||||
|
|
||||||
- Write tests.
|
|
||||||
- Make sure the `README.md` and any other relevant **documentation are kept up-to-date**.
|
- Make sure the `README.md` and any other relevant **documentation are kept up-to-date**.
|
||||||
- We try to follow [SemVer v2.0.0](https://semver.org/). Randomly breaking public APIs is not an option.
|
- We try to follow [SemVer v2.0.0](https://semver.org/). Randomly breaking public APIs is not an option.
|
||||||
- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as **separate pull requests**.
|
- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as **separate pull requests**.
|
||||||
|
@ -57,12 +57,12 @@ namespace Kyoo.Swagger
|
|||||||
options.Info.Contact = new OpenApiContact
|
options.Info.Contact = new OpenApiContact
|
||||||
{
|
{
|
||||||
Name = "Kyoo's github",
|
Name = "Kyoo's github",
|
||||||
Url = "https://github.com/AnonymusRaccoon/Kyoo"
|
Url = "https://github.com/zoriya/Kyoo"
|
||||||
};
|
};
|
||||||
options.Info.License = new OpenApiLicense
|
options.Info.License = new OpenApiLicense
|
||||||
{
|
{
|
||||||
Name = "GPL-3.0-or-later",
|
Name = "GPL-3.0-or-later",
|
||||||
Url = "https://github.com/AnonymusRaccoon/Kyoo/blob/master/LICENSE"
|
Url = "https://github.com/zoriya/Kyoo/blob/master/LICENSE"
|
||||||
};
|
};
|
||||||
|
|
||||||
options.Info.ExtensionData ??= new Dictionary<string, object>();
|
options.Info.ExtensionData ??= new Dictionary<string, object>();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user