Update links to the repository

Change from github.com/Beep6581/RawTherapee to
github.com/RawTherapee/RawTherapee.
This commit is contained in:
Lawrence Lee
2025-03-23 16:57:51 -07:00
parent 5f7cea0bcb
commit b1e749e2ec
9 changed files with 11 additions and 11 deletions

View File

@@ -18,7 +18,7 @@ The most useful feedback is based on the latest development code, and in the cas
- Keep branches small so that completed and working features can be merged into the "dev" branch often, and so that they can be abandoned if they head in the wrong direction.
- Documentation for your work must be provided in order for your branch to be merged if it changes or adds anything the user should know about. The documentation can be provided in plain-text or markdown form as a comment in the issue or pull request.
- Use C++11.
- To break header dependencies use forward declarations as much as possible. See [#5197](https://github.com/Beep6581/RawTherapee/pull/5197#issuecomment-468938190) for some tips.
- To break header dependencies use forward declarations as much as possible. See [#5197](https://github.com/RawTherapee/RawTherapee/pull/5197#issuecomment-468938190) for some tips.
- The naming isn't homogeneous throughout the code but here is a rough guideline:
- *Identifiers* (variables, functions, methods, keys, enums, etc.) should be clear and unambiguous. Make them as long as necessary to ensure that your code is understandable to others.
- *Types* (classes, structs, enums, typedefs...) should be named with `UpperCamelCase`.