From dc6bdf77150bd48fc6dd1eb2bf3f553d0b1daf3b Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Thu, 14 Sep 2023 16:05:19 +0200 Subject: [PATCH] Fix dead links --- CONTRIBUTING.md | 16 +++++++--------- back/src/Kyoo.Swagger/SwaggerModule.cs | 4 ++-- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6dbaad61..8a9acf3e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. 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 -1. [Fork](https://github.com/AnonymusRaccoon/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)) -3. Create a new branch: `git checkout -b my-branch-name` -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) -5. Make sure the tests pass: `dotnet tests` -6. Push to your fork and [submit a pull request](https://github.com/AnonymusRaccoon/Kyoo/compare) -7. Pat your self on the back and wait for your pull request to be reviewed and merged. +1. [Fork](https://github.com/zoriya/Kyoo/fork) and clone the repository +2. 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). +Don't forget to run the auto-formatter. +4. Push to your fork and [submit a pull request](https://github.com/zoriya/Kyoo/compare) +5. 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: -- Write tests. - 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. - 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**. diff --git a/back/src/Kyoo.Swagger/SwaggerModule.cs b/back/src/Kyoo.Swagger/SwaggerModule.cs index c3e9ffa4..84dfc5e5 100644 --- a/back/src/Kyoo.Swagger/SwaggerModule.cs +++ b/back/src/Kyoo.Swagger/SwaggerModule.cs @@ -57,12 +57,12 @@ namespace Kyoo.Swagger options.Info.Contact = new OpenApiContact { Name = "Kyoo's github", - Url = "https://github.com/AnonymusRaccoon/Kyoo" + Url = "https://github.com/zoriya/Kyoo" }; options.Info.License = new OpenApiLicense { 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();