Fix #7043, Fix #7274: Delete town owned bridge based on adjacent tile ownership,...
[openttd-github.git] / CONTRIBUTING.md
blob2c7ce528c9eb6b97d23ae2d0bf9e893ce209ab9c
2 # Contributing to OpenTTD
4 Looking to contribute something to OpenTTD? **Here's how you can help.**
6 Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
8 Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.
11 ## Using the issue tracker
13 The [issue tracker](https://github.com/OpenTTD/OpenTTD/issues) is the preferred channel for [bug reports](#bug-reports), but please respect the following restrictions:
15 * Please **do not** use the issue tracker for help playing or using OpenTTD.  Please try [irc](https://wiki.openttd.org/IRC_channel), or the [forums](https://www.tt-forums.net/)
17 * Please **do not** derail or troll issues. Keep the discussion on topic and respect the opinions of others.
19 * Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
20 Use [GitHub's "reactions" feature](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments) instead. We reserve the right to delete comments which violate this rule.
22 * Please **do not** open issues or pull requests regarding add-on content in NewGRF, GameScripts, AIs, etc.  These are created by third-parties.  Please try [irc](https://wiki.openttd.org/IRC_channel) or the [forums](https://www.tt-forums.net/) to discuss these.
24 ## Bug reports
26 A bug is a _demonstrable problem_ that is caused by the code in the repository.
27 Good bug reports are extremely helpful, so thanks!
29 Guidelines for bug reports:
31 0. Please don't report issues with games where you changed NewGRFs.
33 1. Please don't report issues with modified versions of OpenTTD (patchpacks and similar).
35 2. **Use the GitHub issue search** --- check if the issue has already been
36 reported.
38 3. **Check if the issue has been fixed** --- try to reproduce it using the latest `nightly` build of OpenTTD, available from https://www.openttd.org
40 4. **Isolate the problem** --- ideally create reproduceable steps with an attached savegame and screenshots. Try to use few or no NewGRFs, AIs etc if possible.
42 A good bug report shouldn't leave others needing to chase you up for more information.
43 Please try to be as detailed as possible in your report.
45 * What is your environment?
46 * What steps will reproduce the issue?
47 * Which operating system(s) experience the problem?
48 * What would you expect to be the outcome?
50 All these details will help people to fix any potential bugs.
52 Example:
54 > Short and descriptive example bug report title
56 > A summary of the issue and the OS environment in which it occurs. If
57 > suitable, include the steps required to reproduce the bug.
59 > 1. This is the first step
60 > 2. This is the second step
61 > 3. Further steps, etc.
63 > Attached savegame
64 > Attached screenshots showing the issue
65 > Crashlogs if the bug causes a crash
67 > Any other information you want to share that is relevant to the issue being
68 > reported. This might include the lines of code that you have identified as
69 > causing the bug, and potential solutions (and your opinions on their
70 > merits).
72 ## Feature requests
74 Before opening a feature request, please take a moment to find out whether your idea fits with the scope and aims of the project.
76 It's up to *you* to make a strong case to convince the project's developers of the merits of this feature.
78 Please provide as much detail and context as possible. This means don't request for a solution, but describe the problem you see and how/why you think it should be fixed.
80 For feature request we have a strict policy.
82 Keeping issues around with "a good idea" or "not really a bug but we should maybe fix it" turns out to have the reversed effect: nobody looks at it anymore.
84 Although we really appreciate feedback and ideas, we will close feature requests that we don't expect to fulfill in the next year.
86 Many of those ideas etc do have a place on the [forums](https://www.tt-forums.net); and if enough people like it, someone will stand up and make it.
88 It's usually best discuss in [irc](https://wiki.openttd.org/IRC_channel) before opening a feature request or working on a large feature in a fork.
89 Discussion in irc can take time, but it can be productive and avoid disappointment :)
91 ## Pull requests
93 Good pull requests—patches, improvements, new features—are a fantastic help.
94 They should remain focused in scope and avoid containing unrelated commits.
96 **Please ask first** before embarking on any significant pull request (e.g. implementing features, refactoring code, porting to a different language), otherwise you risk spending a lot of time working on something that the project's developers might not want to merge into the project.
98 Please adhere to the [coding guidelines](#code-guidelines) used throughout the project (indentation, accurate comments, etc.) and any other requirements (such as test coverage).
100 Adhering to the following process is the best way to get your work included in the project:
102 1. [Fork](https://help.github.com/fork-a-repo/) the project, clone your fork, and configure the remotes:
104 ```bash
105 git clone https://github.com/<your-username>/OpenTTD.git openttd
106 git clone https://github.com/OpenTTD/OpenTTD-git-hooks.git openttd_hooks
107 cd openttd
108 git remote add upstream https://github.com/OpenTTD/OpenTTD.git
109 cd .git/hooks
110 ln -s ../../../openttd_hooks/hooks/* .
113 2. If you cloned a while ago, get the latest changes from upstream:
115 ```bash
116 git fetch upstream
119 3. Create a new topic branch (off the main project development branch) to
120 contain your feature, change, or fix:
122 ```bash
123 git checkout upstream/master -b <topic-branch-name>
126 4. Commit your changes in logical chunks. Please adhere to these [git commit message guidelines](https://wiki.openttd.org/Commit_style#Commit_message) or your code is unlikely to be merged into the main project.
127 Use Git's [interactive rebase](https://help.github.com/articles/interactive-rebase) feature to tidy up your commits before making them public.
129 5. Locally rebase the upstream development branch into your topic branch:
131 ```bash
132 git fetch upstream
133 git rebase upstream/master
136 6. Push your topic branch up to your fork the first time:
138 ```bash
139 git push --set-upstream origin <topic-branch-name>
142 And any time after that:
144 ```bash
145 git push
148 7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) with a clear title and description against the `master` branch.
150 **IMPORTANT**: By submitting a patch, you agree to the [License](#license).
152 ### Privacy Notice
154 We would like to make you aware that contributing to OpenTTD via git will permanently store the name and email address you provide as well as the actual changes and the time and date you made it inside git's version history.
156 This is inevitable, because it is a main feature of git. If you are concerned about your privacy, we strongly recommend to use "Anonymous &lt;anonymous@openttd.org&gt;" as the git commit author. We might refuse anonymous contributions if malicious intent is suspected.
158 Please note that the contributor identity, once given, is used for copyright verification and to provide proof should a malicious commit be made. As such, the [EU GDPR](https://www.eugdpr.org/key-changes.html) "right to be forgotten" does not apply, as this is an overriding legitimate interest.
160 Please also note that your commit is public and as such will potentially be processed by many third-parties. Git's distributed nature makes it impossible to track where exactly your commit, and thus your personal data, will be stored and be processed. If you would not like to accept this risk, please do either commit anonymously or refrain from contributing to the OpenTTD project.
162 ### Pull request validation
164 Continuous integration (CI) tools monitor pull requests, and help us identify build and code quality issues.
166 The results of the CI tests will show on your pull request.
168 By clicking on Details you can further zoom in; in case of a failure it will show you why it failed. In case of success it will report how awesome you were.
170 ## Code guidelines
172 [Code style](https://wiki.openttd.org/Coding_style) must be adhered to for pull requests to be accepted
174 ## License
176 By contributing your code, you agree to license your contribution under the [GPL v2](https://github.com/OpenTTD/OpenTTD/blob/master/COPYING).
178 ### Attribution of this Contributing Guide
180 This contributing guide is adapted from [Bootstrap](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md) under the [Creative Commons Attribution 3.0 Unported License](https://github.com/twbs/bootstrap/blob/master/docs/LICENSE) terms for Bootstrap documentation.
181 The GDPR notice is adapted from [rsyslog](https://github.com/rsyslog/rsyslog/blob/master/CONTRIBUTING.md) under the [GNU General Public License](https://github.com/rsyslog/rsyslog/blob/master/COPYING).