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
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-12-07 19:28:38 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-12-07 19:29:07 +0300
commite2d9166473184c4794dc6bdbf91aa2b6ac2a16ec (patch)
tree792e44837cfa9b79352e75cee31d98e5f3b22ee5 /release/scripts/startup/bl_ui/properties_output.py
parent16e67dc206d4dec9aa6f39eec1609b1866654eab (diff)
Metadata: add hostname to the available metadata options
Having the hostname allows us to identify which machine rendered which frame in our render farm. This simply uses the host's name, and doesn't do any DNS lookup of any IP address of the machine. As such, it's only usable for identification purposes, and not for reachability over a network. Reviewers: sergey, brecht Reviewed By: sergey Differential Revision: https://developer.blender.org/D4047
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_output.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_output.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_output.py b/release/scripts/startup/bl_ui/properties_output.py
index 06119140245..d7b482c4dc5 100644
--- a/release/scripts/startup/bl_ui/properties_output.py
+++ b/release/scripts/startup/bl_ui/properties_output.py
@@ -205,6 +205,8 @@ class RENDER_PT_stamp(RenderOutputButtonsPanel, Panel):
col.prop(rd, "use_stamp_frame_range", text="Frame Range")
col = flow.column()
col.prop(rd, "use_stamp_memory", text="Memory")
+ col = flow.column()
+ col.prop(rd, "use_stamp_hostname", text="Hostname")
col = flow.column()
col.prop(rd, "use_stamp_camera", text="Camera")