Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2019-07-05 01:24:13 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2019-07-05 01:24:36 +0300
commitfdcfc263e97324dd991b7251143e6403c61f3c50 (patch)
tree63ae0a8cc9b29a23e2501c26dd2ad1e5c8f49ceb /intern
parent2740bdfff9f38807301fb3ee4d6a4949d8d8bb20 (diff)
Use latest/version number for manual links
We want users to go to the current version for their current version when possible if not point to latest. /dev should really only be for development related work. End users should not be browsing /dev unless they are reading about upcoming features ahead of time.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/__init__.py2
-rw-r--r--intern/cycles/device/device_cuda.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/blender/addon/__init__.py b/intern/cycles/blender/addon/__init__.py
index 4b838cce281..6d6f89603fe 100644
--- a/intern/cycles/blender/addon/__init__.py
+++ b/intern/cycles/blender/addon/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
"blender": (2, 80, 0),
"description": "Cycles renderer integration",
"warning": "",
- "wiki_url": "https://docs.blender.org/manual/en/dev/render/cycles/",
+ "wiki_url": "https://docs.blender.org/manual/en/latest/render/cycles/",
"tracker_url": "",
"support": 'OFFICIAL',
"category": "Render"}
diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp
index 7ab823423b5..4d7d87828c2 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -199,7 +199,7 @@ class CUDADevice : public Device {
fprintf(stderr,
"\nRefer to the Cycles GPU rendering documentation for possible solutions:\n");
fprintf(stderr,
- "https://docs.blender.org/manual/en/dev/render/cycles/gpu_rendering.html\n\n");
+ "https://docs.blender.org/manual/en/latest/render/cycles/gpu_rendering.html\n\n");
first_error = false;
}
}