Update links to the repository
Change from github.com/Beep6581/RawTherapee to github.com/RawTherapee/RawTherapee.
This commit is contained in:
parent
5f7cea0bcb
commit
b1e749e2ec
@ -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`.
|
||||
|
@ -1,7 +1,7 @@
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/Beep6581/RawTherapee/dev/rtdata/images/rt-logo-text-white.svg">
|
||||
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/Beep6581/RawTherapee/dev/rtdata/images/rt-logo-text-black.svg">
|
||||
<img alt="RawTherapee logo" src="[https://user-images.githubusercontent.com/25423296/163456779-a8556205-d0a5-45e2-ac17-42d089e3c3f8.png](https://raw.githubusercontent.com/Beep6581/RawTherapee/dev/rtdata/images/rt-logo-text-black.svg)">
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/RawTherapee/RawTherapee/dev/rtdata/images/rt-logo-text-white.svg">
|
||||
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/RawTherapee/RawTherapee/dev/rtdata/images/rt-logo-text-black.svg">
|
||||
<img alt="RawTherapee logo" src="[https://user-images.githubusercontent.com/25423296/163456779-a8556205-d0a5-45e2-ac17-42d089e3c3f8.png](https://raw.githubusercontent.com/RawTherapee/RawTherapee/dev/rtdata/images/rt-logo-text-black.svg)">
|
||||
</picture>
|
||||
|
||||

|
||||
|
@ -15,7 +15,7 @@
|
||||
<content_rating type="oars-1.0" />
|
||||
<metadata_license>CC-BY-SA-4.0</metadata_license>
|
||||
<project_license>GPL-3.0+</project_license>
|
||||
<url type="bugtracker">https://github.com/Beep6581/RawTherapee/issues</url>
|
||||
<url type="bugtracker">https://github.com/RawTherapee/RawTherapee/issues</url>
|
||||
<url type="donation">https://www.paypal.me/rawtherapee</url>
|
||||
<url type="help">https://rawpedia.rawtherapee.com</url>
|
||||
<url type="homepage">https://www.rawtherapee.com</url>
|
||||
|
@ -7,7 +7,7 @@ RawTherapee - An advanced, cross-platform program for developing raw photos.
|
||||
Website: http://www.rawtherapee.com/
|
||||
Documentation: http://rawpedia.rawtherapee.com/
|
||||
Forum: https://discuss.pixls.us/c/software/rawtherapee
|
||||
Code and bug reports: https://github.com/Beep6581/RawTherapee
|
||||
Code and bug reports: https://github.com/RawTherapee/RawTherapee
|
||||
.SH SYMBOLS
|
||||
<Chevrons> indicate parameters you can change.
|
||||
[Square brackets] mean the parameter is optional.
|
||||
|
@ -10,7 +10,7 @@ this file.
|
||||
If you add values for your own camera, consider sharing them with the community for everyone's benefit. You can do so
|
||||
via our forum or GitHub page:
|
||||
- https://discuss.pixls.us/c/software/rawtherapee
|
||||
- https://github.com/Beep6581/RawTherapee/issues
|
||||
- https://github.com/RawTherapee/RawTherapee/issues
|
||||
|
||||
Value priority:
|
||||
1. If you set the dcraw matrix in your user camconst.json file for a camera entry which already exists in RT's file
|
||||
|
@ -510,7 +510,7 @@ int processLineParams ( int argc, char **argv )
|
||||
std::cout << " Website: http://www.rawtherapee.com/" << std::endl;
|
||||
std::cout << " Documentation: http://rawpedia.rawtherapee.com/" << std::endl;
|
||||
std::cout << " Forum: https://discuss.pixls.us/c/software/rawtherapee" << std::endl;
|
||||
std::cout << " Code and bug reports: https://github.com/Beep6581/RawTherapee" << std::endl;
|
||||
std::cout << " Code and bug reports: https://github.com/RawTherapee/RawTherapee" << std::endl;
|
||||
std::cout << std::endl;
|
||||
std::cout << "Symbols:" << std::endl;
|
||||
std::cout << " <Chevrons> indicate parameters you can change." << std::endl;
|
||||
|
@ -158,7 +158,7 @@ int processLineParams ( int argc, char **argv )
|
||||
printf(" Website: http://www.rawtherapee.com/\n");
|
||||
printf(" Documentation: http://rawpedia.rawtherapee.com/\n");
|
||||
printf(" Forum: https://discuss.pixls.us/c/software/rawtherapee\n");
|
||||
printf(" Code and bug reports: https://github.com/Beep6581/RawTherapee\n\n");
|
||||
printf(" Code and bug reports: https://github.com/RawTherapee/RawTherapee\n\n");
|
||||
printf("Symbols:\n");
|
||||
printf(" <Chevrons> indicate parameters you can change.\n\n");
|
||||
printf("Usage:\n");
|
||||
|
@ -22,7 +22,7 @@ exe="${prog}"
|
||||
exeRelativePath=""
|
||||
|
||||
# The path to the repository:
|
||||
repo="https://github.com/Beep6581/RawTherapee.git"
|
||||
repo="https://github.com/RawTherapee/RawTherapee.git"
|
||||
|
||||
# No touching below this line, with the exception of the "Compile" section
|
||||
# -----------------------------------------------------------------------------
|
||||
|
@ -412,7 +412,7 @@ function CreateDmg {
|
||||
CreateWebloc 'Website' 'https://www.rawtherapee.com/'
|
||||
CreateWebloc 'Documentation' 'https://rawpedia.rawtherapee.com/'
|
||||
CreateWebloc 'Forum' 'https://discuss.pixls.us/c/software/rawtherapee'
|
||||
CreateWebloc 'Report Bug' 'https://github.com/Beep6581/RawTherapee/issues/new'
|
||||
CreateWebloc 'Report Bug' 'https://github.com/RawTherapee/RawTherapee/issues/new'
|
||||
|
||||
# Disk image name
|
||||
if [[ -n $UNIVERSAL_URL ]]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user