diff --git a/Admin/License/rtbUpdateLicenseNotice.m b/Admin/License/rtbUpdateLicenseNotice.m
new file mode 100644
index 0000000000000000000000000000000000000000..4a5c28b225828b6724fe967a6e3e25987299ddcc
--- /dev/null
+++ b/Admin/License/rtbUpdateLicenseNotice.m
@@ -0,0 +1,94 @@
+function rtbUpdateLicenseNotice(varargin)
+%% Insert copyright and license text to all RenderToolbox4 m-files.
+%
+% rtbUpdateLicenseNotice() Recursively finds all m-files in the
+% RenderToolbox4 file tree.  For each m-file, inserts the text in
+% licenseNotice.m near the top of the file.
+%
+% The lines in licenseNotice.m all begin with %%%.  Any lines near the top
+% of each m-file that begin with %%% will be replced with the contents of
+% licenseNotice.m.  Other lines will be copied as they are.  This prevents
+% redundant copyright and license notices, and allows them to be updated.
+%
+% rtbUpdateLicenseNotice('commit', true) Actually modifies
+% RenderToolbox4 files with copyright and license text.  The default is to
+% display a preview of each RenderToolbox4 file with copyright and license
+% text added.
+%
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
+
+parser = inputParser();
+parser.addParameter('commit', false, @islogical);
+parser.parse(varargin{:});
+commit = parser.Results.commit;
+
+% get all the m-files in the RenderToolbox4 source tree
+mFiles = rtbFindFiles('root', rtbRoot(), 'filter', '\.m$');
+
+% get the text to insert
+noticeFile = fullfile(rtbRoot(), 'Admin', 'License', 'licenseNotice.m');
+fid = fopen(noticeFile, 'r');
+licenseText = fread(fid, '*char');
+fclose(fid);
+
+% append text to all m-files
+nFiles = numel(mFiles);
+for ii = 1:nFiles
+    % skip the license notice itself
+    if strcmp(noticeFile, mFiles{ii})
+        continue;
+    end
+    
+    % read the original m-file text line by line.  Look for
+    %   leading text before the first %%%, to copy
+    %   contiguous lines starting with %%%, to replace
+    %   trailing lines after the last contiguous %%%, to copy
+    fid = fopen(mFiles{ii}, 'r');
+    originalText = fread(fid, '*char');
+    fclose(fid);
+    [starts, ends] = regexp(originalText', '(?m)^%%%(?-s).+(?m)$');
+    if isempty(starts)
+        continue;
+    end
+    
+    % assemble chunks of text:
+    %   original leading text
+    %   licence text
+    %   original trailing
+    leadingRange = 1:starts(1)-1;
+    trailingRange = ends(end)+1:numel(originalText);
+    newText = cat(1, originalText(leadingRange), licenseText, originalText(trailingRange));
+    
+    if commit
+        % really modify files
+        
+        % write new text to a temporary file
+        tempFile = fullfile(tempdir(), 'rtbUpdateLicenseNotice.m');
+        fid = fopen(tempFile, 'w');
+        fwrite(fid, newText);
+        fclose(fid);
+        
+        % replace the original file
+        copyfile(tempFile, mFiles{ii});
+        
+        % done with the temp file
+        delete(tempFile);
+        
+    else
+        % preview file changes
+        disp(' ')
+        disp('----')
+        disp(mFiles{ii})
+        disp(' ')
+        if isempty(leadingRange)
+            previewStart = 1;
+        else
+            previewStart = max(leadingRange) - 20;
+        end
+        previewEnd = previewStart + numel(licenseText) + 40;
+        disp(['...' newText(previewStart:previewEnd)' '...'])
+        
+    end
+end
\ No newline at end of file
diff --git a/BatchRenderer/AssimpStrategy/BasicMappings/rtbValidateMappings.m b/BatchRenderer/AssimpStrategy/BasicMappings/rtbValidateMappings.m
index 58f0d559f202a389bdff0b7657e33302567284f7..26b55f4fed7abfe1be0a282335f0dbe94188176f 100644
--- a/BatchRenderer/AssimpStrategy/BasicMappings/rtbValidateMappings.m
+++ b/BatchRenderer/AssimpStrategy/BasicMappings/rtbValidateMappings.m
@@ -9,9 +9,9 @@ function mappings = rtbValidateMappings(rawMappings)
 %
 % mappings = rtbValidateMappings(rawMappings)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 
 %% Declare standard mappings struct fields.
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/BatchRender.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/BatchRender.m
index c5974db5fa916e17fd682f7e13d0f73198402e41..094b03a7c46b66bd89de709035dd79198577736c 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/BatchRender.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/BatchRender.m
@@ -8,9 +8,9 @@ function outFiles = BatchRender(scenes, hints)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ChangeToFolder.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ChangeToFolder.m
index 44118beb55a1e8af0a7fb16909604d67bca38e47..a3509510ebee735d5fa6263082cbe99ecefe0a3d 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ChangeToFolder.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ChangeToFolder.m
@@ -8,9 +8,9 @@ function wasCreated = ChangeToFolder(folder)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ChangeToWorkingFolder.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ChangeToWorkingFolder.m
index 348e98c6ab358b276222f8fff3a1dae6290d482d..122c98643df8bc5762483cff0da3e7ebbb441a70 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ChangeToWorkingFolder.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ChangeToWorkingFolder.m
@@ -8,9 +8,9 @@ function wasCreated = ChangeToWorkingFolder(hints)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/FindFiles.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/FindFiles.m
index 7a6d24885d4ae36bfd6ceabb71ca6ca5b0c4f1bd..60de6d0b6504c6067bdab44aac5589de1cea4fb2 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/FindFiles.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/FindFiles.m
@@ -8,9 +8,9 @@ function fileList = FindFiles(folder, filter, isFolders, isExact)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetDefaultHints.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetDefaultHints.m
index 91253a43f867057992b4debf2167773a0f5551be..84e9d3eb3bb67c305cce328e1931c08571d9cd17 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetDefaultHints.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetDefaultHints.m
@@ -8,9 +8,9 @@ function hints = GetDefaultHints(hints)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetPixelSpectrum.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetPixelSpectrum.m
index a0c7bcbbff77803a5649b00030c0ac7e5d2cb5a5..52e8a0019fdd66f1ade6348d677cbc930cd9dde9 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetPixelSpectrum.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetPixelSpectrum.m
@@ -8,9 +8,9 @@ function [wavelengths, magnitudes, sRGB] = GetPixelSpectrum(image, spectrum, x,
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetWorkingFolder.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetWorkingFolder.m
index 73ae99928cf9d5384db20a18e0ed7e794ab6aa78..bf21dda716b633ff97f68f71c3c809f6b2527974 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetWorkingFolder.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/GetWorkingFolder.m
@@ -8,9 +8,9 @@ function folder = GetWorkingFolder(folderName, isRendererSpecific, hints)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeMontage.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeMontage.m
index b0386811b90193301355248e0332d95b6ce092fb..6dc2639fbcd8eb77ced9c2634bb7d1de2d2055dd 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeMontage.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeMontage.m
@@ -8,9 +8,9 @@ function [SRGBMontage, XYZMontage, luminanceScale] = MakeMontage(inFiles, outFil
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeSceneFiles.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeSceneFiles.m
index cc8e5eefd037941a1bda76e95b7996ac6e87fa59..7389a6c1ae4ca3001c10abeff2fa5c8b978b80bd 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeSceneFiles.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeSceneFiles.m
@@ -8,9 +8,9 @@ function scenes = MakeSceneFiles(colladaFile, conditionsFile, mappingsFile, hint
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeSensorImages.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeSensorImages.m
index c340842ee3877324362c684179b0cdef28bd9d00..d1806d810f986bc25bd9e7ea8e4be82de0483253 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeSensorImages.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MakeSensorImages.m
@@ -8,9 +8,9 @@ function outFiles = MakeSensorImages(inFiles, matchingFunctions, matchingS, matc
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MultispectralToSRGB.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MultispectralToSRGB.m
index 2c1890de0c243747036d81db1d626e50991531f2..7e3d76242194d1917f10ead9ad45aa329e477eef 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MultispectralToSRGB.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/MultispectralToSRGB.m
@@ -8,9 +8,9 @@ function [sRGBImage, XYZImage, rawRGBImage] = MultispectralToSRGB(multispectralI
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ParseConditions.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ParseConditions.m
index 99a459b73beca02372c472fb568813cf3661a56b..faa6590db59e80431f8a129570b4cb5ace882f31 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ParseConditions.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ParseConditions.m
@@ -8,9 +8,9 @@ function [names, values] = ParseConditions(conditionsFile)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/PromoteRGBReflectance.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/PromoteRGBReflectance.m
index 8da6e3ff668d49a0cfb53797a7706ecf4d0be590..ca0666674329040a3d6cd024845888eb6eb41fb5 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/PromoteRGBReflectance.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/PromoteRGBReflectance.m
@@ -8,9 +8,9 @@ function [promoted, S, RGB, dataFile] = PromoteRGBReflectance(reflectance, illum
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ReadSpectrum.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ReadSpectrum.m
index e255df2ac1b69f63501a6392f200fff9730e65aa..afc21a79ae7bebea6a8cf402e0a0de77e08237aa 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ReadSpectrum.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ReadSpectrum.m
@@ -8,9 +8,9 @@ function [wavelengths, magnitudes] = ReadSpectrum(spectrum)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/RenderToolboxRoot.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/RenderToolboxRoot.m
index 0077faa966265b595d19d9dfd395da6564d81faf..fa8bbdb0eb7960bff787c02d386678a8d02333e8 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/RenderToolboxRoot.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/RenderToolboxRoot.m
@@ -8,9 +8,9 @@ function rootPath = RenderToolboxRoot()
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated('newName', 'rtbRoot');
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ShowXYZAndSRGB.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ShowXYZAndSRGB.m
index d296c5bac0f188f0af609f76749d1b968083249b..6e82ad0ccc23c2f05c9b6e8b0f9f27449adcffb4 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ShowXYZAndSRGB.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/ShowXYZAndSRGB.m
@@ -8,9 +8,9 @@ function ShowXYZAndSRGB(XYZImage, SRGBImage, name, hints)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/WriteConditionsFile.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/WriteConditionsFile.m
index 24855214b79c74abe3c7bea3c0d1e3f400f935a1..d8f46d7d30867ec48d1733916cb37d9ea553ee41 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/WriteConditionsFile.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/WriteConditionsFile.m
@@ -8,9 +8,9 @@ function conditionsFile = WriteConditionsFile(conditionsFile, names, values)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/WriteSpectrumFile.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/WriteSpectrumFile.m
index df205c4d4d6afbd1645799e0018f05abf6f85955..966ca397780f05b17573c624bfb170bb74009434 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/WriteSpectrumFile.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/WriteSpectrumFile.m
@@ -8,9 +8,9 @@ function filename = WriteSpectrumFile(wavelengths, magnitudes, filename)
 % To encourage users to update to Versoin 3 code, this wrapper will display
 % an irritating warning.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 rtbWarnDeprecated();
 
diff --git a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/rtbWarnDeprecated.m b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/rtbWarnDeprecated.m
index 11614e7fbf2abc15136994117716f2534b7f1511..4467f0d8b1088dc0169bc1b5d61069ad6c5f7041 100644
--- a/BatchRenderer/ColladaStrategy/CompatibilityWrappers/rtbWarnDeprecated.m
+++ b/BatchRenderer/ColladaStrategy/CompatibilityWrappers/rtbWarnDeprecated.m
@@ -10,9 +10,9 @@ function rtbWarnDeprecated(varargin)
 % function, and uses that as the oldName.  It prepends 'rtb' to this
 % oldName and uses the result for newName.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 callStack = dbstack();
 if numel(callStack) > 1
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ApplySceneDOMPaths.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ApplySceneDOMPaths.m
index f05feb8828a8caca66809e5233b6c8a21c6a2d9c..6b866dc5eb366d08766ba5282a2b711f58aa6b59 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ApplySceneDOMPaths.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ApplySceneDOMPaths.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Modify a scene document with a mapping.
 %   @param idMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/EditObjectProperty.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/EditObjectProperty.m
index 95130fe4e265107c1c54a95e74be191a79c0e1c3..eb881c9a3db3d9d89f2ce52232c2c7dd10ebdb84 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/EditObjectProperty.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/EditObjectProperty.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Change a mappings object property name and type.
 %   @param obj
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/FillInObjectProperty.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/FillInObjectProperty.m
index 56d461e8e835c77257febe47de000ce7934899c1..9233ab854dedc9e618343a3db4bbf17964556bbd 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/FillInObjectProperty.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/FillInObjectProperty.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Make sure the given mappings object has the given property.
 %   @param obj
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/GetObjectProperty.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/GetObjectProperty.m
index a259f619965576e429cd39beb0cc72f57ad7ab94..5c43dcf20347b59805bf8c35ef60c34532188252 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/GetObjectProperty.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/GetObjectProperty.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get a mappings object property value.
 %   @param obj
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/MappingsToObjects.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/MappingsToObjects.m
index 8a01c0674d434a91f3d54e282b93e48a246de82f..efb23fd2af44af80de0ca01c2dbe8bebeaa68a31 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/MappingsToObjects.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/MappingsToObjects.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Group mappings into meaningful objects.
 %   @param mappings
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ParseMappings.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ParseMappings.m
index c9ff15a33d40afcf7a02f237a02e17665e4d3323..ef9ab5218a90c8f16fb1a7eca1fddefb01645b16 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ParseMappings.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ParseMappings.m
@@ -25,9 +25,9 @@ function mappings = ParseMappings(mappingsFile)
 %
 % mappings = ParseMappings(mappingsFile)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('mappingsFile', @ischar);
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ResolveMappingsValues.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ResolveMappingsValues.m
index 9dd6e62522ca14b4957f6c1bf60fae8ef54683ee..e55d3e73586773a7e6142c05922db177df91701f 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ResolveMappingsValues.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/ResolveMappingsValues.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Update mappings by resolving expressions to concrete values.
 %   @param mappings struct of mappings data from ParseMappings()
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/SetObjectProperty.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/SetObjectProperty.m
index 35784dcd568d0e3767dd8803c4fdfe1074dbad22..6c4010d97864cfa0edd84c983121abbb7a754718 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/SetObjectProperty.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/SetObjectProperty.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Set a mappings object property value.
 %   @param obj
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/SupplementGenericObjects.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/SupplementGenericObjects.m
index aa7c428d724c2320f2d6f1043977e97771c8564a..2a107dfa8be3b9ef1c0648108a76471ba8a18688 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/SupplementGenericObjects.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/Mappings/SupplementGenericObjects.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Fill in generic objects with default properties, if needed.
 %   @param objects
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/WriteDefaultMappingsFile.m b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/WriteDefaultMappingsFile.m
index aab848810503cced27e1962c01963df99edb236f..d6cd60a88e3f4658e4c35930f380e23f5e61bb11 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/WriteDefaultMappingsFile.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/BatchRenderer/WriteDefaultMappingsFile.m
@@ -32,9 +32,9 @@ function mappingsFile = WriteDefaultMappingsFile(colladaFile, varargin)
 %
 % mappingsFile = WriteDefaultMappingsFile(colladaFile, varargin)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('colladaFile', @ischar);
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Documentation/BasicFunction.m b/BatchRenderer/ColladaStrategy/Deprecated/Documentation/BasicFunction.m
index 98f902439342a813cf4caea4fa4e889cfacf7105..676b754f30b8dad259030f4160f3f32dd5de0f32 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Documentation/BasicFunction.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Documentation/BasicFunction.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % This is an basic example function.
 %
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Documentation/GreatFunction.m b/BatchRenderer/ColladaStrategy/Deprecated/Documentation/GreatFunction.m
index 0c3acf54bdda3333edd29bac96acbea05bff9cb2..b8b1cfcd00214fde10ab72b0ae67210c6f3480f0 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Documentation/GreatFunction.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Documentation/GreatFunction.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % This is a regular example function.
 %   @param inArg an input argument
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Documentation/MainPage.m b/BatchRenderer/ColladaStrategy/Deprecated/Documentation/MainPage.m
index bab3db10d3eb4480b5b7a743d37b310cca44bc59..241d783d7e357c93de535d2a9e283682d5e394fa 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Documentation/MainPage.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Documentation/MainPage.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % @defgroup RecipeAPI Recipe API
 % Utilities for workign with recipes.
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Documentation/SuperDuperFunction.m b/BatchRenderer/ColladaStrategy/Deprecated/Documentation/SuperDuperFunction.m
index ba5166b42610b82c71c818b8cc72c0a997cb4e3a..be614304c3542522facbfb9292e3c8a7e8276e0c 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Documentation/SuperDuperFunction.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Documentation/SuperDuperFunction.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % This is a longer example function.
 %   @param inOne the first input argument
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/GetRemodelerAPIFunction.m b/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/GetRemodelerAPIFunction.m
index 458dde1d8c253e87a61c7725dca69bd81b12f53e..526c63b523ae4cfde27fc06428384d181b57dfb8 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/GetRemodelerAPIFunction.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/GetRemodelerAPIFunction.m
@@ -28,9 +28,9 @@ function [remodelerFunction, functionPath] = GetRemodelerAPIFunction(functionNam
 %
 % [remodelerFunction, functionPath] = GetRemodelerAPIFunction(functionName, hints)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('functionName', @(s) ischar(s) && any(strcmp(s, {'BeforeAll', 'BeforeCondition', 'AfterCondition'})));
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_AfterCondition_SampleRemodeler.m b/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_AfterCondition_SampleRemodeler.m
index 40757c82f2f02dc8f8085215d16627d17d4b8fc4..c616ce17b8d6020c0a47156de3a6eb3a9cd83964 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_AfterCondition_SampleRemodeler.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_AfterCondition_SampleRemodeler.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Modify a Collada document once per condition, after applying mappings.
 %   @param docNode XML Collada document node Java object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_BeforeAll_SampleRemodeler.m b/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_BeforeAll_SampleRemodeler.m
index dc010dd4f8f846150659aa08b12a3bdb8fbe8e32..3121f96690ee9e8fc4bb9623ff092678a0e9d9a8 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_BeforeAll_SampleRemodeler.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_BeforeAll_SampleRemodeler.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Modify a Collada document once, before all other processing.
 %   @param docNode XML Collada document node Java object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_BeforeCondition_SampleRemodeler.m b/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_BeforeCondition_SampleRemodeler.m
index b8db1b294d7cf6218340b6fdf3740292bae8771b..0d3261b2f00368d3457d1aca96c9f5cc6a37a5cc 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_BeforeCondition_SampleRemodeler.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RemodelerPlugins/RTB_BeforeCondition_SampleRemodeler.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Modify a Collada document once per condition, before applying mappings.
 %   @param docNode XML Collada document node Java object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/GetRendererAPIFunction.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/GetRendererAPIFunction.m
index 10eb4f3b2a731a2cba7226a7ca0209e6c63f8f1e..08c7271d4b5b6de18ceeb6d78454fc1046bcd1fd 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/GetRendererAPIFunction.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/GetRendererAPIFunction.m
@@ -30,9 +30,9 @@ function [rendererFunction, functionPath] = GetRendererAPIFunction(functionName,
 %
 % [rendererFunction, functionPath] = GetRendererAPIFunction(functionName, hints)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('functionName', @(s) ischar(s) && any(strcmp(s, {'ApplyMappings', 'ImportCollada', 'Render', 'DataToRadiance', 'VersionInfo'})));
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/ApplyMitsubaObjects.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/ApplyMitsubaObjects.m
index 64a3a9a8ff547351f8ea49e60386005866b60456..8a4c9a643e95525677a87677f0fe6165deb9613e 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/ApplyMitsubaObjects.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/ApplyMitsubaObjects.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Apply Mitsuba mappings objects to the adjustments DOM.
 %   @param idMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/GenericObjectsToMitsuba.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/GenericObjectsToMitsuba.m
index eb6c6b9870dc271f15175d25121b688e4a7d2abb..d121e6ca7ea5d6be26cca995a5d225204dbad90d 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/GenericObjectsToMitsuba.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/GenericObjectsToMitsuba.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Translate generic object names and values to Mitsuba.
 %   @param objects
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_ApplyMappings_Mitsuba.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_ApplyMappings_Mitsuba.m
index 3a9c9aabceb1b7dfd5c56ba4fe9339a2d6e6e37a..e0661d02e3add9fd4a17bb5f2ad6aba152893d3d 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_ApplyMappings_Mitsuba.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_ApplyMappings_Mitsuba.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert mappings objects to native adjustments for the Mitsuba.
 %   @param objects mappings objects as returned from MappingsToObjects()
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_DataToRadiance_Mitsuba.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_DataToRadiance_Mitsuba.m
index bcbe871000a6eeffc34f3e063ae618a4d4df2020..20a6877876fafa49373ec4fe564d1c8e968a7309 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_DataToRadiance_Mitsuba.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_DataToRadiance_Mitsuba.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert Mitsuba data to units of radiance.
 %   @param multispectralImage numeric rendering data from a Render function
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_ImportCollada_Mitsuba.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_ImportCollada_Mitsuba.m
index 904f377d97eeea090c3a848cc575c7969d9598ac..98d483d73fe21194fa3a42665c74c9103e8a02f8 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_ImportCollada_Mitsuba.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_ImportCollada_Mitsuba.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a Collada parent scene file the Mitsuba native format
 %   @param colladaFile input Collada parent scene file name or path
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_Render_Mitsuba.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_Render_Mitsuba.m
index 67550dc4accaf0f316f929da6ddae1bbf44fc246..9694c2d1e16caa96d86efffcb9ec1ae3e30a583f 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_Render_Mitsuba.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_Render_Mitsuba.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Invoke Mitsuba.
 %   @param scene struct description of the scene to be rendererd
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_VersionInfo_Mitsuba.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_VersionInfo_Mitsuba.m
index 8c0dcde7e742d02763b367aecd855bfbafc19c8c..f8c66317a12cb420f624ea82a3bcccfbde1c834d 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_VersionInfo_Mitsuba.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RTB_VersionInfo_Mitsuba.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get version information about the Mitsuba.
 %
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RunMitsuba.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RunMitsuba.m
index 783098c8d3375f7c9139ac99ca6e6d527293e882..48ffc09c29ea0222a292c2f182e81fe4afceaaff 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RunMitsuba.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/Mitsuba/RunMitsuba.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Invoke the Mitsuba renderer.
 %   @param sceneFile filename or path of a Mitsuba-native scene file.
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ApplyPBRTObjects.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ApplyPBRTObjects.m
index 72626b72bd0fc3076fe2f7f6aaf436fc658b6237..3d272b67e983de0f1bc45ae8da294f77c475ed47 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ApplyPBRTObjects.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ApplyPBRTObjects.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Apply PBRT mappings objects to the adjustments DOM.
 %   @param idMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddParameter.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddParameter.m
index b020f4dfff3db5602a8cb0e194a5eac308fc71b8..d4ba7f7faa68eaa529b0d684b9e4b68b7c528c4f 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddParameter.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddParameter.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Add a parameter to a PBRT-XML document.
 %   @param idMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddReference.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddReference.m
index d26f30cdff77214ce8a39d0866c20576c9ae1ef4..d86a49acd50565ddd92b526c4e1c05f51b99d098 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddReference.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddReference.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Add an instance reference to a PBRT-XML document.
 %   @param idMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddTransform.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddTransform.m
index 8a6f1e603a2c7d5928d4a33cb147836a226467cc..9b7c456c48cbe42aca2cbf7f46770a0794178928 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddTransform.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/AddTransform.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Add a transformation to a PBRT-XML document.
 %   @param idMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertCamera.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertCamera.m
index b78a217621d5e386dea0bc7dcb3d4320745e0223..cb8e88c74552a5df6247b6705ddf26276309c17a 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertCamera.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertCamera.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a camera from a Collada document to a PBRT-XML document.
 %   @param id
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertGeometry.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertGeometry.m
index 0beb5979e43e58c6115f2e7f694038a825faa6bc..58c3cda7c90459d05d3d0c5ee35dec9ff4532fb3 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertGeometry.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertGeometry.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert geometry from a Collada document to a PBRT-XML document.
 %   @param id
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertLight.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertLight.m
index a23d3d7bfdc50e26c30eedf1c72164556bc65819..65ead699143712f5e81135cbd720480e062c89f1 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertLight.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertLight.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a light from a Collada document to a PBRT-XML document.
 %   @param id
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertMaterial.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertMaterial.m
index 1b107c4434ea2655afd774b1b9b6719a7db37d8a..7df3c7eb4f9be1ee247723abf7ce64329337c285 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertMaterial.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertMaterial.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a material from a Collada document to a PBRT-XML document.
 %   @param id
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertNode.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertNode.m
index a19413e43a62136400f8653d49da84b9af0b01c1..1c5a88b1b7016190db7eb5cd807a5095b13ccd89 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertNode.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertNode.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a "node" node from a Collada document to a PBRT-XML document.
 %   @param id
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertReferences.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertReferences.m
index 1a55a00b277a63a06a476c7659670caa48982951..75bd9216c3c5bd6535bc08ba3a5e8ec44bc49b29 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertReferences.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/ConvertReferences.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a reference from a Collada document to a PBRT-XML document.
 %   @param id
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/CreateStubDOM.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/CreateStubDOM.m
index f242b07199b0f3fcf96accffb70ec155ee0f2724..61e4accdecafce670c089e2002de457250f49a65 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/CreateStubDOM.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/CreateStubDOM.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a PBRT-XML "stub" document to receive scene data.
 %   @param idMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/PopulateStubDOM.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/PopulateStubDOM.m
index 2ccac2ccb918d0178c786164720f92b72889195a..15d32dca408141469c70e732bfde026e99805865 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/PopulateStubDOM.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/PopulateStubDOM.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Populate a PBRT-XML "stub" document with Collada data.
 %   @param stubIDMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/PrintPBRTStatement.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/PrintPBRTStatement.m
index c99fb4e2533623b2f70251c203fc391f8ff30122..9e460d823e4e7b2bfb78769ff0caa0143321f1ed 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/PrintPBRTStatement.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/PrintPBRTStatement.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Print a standard PBRT scene file statement to a file.
 %   @param fid
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/SetType.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/SetType.m
index b73d8c82ddcc32de97b871e337c4c9a6b9367bf9..d404f0ff28887a5b515b5084415d588c23c3ec65 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/SetType.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/SetType.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Set the PBRT identifier and type of a PBRT-XML document node.
 %   @param idMap
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/WritePBRTFile.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/WritePBRTFile.m
index 3f39375d57ba41166984406bf446875efd5f97a8..e844d557d1cb168badcc9398117921ce97b82238 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/WritePBRTFile.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/ColladaToPBRT/WritePBRTFile.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a "node" node from a Collada document to a PBRT-XML document.
 %   @param PBRTFile name for a new PBRT scene text file
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/GenericObjectsToPBRT.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/GenericObjectsToPBRT.m
index 1d45431ea7156e35fdf8380981f39cfbe5e7326d..1d5f1ad63e0549e05464ed381b1ff8ad304347e1 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/GenericObjectsToPBRT.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/GenericObjectsToPBRT.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Translate generic object names and values to PBRT.
 %   @param objects
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_ApplyMappings_PBRT.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_ApplyMappings_PBRT.m
index ae86f9100adb15a0dc87ce9c9a00edd48d031b8e..5f3a8f1e2c2715220659a4975f93fa093a130716 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_ApplyMappings_PBRT.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_ApplyMappings_PBRT.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert mappings objects to native adjustments for the PBRT.
 %   @param objects mappings objects as returned from MappingsToObjects()
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_DataToRadiance_PBRT.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_DataToRadiance_PBRT.m
index f2e8e8e0349d468e502022ab2d48556bc0588731..27142129c03d12be040a0df552a53ead65e36265 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_DataToRadiance_PBRT.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_DataToRadiance_PBRT.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert PBRT data to units of radiance.
 %   @param multispectralImage numeric rendering data from a Render function
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_ImportCollada_PBRT.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_ImportCollada_PBRT.m
index eae6e16585eedea7dd4f7bcd5821eb4fbceb5552..d1c9ac2e4b569085417f8465ebf4b941247eace4 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_ImportCollada_PBRT.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_ImportCollada_PBRT.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a Collada parent scene file the PBRT native format
 %   @param colladaFile input Collada parent scene file name or path
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_Render_PBRT.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_Render_PBRT.m
index 0470cdee32987588fdf74295dab12976528f96cb..b95b3fde39640471a797010642b4e466ead585af 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_Render_PBRT.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_Render_PBRT.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Invoke PBRT.
 %   @param scene struct description of the scene to be rendererd
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_VersionInfo_PBRT.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_VersionInfo_PBRT.m
index d7b897a107643c1777c85369f86b2592ce1ef237..76d02c3707275e36b5a259bd385223bf35b78338 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_VersionInfo_PBRT.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RTB_VersionInfo_PBRT.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get version information about the PBRT.
 %
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RunPBRT.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RunPBRT.m
index ced8c30f42690b1bee0399aa752b29661b3fefae..8318ea38022632476371e2e1f820ee5c6c7081ad 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RunPBRT.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/PBRT/RunPBRT.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Invoke the PBRT renderer.
 %   @param sceneFile filename or path of a PBRT-native text scene file.
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_ApplyMappings_SampleRenderer.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_ApplyMappings_SampleRenderer.m
index fae14b872fbd62c464e15c2696f5f27b6d06a549..fe87444501fc883da2b29d11afc44f172f309d10 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_ApplyMappings_SampleRenderer.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_ApplyMappings_SampleRenderer.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert mappings objects to native adjustments for the SampleRenderer.
 %   @param objects mappings objects as returned from MappingsToObjects()
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_DataToRadiance_SampleRenderer.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_DataToRadiance_SampleRenderer.m
index 63919029ee5bc29fc3bd975c708539615f526197..277fd4597af7f95d3a3b81c61ebeda377a409a0f 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_DataToRadiance_SampleRenderer.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_DataToRadiance_SampleRenderer.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert Sample Renderer data to units of radiance.
 %   @param multispectralImage numeric rendering data from a Render function
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_ImportCollada_SampleRenderer.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_ImportCollada_SampleRenderer.m
index a2aac6585e25b06c22f09d742ac5ab50f4669362..df192df97b3d1232b4253176d10f0805db8278be 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_ImportCollada_SampleRenderer.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_ImportCollada_SampleRenderer.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a Collada parent scene file the Sample Renderer native format
 %   @param colladaFile input Collada parent scene file name or path
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_Render_SampleRenderer.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_Render_SampleRenderer.m
index b48ccdf96ad8a0f12ded4d1c619f096fcf4ca0ff..5289d5b18aac47d5a411d943ece09cea64f8757c 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_Render_SampleRenderer.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_Render_SampleRenderer.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Invoke the Sample Renderer.
 %   @param scene struct description of the scene to be rendererd
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_VersionInfo_SampleRenderer.m b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_VersionInfo_SampleRenderer.m
index 7eb5b06c23f603dbf4e4c567cff5248d8cb6e42f..e1ed1078581986dfa341548e573b8022d7e6147d 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_VersionInfo_SampleRenderer.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/RendererPlugins/SampleRenderer/RTB_VersionInfo_SampleRenderer.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get version information about the Sample Renderer.
 %
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/AppendPathAttributes.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/AppendPathAttributes.m
index a7a2e8a3e29600c2314d6dea87b93f51729e729d..f89441955b061d522bb122eec233f72772ea9f59 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/AppendPathAttributes.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/AppendPathAttributes.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Copy a Scene DOM path and add attribute path parts.
 %   @param basePath Scene DOM path to receive attributes
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/CleanUpColladaDocument.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/CleanUpColladaDocument.m
index d506aec299ae87c959dfe3ca8ab023f1ed46e8ff..7cdaa140c4e800a8825877a7d6ceb3c33459b16c 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/CleanUpColladaDocument.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/CleanUpColladaDocument.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Clean up a Collada document to for known elements and resource paths.
 %   @param colladaDoc Collada Xml document from ReadSceneDOM
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaEffects.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaEffects.m
index 23f6b95e4f343cb5736564b77d942627fe76d9e2..6c1ac4acac8c9a59323dc275b73e78b430369f28 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaEffects.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaEffects.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert effect nodes to physically-based types.
 %   @param libraryEffects "library_effects" element a Collada document
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaImages.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaImages.m
index abd82bebe0db210d5704e3cd9919f50f786b80ae..d62840efd21f7d226dd2ad476ab99fa6252c97e7 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaImages.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaImages.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Update image file paths, relative to a working folder.
 %   @param libraryImages "library_images" element frmo a Collada document
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaLights.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaLights.m
index e43b2cd7c4591495ed2e437d1ded5c0f95707934..970a0deeb113349054782d3abca5f9aecd1cd0fd 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaLights.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/ConvertColladaLights.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert light nodes to physically-based types.
 %   @param libraryLights "library_lights" element a Collada document
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/GetColladaAuthorInfo.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/GetColladaAuthorInfo.m
index 973663fda795abcc3cf48afd6fe64302a4900509..60d6cf06c4d0cad5f7c5c8a3c665aec6971e33b2 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/GetColladaAuthorInfo.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/GetColladaAuthorInfo.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get "authoring_tool" and "asset" elements from a Collad file.
 %   @param colladaFile file name or path of a Collada scene file
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/GetColladaLightType.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/GetColladaLightType.m
index a576b9f8c9904f02db723c03a273a4b4829b3ed1..3a70c374fb66bf0d3fce8a68b5f8c14d01035220 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/GetColladaLightType.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/Collada/GetColladaLightType.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get the type of a Collada document light element.
 %   @param element a light element from a Collada document
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/CreateElementChild.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/CreateElementChild.m
index 04186b827310b7727f004eee2562013dbec1adbf..71347819cb23d5c16ac4c4ba3381318e51c0f649 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/CreateElementChild.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/CreateElementChild.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Create a new document element.
 %   @param element document element to be the parent of the new element
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ElementToStruct.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ElementToStruct.m
index 79e1988bbdc7e3f556bc43042537b9613dcc0641..a284e59fb7876650a70eaded00662e4abea05a4d 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ElementToStruct.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ElementToStruct.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get a Matlab struct representation of an XML element.
 %   @param element XML element object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GenerateSceneIDMap.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GenerateSceneIDMap.m
index 33d4446ef9f1f57fdd792c0a29b55cd1a1cfb464..c0843e1bd1dcca11605395ac156b4fb984cd7524 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GenerateSceneIDMap.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GenerateSceneIDMap.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get uniquely identified XML document elements, and Scene DOM paths.
 %   @param docNode XML document node object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GenerateScenePathMap.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GenerateScenePathMap.m
index f5dfb0fae47f87699dc106553773e8d057a141db..4eca14a21953033383fffec4ab6bdaaf8ce96c7b 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GenerateScenePathMap.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GenerateScenePathMap.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get many XML document nodes and Scene DOM paths.
 %   @param docNode XML document node object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetElementAttributes.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetElementAttributes.m
index 124f21a07f93762296119566fbfa3afef27ba34e..50be86e64facc75c13ccfc1fd77ea776594d700f 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetElementAttributes.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetElementAttributes.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get the attributes owned by an XML document element.
 %   @param element XML document element object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetElementChildren.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetElementChildren.m
index a4ea3fc55e7e3c9ed96a8070cf54f2dfeae63ae8..8e7c27795dc1cd7a819c5eb384287cbb5c9a0705 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetElementChildren.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetElementChildren.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get the child elements of an XML document element.
 %   @param element XML document element object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetNodePath.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetNodePath.m
index 0851db36191355f5242ec27f1d7782cd4d4c262e..58c853e4b2f4d0e4ef940237b6ef892498d13a93 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetNodePath.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetNodePath.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Make a Scene DOM path for an XML document element or attribute.
 %   @param node XML document element or attribute object
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetSceneValue.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetSceneValue.m
index 9a9740bfbb55a80f71f1c49661f61de991b308fb..22f88f641aadc4acda438bfcc895427c5a64d34f 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetSceneValue.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/GetSceneValue.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get the value of an element or attribute in an XML document.
 %   @param idMap "id map" that represents an XML document
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/MergeAdjustments.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/MergeAdjustments.m
index cece48c65f8b398a631494ceeb9f812387eb3997..3aee9872fec5a9ba6837bf2bf542ed9b0d0f6b71 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/MergeAdjustments.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/MergeAdjustments.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Merge an XML scene document with an adjustments document.
 %   @param sceneDoc document node that represents a scene file
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PathCellToString.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PathCellToString.m
index 9b51a1d965743742d211e7ea1ac4273fcb7aa63a..87d0e8a016ebfc31e938155f81fbc6e3f79d155b 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PathCellToString.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PathCellToString.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a Scene DOM path cell array to the equivalent string.
 %   @param pathCell Scene DOM path cell array
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PathStringToCell.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PathStringToCell.m
index c646199128a886f7f1f97eddf717bbcef61eef05..dd6afd4b38d66651820fa048a795e2de35d8a792 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PathStringToCell.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PathStringToCell.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a Scene DOM path string to the equivalent cell array.
 %   @param pathString Scene DOM path string
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PrintPathPart.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PrintPathPart.m
index bafdea989267a988c48f44db6eef25fcf1b0675f..28a442749727bf69a9763aea261bf0312e2d9b63 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PrintPathPart.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/PrintPathPart.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Print a formatted Scene DOM path.
 %   @param operator string Scene DOM path operator
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ReadSceneDOM.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ReadSceneDOM.m
index 48ac9818867077e8919053d50022a7f12c6f6438..6e416220d33fcab99117d932830b73972b45e281 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ReadSceneDOM.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ReadSceneDOM.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Read a scene XML document from file.
 %   @param sceneFile file name or path to read
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/RemoveSceneNode.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/RemoveSceneNode.m
index 17c3e0111f9eb9886c1ecbe612da4c36f32f33ce..cd5b10af8539c7359e65315a3383738958519892 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/RemoveSceneNode.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/RemoveSceneNode.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Remove an element or attribute from an XML document.
 %   @param idMap "id map" that represents an XML document
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ScanPathPart.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ScanPathPart.m
index 44482174a7e7a6d43579bb13710ebec478ef56c4..8cd79be944d630fdf1203fdacd3f54e6ec8d6a9a 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ScanPathPart.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/ScanPathPart.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Scan a Scene DOM path part for its components.
 %   @param pathPart one part of a Scene DOM path
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/SearchScene.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/SearchScene.m
index 693258c6639a446f2f27a4d774c6cd28411bc33d..452548f336528b21dada202107cf31a4c8d645ea 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/SearchScene.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/SearchScene.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Find an element or attribute in an XML document.
 %   @param idMap "id map" that represents an XML document
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/SetSceneValue.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/SetSceneValue.m
index aa3ad1096bb150bfa1427722dd6e5a56c7348210..5354e5464ca753b84a62119e214cc9c3a3dc95cf 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/SetSceneValue.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/SetSceneValue.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Set the value of a document element or attribute.
 %   @param idMap "id map" that represents an XML document
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/WriteSceneDOM.m b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/WriteSceneDOM.m
index 1025e5bc171439720fab4f58324e04dcb0de66db..1740000abe47c1b1424b1ae0dc150dfa7ce18ee4 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/WriteSceneDOM.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/SceneDOM/WriteSceneDOM.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Write a scene XML document to file.
 %   @param sceneFile file name or path to write
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/DemoteEnvPathEntries.m b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/DemoteEnvPathEntries.m
index 60efb48bf66ee0cff827728f0e89c254f86d6c43..b7c47568833f280d4d836ff81366c57443f9a574 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/DemoteEnvPathEntries.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/DemoteEnvPathEntries.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Move some environment path entries to the end of the path.
 %   @param variable name of an environment variable that contains a path
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/IsVerticesClockwise.m b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/IsVerticesClockwise.m
index 3f1f71e77caff3b837664dfd4a41e2385dc11fa6..641637ff84a1047d08bf87b27a3ffca2bbe2bb6a 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/IsVerticesClockwise.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/IsVerticesClockwise.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Check the winding order of vertices in 3D space.
 %   @param vertices m x 3 matrix of XYZ triples
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/ReadEXRs.m b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/ReadEXRs.m
index cc24cc8b5e9023e791679be08e5261df5c74661d..038bad241f8b70e84d5f78359c0ba1b59f1390ac 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/ReadEXRs.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/ReadEXRs.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get multi-spectral image data out of some .exr files in a folder.
 %   @param imageDir string folder name containing .exr files
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/ReadMIF.m b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/ReadMIF.m
index 02b932d30392fecdd61d20a53a5bd4686bbb2aec..94c285207dca90b2bea01cf45fa77fedcd1b30d0 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/ReadMIF.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/ReadMIF.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Get multispectral image data out of a .mif file from Stanford.
 %   @param filename string file name (path optional) of the .mif file
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/StringToVector.m b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/StringToVector.m
index 2b164cf85bf1fd79eaba31716ab96bf69e1a0cb6..40eb70924e7ee476205fa43ff3d77de149634f1b 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/StringToVector.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/StringToVector.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a string representation of numbers to a 1D matrix.
 %   @param string a string with numeric representations
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/VectorToString.m b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/VectorToString.m
index 62f5f2bbe7cc36e2afa25eba4e8058a733546c56..fe5ae30eff91b897d8aaaa79c15cdae959c69363 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/VectorToString.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/VectorToString.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Convert a 1D matrix of numbers to string representation.
 %   @param vector numeric 1-dimensional matrix
diff --git a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/WriteASCII7BitOnly.m b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/WriteASCII7BitOnly.m
index 929610b54d454b0d6da7474923bb405d08bfb005..7e9456598a592b3cf175d1bc1cf5786c2d7aff54 100644
--- a/BatchRenderer/ColladaStrategy/Deprecated/Utilities/WriteASCII7BitOnly.m
+++ b/BatchRenderer/ColladaStrategy/Deprecated/Utilities/WriteASCII7BitOnly.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Remove characters from the given text file that are not 7-bit ASCII.
 %   @param fileName file name of path of an existing text file
diff --git a/BatchRenderer/rtbBatchRender.m b/BatchRenderer/rtbBatchRender.m
index 2af18cb7502562be9e4d8f9e1968c1283696a617..7658252f49e3ab3e5820e0a74cd3b3344f832738 100644
--- a/BatchRenderer/rtbBatchRender.m
+++ b/BatchRenderer/rtbBatchRender.m
@@ -43,9 +43,9 @@ function outFiles = rtbBatchRender(nativeScenes, varargin)
 %
 % outFiles = rtbBatchRender(scenes, varargin)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('nativeScenes', @iscell);
diff --git a/BatchRenderer/rtbChooseStrategy.m b/BatchRenderer/rtbChooseStrategy.m
index 8da36b837f581b7e2bfa45718464514b7d18bb01..081374c5db08581b360ea3cdfb2c81b2f52784d2 100644
--- a/BatchRenderer/rtbChooseStrategy.m
+++ b/BatchRenderer/rtbChooseStrategy.m
@@ -14,9 +14,9 @@ function strategy = rtbChooseStrategy(varargin)
 %   the new object
 %   - empty, or anything else -- choose RtbAssimpStrategy by default
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addParameter('hints', rtbDefaultHints(), @isstruct);
diff --git a/BatchRenderer/rtbDefaultHints.m b/BatchRenderer/rtbDefaultHints.m
index 1db55f04330d1f78b2f71ae54a15c1cff347f5bc..2ffea8c9efd202e387d6942e7bacf59fc76f92d9 100644
--- a/BatchRenderer/rtbDefaultHints.m
+++ b/BatchRenderer/rtbDefaultHints.m
@@ -20,9 +20,9 @@ function hints = rtbDefaultHints(hints)
 %
 % hints = rtbDefaultHints(hints)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 if nargin < 1 || ~isstruct(hints)
     hints = struct();
diff --git a/BatchRenderer/rtbGetNamedValue.m b/BatchRenderer/rtbGetNamedValue.m
index 463b098c4b3dca7d0ea8efad22c6ecd70944a27c..7505730faf7060ebddfeb85a8aafe7cd0e2bcc69 100644
--- a/BatchRenderer/rtbGetNamedValue.m
+++ b/BatchRenderer/rtbGetNamedValue.m
@@ -11,9 +11,9 @@ function [value, isMatched] = rtbGetNamedValue(names, values, name, defaultValue
 %
 % [value, isMatched] = rtbGetNamedValue(names, values, name, defaultValue)
 %
-%%% RenderToolbox3 Copyright (c) 2012-2016 The RenderToolbox3 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox3/wiki/About-Us
-%%% RenderToolbox3 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('names', @iscellstr);
diff --git a/BatchRenderer/rtbMakeSceneFiles.m b/BatchRenderer/rtbMakeSceneFiles.m
index 03b50feb34623d3eb6491cee73703e840ceb65c5..c2160cb18c57ef1640a55b1a6ee9f5c1d1264549 100644
--- a/BatchRenderer/rtbMakeSceneFiles.m
+++ b/BatchRenderer/rtbMakeSceneFiles.m
@@ -33,9 +33,9 @@ function nativeScenes = rtbMakeSceneFiles(parentScene, varargin)
 %
 % scenes = rtbMakeSceneFiles(parentScene, varargin)
 %
-%%% RenderToolbox3 Copyright (c) 2012-2016 The RenderToolbox3 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox3/wiki/About-Us
-%%% RenderToolbox3 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('parentScene');
diff --git a/BatchRenderer/rtbParseConditions.m b/BatchRenderer/rtbParseConditions.m
index 9e67b638e1ca9a6239f6ac642bfc4a960d71abdd..a764a7e90cfc1c1bbb686c96d3740b770f7c759f 100644
--- a/BatchRenderer/rtbParseConditions.m
+++ b/BatchRenderer/rtbParseConditions.m
@@ -12,9 +12,9 @@ function [names, values] = rtbParseConditions(conditionsFile)
 %
 % [names, values] = rtbParseConditions(conditionsFile)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('conditionsFile', @ischar);
diff --git a/BatchRenderer/rtbSubstituteStringVariables.m b/BatchRenderer/rtbSubstituteStringVariables.m
index 41301841dfc392cef757bbe6bfcb503952744760..34219a3060353b587c8895f4d3af99c75078177b 100644
--- a/BatchRenderer/rtbSubstituteStringVariables.m
+++ b/BatchRenderer/rtbSubstituteStringVariables.m
@@ -22,9 +22,9 @@ function [string, isChanged] = rtbSubstituteStringVariables(string, names, value
 %
 % string = rtbSubstituteStringVariables(string, names, conditionValues, varargin)
 %
-%%% RenderToolbox3 Copyright (c) 2012-2016 The RenderToolbox3 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox3/wiki/About-Us
-%%% RenderToolbox3 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('string', @ischar);
diff --git a/BatchRenderer/rtbWriteConditionsFile.m b/BatchRenderer/rtbWriteConditionsFile.m
index c1a629d4c963f91ba2a56b2008cf5bd88f4bd833..81ef6cdf8b802a40fc46d8319eec79507080bd4e 100644
--- a/BatchRenderer/rtbWriteConditionsFile.m
+++ b/BatchRenderer/rtbWriteConditionsFile.m
@@ -18,9 +18,9 @@ function conditionsFile = rtbWriteConditionsFile(conditionsFile, names, values)
 %
 % conditionsFile = rtbWriteConditionsFile(conditionsFile, names, values)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('conditionsFile', @ischar);
diff --git a/ExampleScenes/BlenderPython/rtbMakeCheckerShadowScene.m b/ExampleScenes/BlenderPython/rtbMakeCheckerShadowScene.m
index e97a995375986dcfda69e9a981970d2da4a0d3b5..2668e8aab6785f94c684e4a3d3cfe619473cff81 100644
--- a/ExampleScenes/BlenderPython/rtbMakeCheckerShadowScene.m
+++ b/ExampleScenes/BlenderPython/rtbMakeCheckerShadowScene.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render an illusion from parent scene generated procedurally.
 
diff --git a/ExampleScenes/CoordinatesTest/rtbMakeCoordinatesTest.m b/ExampleScenes/CoordinatesTest/rtbMakeCoordinatesTest.m
index 6ea0be4a314ed6ab99e034a02ef9bb8edc34629b..284f1a940c4e0900e32c41229e027c28673de59d 100644
--- a/ExampleScenes/CoordinatesTest/rtbMakeCoordinatesTest.m
+++ b/ExampleScenes/CoordinatesTest/rtbMakeCoordinatesTest.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the CoordinatesTest scene.
 
diff --git a/ExampleScenes/Dice/rtbMakeDice.m b/ExampleScenes/Dice/rtbMakeDice.m
index a951295a388d6f5cfe422e6c4cab062d34ba49e8..f67b7d87ebb54969f6a01ef83f80370d04f01a83 100644
--- a/ExampleScenes/Dice/rtbMakeDice.m
+++ b/ExampleScenes/Dice/rtbMakeDice.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the Dice scene, with a texture.
 
diff --git a/ExampleScenes/Dice/rtbMakeDiceTransformations.m b/ExampleScenes/Dice/rtbMakeDiceTransformations.m
index b146f7b229eb6713fbdd8a518fa86f04ab842c25..5a6e8e9177899b53a0821fb8ffab25d982106939 100644
--- a/ExampleScenes/Dice/rtbMakeDiceTransformations.m
+++ b/ExampleScenes/Dice/rtbMakeDiceTransformations.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the Dice scene, with a texture.
 
diff --git a/ExampleScenes/Dragon/rtbMakeDragon.m b/ExampleScenes/Dragon/rtbMakeDragon.m
index a947b2a0873143d253527176aa0ac29f8de2de7c..e147fc282d385acb1833f3996e43ee3124412453 100644
--- a/ExampleScenes/Dragon/rtbMakeDragon.m
+++ b/ExampleScenes/Dragon/rtbMakeDragon.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the Dragon scene.
 
diff --git a/ExampleScenes/Dragon/rtbMakeDragonColorChecker.m b/ExampleScenes/Dragon/rtbMakeDragonColorChecker.m
index ec5dc594ab6593af50889fffa59687cf4a55dd84..5fa2c494979c7ba5cad80cdef251c36b7b0e76e2 100644
--- a/ExampleScenes/Dragon/rtbMakeDragonColorChecker.m
+++ b/ExampleScenes/Dragon/rtbMakeDragonColorChecker.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the Dragon scene with 24 ColorChecker colors.
 
diff --git a/ExampleScenes/Dragon/rtbMakeDragonGraded.m b/ExampleScenes/Dragon/rtbMakeDragonGraded.m
index 5854922a31d449b1386b59ccdfd393dd82f786fe..61ca9cd40296b89c7019ad243e28e745a6c9e924 100644
--- a/ExampleScenes/Dragon/rtbMakeDragonGraded.m
+++ b/ExampleScenes/Dragon/rtbMakeDragonGraded.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the Dragon scene with 5 graded colors.
 
diff --git a/ExampleScenes/Dragon/rtbMakeDragonMaterials.m b/ExampleScenes/Dragon/rtbMakeDragonMaterials.m
index 4e3ce01342b472df1d0fddda74c2497e4972dc2c..54cee92ff6666615fd83f6c5222e9d8c968a55e4 100644
--- a/ExampleScenes/Dragon/rtbMakeDragonMaterials.m
+++ b/ExampleScenes/Dragon/rtbMakeDragonMaterials.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render a dragon in several materials.
 
diff --git a/ExampleScenes/Interior/rtbMakeInterior.m b/ExampleScenes/Interior/rtbMakeInterior.m
index 987a909afc7373f9fd3f8b5a841e68ea3bdedca5..d73f4ce8ac440a03377ca99a541942e3bdf6e512 100644
--- a/ExampleScenes/Interior/rtbMakeInterior.m
+++ b/ExampleScenes/Interior/rtbMakeInterior.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the Interior scene with various lighting.
 
diff --git a/ExampleScenes/Interreflection/rtbMakeInterreflection.m b/ExampleScenes/Interreflection/rtbMakeInterreflection.m
index 1ea5f982d41e5f0d6573e899f4457ea5d1ebc737..bc002b9e9ae0f4cd7e38e3de5b562aedb0eec1b1 100644
--- a/ExampleScenes/Interreflection/rtbMakeInterreflection.m
+++ b/ExampleScenes/Interreflection/rtbMakeInterreflection.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 %% Render two panels with light reflecting betwen them.
 
diff --git a/ExampleScenes/Interreflection/rtbMakeInterreflectionFigure.m b/ExampleScenes/Interreflection/rtbMakeInterreflectionFigure.m
index 612d408912a02af3d0240144b910093e498a2586..72a7894d4acd8a6e47f45910584ecb8d4dfce03b 100644
--- a/ExampleScenes/Interreflection/rtbMakeInterreflectionFigure.m
+++ b/ExampleScenes/Interreflection/rtbMakeInterreflectionFigure.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Make a figure with data about light reflecting between surfaces.
 
diff --git a/ExampleScenes/LightFieldSphere/rtbMakeLightFieldSphere.m b/ExampleScenes/LightFieldSphere/rtbMakeLightFieldSphere.m
index f8196cf6cbe0ecc3bacc5992308fc8e768177c14..913d0b28aee265c5cb117d78b87a332ba83abb96 100644
--- a/ExampleScenes/LightFieldSphere/rtbMakeLightFieldSphere.m
+++ b/ExampleScenes/LightFieldSphere/rtbMakeLightFieldSphere.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % This demo was generously contributed by Gizem Kucukoglu in March 2015.
 %
diff --git a/ExampleScenes/MaterialSphere/rtbMakeMaterialSphere.m b/ExampleScenes/MaterialSphere/rtbMakeMaterialSphere.m
index ce292cd7f0ca73730fd4a0ad0387c4fa367799ad..6cb85e044771bc8b632011b6b9df77fd381802e5 100644
--- a/ExampleScenes/MaterialSphere/rtbMakeMaterialSphere.m
+++ b/ExampleScenes/MaterialSphere/rtbMakeMaterialSphere.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the MaterialSphere scene with 3 materials.
 
diff --git a/ExampleScenes/MaterialSphere/rtbMakeMaterialSphereBumps.m b/ExampleScenes/MaterialSphere/rtbMakeMaterialSphereBumps.m
index 931ffe2203b7d53d55cfaa4ec1a6555c1f4bc5d4..5f62278a554e853cae41b80fbecf846d78dcdc53 100644
--- a/ExampleScenes/MaterialSphere/rtbMakeMaterialSphereBumps.m
+++ b/ExampleScenes/MaterialSphere/rtbMakeMaterialSphereBumps.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the MaterialSphere scene with 3 materials and a bump map.
 
diff --git a/ExampleScenes/MaterialSphere/rtbMakeMaterialSpherePortable.m b/ExampleScenes/MaterialSphere/rtbMakeMaterialSpherePortable.m
index 513643c46481e547939749c73f43c4ee08817372..5ff1cde49f4f45942b7b570bc915301c4d7bb1cf 100644
--- a/ExampleScenes/MaterialSphere/rtbMakeMaterialSpherePortable.m
+++ b/ExampleScenes/MaterialSphere/rtbMakeMaterialSpherePortable.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render MaterialSphere in a portable fashion using the Recipe API.
 
diff --git a/ExampleScenes/MaterialSphere/rtbMakeMaterialSphereRemodeled.m b/ExampleScenes/MaterialSphere/rtbMakeMaterialSphereRemodeled.m
index dcc5229ef03d90a308432e9fc32a6f5cefd4932d..60e24440dfe3e64cc96b11bf1926d3d6737d0477 100644
--- a/ExampleScenes/MaterialSphere/rtbMakeMaterialSphereRemodeled.m
+++ b/ExampleScenes/MaterialSphere/rtbMakeMaterialSphereRemodeled.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the MaterialSphere scene, with remodeled mexximp parent scene.
 
diff --git a/ExampleScenes/RGBPromotion/rtbMakeRGBPromotionFigure.m b/ExampleScenes/RGBPromotion/rtbMakeRGBPromotionFigure.m
index 874dd8d3bc50f1608f06fc076dacfcb050e8fae0..787005dffba4b254233cc6ca4109df2c9852a0bb 100644
--- a/ExampleScenes/RGBPromotion/rtbMakeRGBPromotionFigure.m
+++ b/ExampleScenes/RGBPromotion/rtbMakeRGBPromotionFigure.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Probe the RGB spectral promotion algortigms of renderers.
 
diff --git a/ExampleScenes/RadianceTest/rtbMakeRadianceTest.m b/ExampleScenes/RadianceTest/rtbMakeRadianceTest.m
index 59b347e8eb22868a5dda11c1724fff3e738ff8dd..0916f5989ff183d0236e5964648526420f94fe1a 100644
--- a/ExampleScenes/RadianceTest/rtbMakeRadianceTest.m
+++ b/ExampleScenes/RadianceTest/rtbMakeRadianceTest.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render a perfect reflector and check physical principles.
 
diff --git a/ExampleScenes/RadianceTest/rtbRadianceTestFigure.m b/ExampleScenes/RadianceTest/rtbRadianceTestFigure.m
index 814fb904f29e3231b1f012029a3da5545f3bdf1c..7b7947be3692b0878cecb9dac5130aafc49ce974 100644
--- a/ExampleScenes/RadianceTest/rtbRadianceTestFigure.m
+++ b/ExampleScenes/RadianceTest/rtbRadianceTestFigure.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Make a figure with data about renderer film units.
 
diff --git a/ExampleScenes/ScalingTest/rtbMakeScalingTest.m b/ExampleScenes/ScalingTest/rtbMakeScalingTest.m
index 1c497cbf6ac12bb0d1752c7c443c808aa128611c..1456943485decdc185c9ccea99106111785bb09b 100644
--- a/ExampleScenes/ScalingTest/rtbMakeScalingTest.m
+++ b/ExampleScenes/ScalingTest/rtbMakeScalingTest.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render a sphere with conditions that might affect output scaling.
 
diff --git a/ExampleScenes/ScalingTest/rtbMakeScalingTestFigure.m b/ExampleScenes/ScalingTest/rtbMakeScalingTestFigure.m
index f2539b0ec3dfcc6f7195979edf0f1ea4a0552b6a..c1332583551686b18f3df76e2f21ec0f15d2f36c 100644
--- a/ExampleScenes/ScalingTest/rtbMakeScalingTestFigure.m
+++ b/ExampleScenes/ScalingTest/rtbMakeScalingTestFigure.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Make a figure with data about renderer output absolute magnitudes.
 
diff --git a/ExampleScenes/SceneFromScratch/rtbSceneFromScratch.m b/ExampleScenes/SceneFromScratch/rtbSceneFromScratch.m
index 5f10c1f973f38e630faa5f093a8e36e58e7a097d..eeee68e02bbdd0bffd24d8e4d801368f1af0ccf6 100644
--- a/ExampleScenes/SceneFromScratch/rtbSceneFromScratch.m
+++ b/ExampleScenes/SceneFromScratch/rtbSceneFromScratch.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Make a scene from scratch!  Use some utilities to build up a well-formed
 % mexximp scene struct.  Pass this scene into the RenderToolbox4 pipeline
diff --git a/ExampleScenes/SimpleSphere/rtbMakeMatlabSimpleSphere.m b/ExampleScenes/SimpleSphere/rtbMakeMatlabSimpleSphere.m
index d27fdc6c0293bed40a36e9d441f0f78a587a5731..320eadfec06a3143aac40e620a07cdcc35b748e9 100644
--- a/ExampleScenes/SimpleSphere/rtbMakeMatlabSimpleSphere.m
+++ b/ExampleScenes/SimpleSphere/rtbMakeMatlabSimpleSphere.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render a Ward sphere under point light and orthogonal camera.
 %
diff --git a/ExampleScenes/SimpleSphere/rtbMakeSimpleSphere.m b/ExampleScenes/SimpleSphere/rtbMakeSimpleSphere.m
index 6f907d3ea974c3b5e232ae660d54046ba128b8de..f6f51ddbacbff8e9b06dfa24620a7ed5bd568b5e 100644
--- a/ExampleScenes/SimpleSphere/rtbMakeSimpleSphere.m
+++ b/ExampleScenes/SimpleSphere/rtbMakeSimpleSphere.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render a Ward sphere under a point light and orthogonal camera.
 
diff --git a/ExampleScenes/SimpleSphere/rtbSimpleSphereFigure.m b/ExampleScenes/SimpleSphere/rtbSimpleSphereFigure.m
index faaa508fc2e923de015596fbed00ee5c1919b657..af42661e7d88a9ba16904e6affa68539b7fd0257 100644
--- a/ExampleScenes/SimpleSphere/rtbSimpleSphereFigure.m
+++ b/ExampleScenes/SimpleSphere/rtbSimpleSphereFigure.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Make a figure with data about rendered and expected Ward spheres.
 
diff --git a/ExampleScenes/SimpleSquare/rtbMakeSimpleSquare.m b/ExampleScenes/SimpleSquare/rtbMakeSimpleSquare.m
index 11544077c48a2daf05a366fec05ca5f59b23ab5d..e61857b7f54ba58c62f3b42efee16d7917b6866a 100644
--- a/ExampleScenes/SimpleSquare/rtbMakeSimpleSquare.m
+++ b/ExampleScenes/SimpleSquare/rtbMakeSimpleSquare.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render a square in many colors.
 
diff --git a/ExampleScenes/SimpleSquare/rtbMakeSimpleSquareFigure.m b/ExampleScenes/SimpleSquare/rtbMakeSimpleSquareFigure.m
index 72074f71e8e5cb136b33715167a25b70ddca9ea4..07faebd2f618cb8f605dc75fdb0e2bb4c088a989 100644
--- a/ExampleScenes/SimpleSquare/rtbMakeSimpleSquareFigure.m
+++ b/ExampleScenes/SimpleSquare/rtbMakeSimpleSquareFigure.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Make figure comparing rendered colors with expected colors.
 
diff --git a/ExampleScenes/SpectralIllusion/rtbMakeSpectralIllusion.m b/ExampleScenes/SpectralIllusion/rtbMakeSpectralIllusion.m
index 2d878524543ff9d299f304a56dd693222d9e948d..b689b03486046bdd3a41540dbe2adfe964c9779a 100644
--- a/ExampleScenes/SpectralIllusion/rtbMakeSpectralIllusion.m
+++ b/ExampleScenes/SpectralIllusion/rtbMakeSpectralIllusion.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Render the SpectralIllusion scene, with sampled spectra on a cube.
 
diff --git a/ExampleScenes/WildScene/rtbWildScene.m b/ExampleScenes/WildScene/rtbWildScene.m
index 56cfc80b99bb2c1296660a838765a7ba2bfa9973..5335b2e0e08c731c7be8fc54ed5e3c75edcc9a37 100644
--- a/ExampleScenes/WildScene/rtbWildScene.m
+++ b/ExampleScenes/WildScene/rtbWildScene.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % This is a contrived but reasonable story about trying to load and render
 % a "wild" scene that we downloaded from the Web.  These scenes can be
diff --git a/RecipeAPI/rtbAppendRecipeLog.m b/RecipeAPI/rtbAppendRecipeLog.m
index 47d09e354dd066474203a2bff05526b9610c887b..31abc6a752c7117a90dfc058edd746fe0f9f45f3 100644
--- a/RecipeAPI/rtbAppendRecipeLog.m
+++ b/RecipeAPI/rtbAppendRecipeLog.m
@@ -15,9 +15,9 @@ function recipe = rtbAppendRecipeLog(recipe, varargin)
 %
 % Returns the updated recipe.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbChangeToRecipeFolder.m b/RecipeAPI/rtbChangeToRecipeFolder.m
index 952f11f9586a281d41f69d0510bc27abe2050d58..bfb59cee63f6101fe14be55bbd2225e9de43bc48 100644
--- a/RecipeAPI/rtbChangeToRecipeFolder.m
+++ b/RecipeAPI/rtbChangeToRecipeFolder.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % cd() to the working folder for a recipe.
 %   @param recipe a recipe struct
diff --git a/RecipeAPI/rtbCleanRecipe.m b/RecipeAPI/rtbCleanRecipe.m
index 6cf4fa23017c43802ea09adef915011cd436a82d..33b49622a5c904c7c1a8b50b186a80834fcf754a 100644
--- a/RecipeAPI/rtbCleanRecipe.m
+++ b/RecipeAPI/rtbCleanRecipe.m
@@ -4,9 +4,9 @@ function recipe = rtbCleanRecipe(recipe)
 % recipe = rtbCleanRecipe(recipe) clears out derived data fields from the
 % given recupe and returns the updated recupe.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbConfigureForRecipe.m b/RecipeAPI/rtbConfigureForRecipe.m
index 61a991d17baa3d11a07da7f8bff24354b6a5bf61..c0076ea77d08cab28981d5a43a0d3c333e4fc29d 100644
--- a/RecipeAPI/rtbConfigureForRecipe.m
+++ b/RecipeAPI/rtbConfigureForRecipe.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Configure RenderToolbox4 to run the given recipe.
 %   @param recipe a recipe struct
diff --git a/RecipeAPI/rtbCurrentRecipe.m b/RecipeAPI/rtbCurrentRecipe.m
index 614bf5997ddc0d49b73ca3275e554dfa2b9d01fb..180fc9eb6a46cf3df074b4a1ed6193b392ef0081 100644
--- a/RecipeAPI/rtbCurrentRecipe.m
+++ b/RecipeAPI/rtbCurrentRecipe.m
@@ -14,9 +14,9 @@ function recipe = rtbCurrentRecipe(recipe)
 %
 % recipe = rtbCurrentRecipe() gets the current recipe.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 persistent CURRENT_RECIPE
 
diff --git a/RecipeAPI/rtbExecuteRecipe.m b/RecipeAPI/rtbExecuteRecipe.m
index 9711bff5e744d1e1e1e346a38211871a1a7e079a..f908af0e0f596e7761306cca381ac14291b7401b 100644
--- a/RecipeAPI/rtbExecuteRecipe.m
+++ b/RecipeAPI/rtbExecuteRecipe.m
@@ -23,9 +23,9 @@ function recipe = rtbExecuteRecipe(recipe, varargin)
 %
 % Returns the given recipe, with recipe.log filled in.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbGetFirstRecipeError.m b/RecipeAPI/rtbGetFirstRecipeError.m
index 893b87da91eda7b37fb4b28970897a4496a4c4c8..44a6538fbec977d01728e3d35c567e9d49deb341 100644
--- a/RecipeAPI/rtbGetFirstRecipeError.m
+++ b/RecipeAPI/rtbGetFirstRecipeError.m
@@ -8,9 +8,9 @@ function errorData = rtbGetFirstRecipeError(recipe, throwException)
 % rethrows the exception (which gives a handy stack trace in the command
 % window).  Otherwise, returns the first error found, if any.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbMakeRecipeMontage.m b/RecipeAPI/rtbMakeRecipeMontage.m
index eae51084701e0ba1b470e055339e6e10fcb56c94..1e6668217135426212fa1f26127b51ab78bc0429 100644
--- a/RecipeAPI/rtbMakeRecipeMontage.m
+++ b/RecipeAPI/rtbMakeRecipeMontage.m
@@ -18,9 +18,9 @@ function recipe = rtbMakeRecipeMontage(recipe, varargin)
 %
 % recipe = rtbMakeRecipeMontage(recipe, varargin)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbMakeRecipeRenderings.m b/RecipeAPI/rtbMakeRecipeRenderings.m
index 13d80fe6be58ffb04bf35dd07e50d6b997d881a7..f0f92e4d793c2f66429350f5a35f9cb5fca6790c 100644
--- a/RecipeAPI/rtbMakeRecipeRenderings.m
+++ b/RecipeAPI/rtbMakeRecipeRenderings.m
@@ -10,9 +10,9 @@ function recipe = rtbMakeRecipeRenderings(recipe)
 %
 % recipe = rtbMakeRecipeRenderings(recipe)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbMakeRecipeSceneFiles.m b/RecipeAPI/rtbMakeRecipeSceneFiles.m
index e130f3ed860d36b4b28d2b18a0b486b03f4c0522..ff1514b122e0c7677e98214c9a603c88e41ca7a7 100644
--- a/RecipeAPI/rtbMakeRecipeSceneFiles.m
+++ b/RecipeAPI/rtbMakeRecipeSceneFiles.m
@@ -10,9 +10,9 @@ function recipe = rtbMakeRecipeSceneFiles(recipe)
 %
 % recipe = rtbMakeRecipeSceneFiles(recipe)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbNewRecipe.m b/RecipeAPI/rtbNewRecipe.m
index fc1db9ecdb255ef1245419f8cad37cd7f176529c..eeca689637408c4684717978294cd8a218cd8dd4 100644
--- a/RecipeAPI/rtbNewRecipe.m
+++ b/RecipeAPI/rtbNewRecipe.m
@@ -35,9 +35,9 @@ function recipe = rtbNewRecipe(varargin)
 %
 % recipe = rtbNewRecipe(varargin)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 
 parser = inputParser();
diff --git a/RecipeAPI/rtbPackUpRecipe.m b/RecipeAPI/rtbPackUpRecipe.m
index d8e278be0b15ea6c6609cf3c8777a3484d832d71..f069270e2164c132affa2f30fae828a90d323d6e 100644
--- a/RecipeAPI/rtbPackUpRecipe.m
+++ b/RecipeAPI/rtbPackUpRecipe.m
@@ -14,9 +14,9 @@ function archiveName = rtbPackUpRecipe(recipe, archiveName, varargin)
 % Returns the name of the zip archive that was created, which may be the
 % same as the given archiveName.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbPrintRecipeLog.m b/RecipeAPI/rtbPrintRecipeLog.m
index fe543753d973dfeb58245720289bade4ee7b9f43..72b7f168c97fc2c9953ff6bf2a11a2f2f17f3a75 100644
--- a/RecipeAPI/rtbPrintRecipeLog.m
+++ b/RecipeAPI/rtbPrintRecipeLog.m
@@ -8,9 +8,9 @@ function summary = rtbPrintRecipeLog(recipe, varargin)
 % verbose log data (true) or a compact log summary (false).  The default is
 % false, print a compact summary.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbReadRecipeConditions.m b/RecipeAPI/rtbReadRecipeConditions.m
index 8bda04f7f2ea61f17a173ee59be268db17d779a6..1d0f0889eb06de0196da83b18fc7b1451ea9291a 100644
--- a/RecipeAPI/rtbReadRecipeConditions.m
+++ b/RecipeAPI/rtbReadRecipeConditions.m
@@ -9,9 +9,9 @@ function recipe = rtbReadRecipeConditions(recipe)
 %
 % recipe = rtbReadRecipeConditions(recipe)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbReadRecipeMappings.m b/RecipeAPI/rtbReadRecipeMappings.m
index be3949bdd7d423f59dd3d274196b7f90a3809df2..1725c83f11fec5be0f63343b2a5a0bc1b95fb67d 100644
--- a/RecipeAPI/rtbReadRecipeMappings.m
+++ b/RecipeAPI/rtbReadRecipeMappings.m
@@ -9,9 +9,9 @@ function recipe = rtbReadRecipeMappings(recipe)
 %
 % recipe = rtbReadRecipeMappings(recipe)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RecipeAPI/rtbUnpackRecipe.m b/RecipeAPI/rtbUnpackRecipe.m
index 86f8493c39a88830ce786860aef30ff5e0c570da..d66d5d4ade361365c20e4fa208907a2305ca0840 100644
--- a/RecipeAPI/rtbUnpackRecipe.m
+++ b/RecipeAPI/rtbUnpackRecipe.m
@@ -12,9 +12,9 @@ function recipe = rtbUnpackRecipe(archiveName, varargin)
 % options to use with the new recipe.  In particular, the given
 % hints.workingFolder will be used for unpacking the recipe.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('archiveName', @ischar);
diff --git a/RecipeAPI/rtbWriteRecipeLog.m b/RecipeAPI/rtbWriteRecipeLog.m
index 611880c0f9cfd656f0884595e7fe2b27b697e921..f825277fd6a1f5c62fd6bfdd1611ed4e164c4ae5 100644
--- a/RecipeAPI/rtbWriteRecipeLog.m
+++ b/RecipeAPI/rtbWriteRecipeLog.m
@@ -4,9 +4,9 @@ function rtbWriteRecipeLog(recipe, fileName)
 % rtbWriteRecipeLog(recipe, fileName) writes verbose log data from the
 % given recipe to a text file at the fileName.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('recipe', @isstruct);
diff --git a/RenderData/Macbeth-ColorChecker/rtbCreateMacbethSPDFiles.m b/RenderData/Macbeth-ColorChecker/rtbCreateMacbethSPDFiles.m
index 5ba0f8b2be37f5467567f3ed823ccc6086c40795..c57874dfc5f7a763cc0a4f936fc60b6bf850f61f 100644
--- a/RenderData/Macbeth-ColorChecker/rtbCreateMacbethSPDFiles.m
+++ b/RenderData/Macbeth-ColorChecker/rtbCreateMacbethSPDFiles.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Import Macbeth ColorChecker colorimetric from Psychtoolbox format. 
 
diff --git a/RenderData/Macbeth-D65Metamers/rtbIlluminantMetamerExample.m b/RenderData/Macbeth-D65Metamers/rtbIlluminantMetamerExample.m
index 866719887db22c106206a718c2d00c487f9cc73e..6535ceafb096abd1d80ddd3e12f1b335791f253b 100644
--- a/RenderData/Macbeth-D65Metamers/rtbIlluminantMetamerExample.m
+++ b/RenderData/Macbeth-D65Metamers/rtbIlluminantMetamerExample.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 % Make a D65 metamer for a given Macbeth ColorChcekr tile.
 %   @param whichSur the number of a ColorChecker tile, 1-24.
diff --git a/RenderData/Macbeth-D65Metamers/rtbSaveMCCD65Metamers.m b/RenderData/Macbeth-D65Metamers/rtbSaveMCCD65Metamers.m
index 9f7f23ba9060f52a670fdaae84bfe5d624a89a5c..bfec170c5a903bd294a517f1615e5c4ce411f5c5 100644
--- a/RenderData/Macbeth-D65Metamers/rtbSaveMCCD65Metamers.m
+++ b/RenderData/Macbeth-D65Metamers/rtbSaveMCCD65Metamers.m
@@ -1,6 +1,6 @@
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 %
 %% Save D65 metamers for 24 Macbeth ColorChecker reflectances.
 %
diff --git a/Test/Interactive/rtbCompareAllExampleScenes.m b/Test/Interactive/rtbCompareAllExampleScenes.m
index 9a7544d2d79f65b8190eeea63022798a4780a1ab..36bd997e3e63f28cd4f0d0823f337b75591aeeb6 100644
--- a/Test/Interactive/rtbCompareAllExampleScenes.m
+++ b/Test/Interactive/rtbCompareAllExampleScenes.m
@@ -55,9 +55,9 @@ function [matchInfo, unmatchedA, unmatchedB] = rtbCompareAllExampleScenes(workin
 % any of the files in set B.  Likewise, returns a cell array of paths for
 % files in set B that did not match any of the files in set A.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('workingFolderA', @ischar);
diff --git a/Test/Interactive/rtbTestAllExampleScenes.m b/Test/Interactive/rtbTestAllExampleScenes.m
index c276fcc38b64749a25f18ebacc1b051f8c0cae17..a84787726281db3d078e203bb9dfc7d35d0b46b6 100644
--- a/Test/Interactive/rtbTestAllExampleScenes.m
+++ b/Test/Interactive/rtbTestAllExampleScenes.m
@@ -28,9 +28,9 @@ function results = rtbTestAllExampleScenes(varargin)
 % cell array of executive functions to run.  The default is to search the
 % ExampleScenes/ folder for files that begin with "Make".
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addParameter('outputRoot', rtbWorkingFolder(), @ischar);
diff --git a/Test/Interactive/rtbTestInstallation.m b/Test/Interactive/rtbTestInstallation.m
index 91f21e067345bd251b886421c9dd7bcee860036e..743efe03c5e76da43497957f12def047b3e82b34 100644
--- a/Test/Interactive/rtbTestInstallation.m
+++ b/Test/Interactive/rtbTestInstallation.m
@@ -20,9 +20,9 @@ function [renderResults, comparison] = rtbTestInstallation(varargin)
 %
 % [renderResults, comparison] = rtbTestInstallation(varargin)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addParameter('referenceRoot', '', @ischar);
diff --git a/Utilities/ReadMultispectralEXR/ReadMultichannelEXR/rtbMakeReadMultichannelEXR.m b/Utilities/ReadMultispectralEXR/ReadMultichannelEXR/rtbMakeReadMultichannelEXR.m
index 8885f37561d2a43714a3a65e512e0658efef9067..48bc58a235d124bf1ea9dce9a45437072054bb4b 100644
--- a/Utilities/ReadMultispectralEXR/ReadMultichannelEXR/rtbMakeReadMultichannelEXR.m
+++ b/Utilities/ReadMultispectralEXR/ReadMultichannelEXR/rtbMakeReadMultichannelEXR.m
@@ -17,9 +17,9 @@ function rtbMakeReadMultichannelEXR()
 %
 % On OS X, you can probably find a similar command with Homebrew.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 %% Choose the source and function files
 cd(fullfile(rtbRoot(), 'Utilities', 'ReadMultispectralEXR', 'rtbReadMultichannelEXR'));
diff --git a/Utilities/ReadMultispectralEXR/ReadMultichannelEXR/rtbReadMultichannelEXR.m b/Utilities/ReadMultispectralEXR/ReadMultichannelEXR/rtbReadMultichannelEXR.m
index 0743b2ef84d7416acb73428dd6ddc9786512c25b..c11dfe38d4ebd3cfbf05747086681038860b8b15 100644
--- a/Utilities/ReadMultispectralEXR/ReadMultichannelEXR/rtbReadMultichannelEXR.m
+++ b/Utilities/ReadMultispectralEXR/ReadMultichannelEXR/rtbReadMultichannelEXR.m
@@ -15,9 +15,9 @@ function [channelInfo, imageData] = rtbReadMultichannelEXR(exrFile)
 %
 % [channelInfo, imageData] = rtbReadMultichannelEXR(exrFile)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2015 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 % delegate to the mex-function with a slightly different name
 [channelInfo, imageData] = ReadMultichannelEXR(exrFile);
\ No newline at end of file
diff --git a/Utilities/ReadMultispectralEXR/rtbPlotSlices.m b/Utilities/ReadMultispectralEXR/rtbPlotSlices.m
index 8fbd39e01682a0377d38e99d3fbd910fd4ab97cd..e95da7b0fdfe5e00fda051b5515f3b3688be7b5a 100644
--- a/Utilities/ReadMultispectralEXR/rtbPlotSlices.m
+++ b/Utilities/ReadMultispectralEXR/rtbPlotSlices.m
@@ -5,9 +5,9 @@ function fig = rtbPlotSlices(sliceInfo, data)
 % as a grayscale image, along with the slice name and pixelType from the
 % give sliceInfo.  Returns the new plot figure.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('sliceInfo', @isstruct);
diff --git a/Utilities/ReadMultispectralEXR/rtbReadMultispectralEXR.m b/Utilities/ReadMultispectralEXR/rtbReadMultispectralEXR.m
index ae6236f145739ee110085b21d035cc05f44facb6..ae30126ed42d5acd8b08e7c57156536d2d8fb416 100644
--- a/Utilities/ReadMultispectralEXR/rtbReadMultispectralEXR.m
+++ b/Utilities/ReadMultispectralEXR/rtbReadMultispectralEXR.m
@@ -24,9 +24,9 @@ function [imageData, wls, S] = rtbReadMultispectralEXR(exrFile, varargin)
 % Also returns a summary of the list of wavelengths in "S" format.  This is
 % an array with elements [start delta n].
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('exrFile', @ischar);
diff --git a/Utilities/ReadMultispectralEXR/rtbWlsFromSliceNames.m b/Utilities/ReadMultispectralEXR/rtbWlsFromSliceNames.m
index d4b250e11df260ca2d6822e481a53aa3dc45bde2..305f3f81238796866a217bbeebb251db3962883d 100644
--- a/Utilities/ReadMultispectralEXR/rtbWlsFromSliceNames.m
+++ b/Utilities/ReadMultispectralEXR/rtbWlsFromSliceNames.m
@@ -20,9 +20,9 @@ function [wls, S, order] = rtbWlsFromSliceNames(sliceNames, varargin)
 % matching pattern to use when scanning slice names.  The default is
 % '%f-%f'.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2015 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('sliceNames', @iscell);
diff --git a/Utilities/SpectralPromotion/rtbPromoteRGBReflectance.m b/Utilities/SpectralPromotion/rtbPromoteRGBReflectance.m
index b0f0141edfdf5b3e4cc55159bb0a20161beab0f5..e96f16fdf65036bcb0975d198d45a358ac22870d 100644
--- a/Utilities/SpectralPromotion/rtbPromoteRGBReflectance.m
+++ b/Utilities/SpectralPromotion/rtbPromoteRGBReflectance.m
@@ -48,9 +48,9 @@ function [promoted, S, RGB, dataFile] = rtbPromoteRGBReflectance(reflectance, va
 % down-converted RGB reflectance will not necessarily match the original
 % reflectance, but might nevertheless be of interest.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('reflectance', @isnumeric);
diff --git a/Utilities/rtbChangeToFolder.m b/Utilities/rtbChangeToFolder.m
index 50a435fc612f27502d138f3348d3123e8b8bd9da..c43200ee61f851fc1a3692b68ca6b515c03bde19 100644
--- a/Utilities/rtbChangeToFolder.m
+++ b/Utilities/rtbChangeToFolder.m
@@ -7,9 +7,9 @@ function wasCreated = rtbChangeToFolder(folder)
 %
 % Returns true if the folder had to be created.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('folder', @ischar);
diff --git a/Utilities/rtbChangeToWorkingFolder.m b/Utilities/rtbChangeToWorkingFolder.m
index ccaab196fd60e7ef2e1b1ea6c2371374b4987deb..02b0a3dd4af5b1f9861db81972081800f3d94d03 100644
--- a/Utilities/rtbChangeToWorkingFolder.m
+++ b/Utilities/rtbChangeToWorkingFolder.m
@@ -7,9 +7,9 @@ function wasCreated = rtbChangeToWorkingFolder(varargin)
 %
 % Returns true if @a folder had to be created.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addParameter('hints', rtbDefaultHints(), @isstruct);
diff --git a/Utilities/rtbCleanMatlabPath.m b/Utilities/rtbCleanMatlabPath.m
index 6f18237eeaac875ce2033ca784356a3f6c4830cf..8b0e2556f8f4cde0d150f13b329400cd20ab6dff 100644
--- a/Utilities/rtbCleanMatlabPath.m
+++ b/Utilities/rtbCleanMatlabPath.m
@@ -6,9 +6,9 @@ function rtbCleanMatlabPath()
 %
 % You can use this function while the Matlab "Set Path" dialog is open!
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 % get the Matlab path
 pathString = path();
diff --git a/Utilities/rtbComputeRadiometricScaleFactor.m b/Utilities/rtbComputeRadiometricScaleFactor.m
index a60eb7a871486320a7316138206ead105f733f9d..c3a3321bf55e178b314ed5aa5f21296b7b8bc3d5 100644
--- a/Utilities/rtbComputeRadiometricScaleFactor.m
+++ b/Utilities/rtbComputeRadiometricScaleFactor.m
@@ -11,9 +11,9 @@ function radiometricScaleFactor = rtbComputeRadiometricScaleFactor(renderer)
 % See the RenderToolbox4 wiki for details about radiometric units:
 %	https://github.com/DavidBrainard/RenderToolbox4/wiki/RadianceTest
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('renderer', @ischar);
diff --git a/Utilities/rtbDockerExists.m b/Utilities/rtbDockerExists.m
index 508abe1c769b8cd9d303769f02add94fd5ed0e97..e010e858295fd5f170243cef1f9ce5b78856e353 100644
--- a/Utilities/rtbDockerExists.m
+++ b/Utilities/rtbDockerExists.m
@@ -5,9 +5,9 @@ function [dockerExists, status, result] = rtbDockerExists()
 % the host system, and if the current user has permission to invoke Docker
 % commands.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 %% Can we use Docker?
 [status, result] = system('docker ps');
diff --git a/Utilities/rtbFindFiles.m b/Utilities/rtbFindFiles.m
index 41f1f2bd424cc776055efe87a8ee3626733e6e55..4bda28375f4d21acbded9c227cc69bef91303fb0 100644
--- a/Utilities/rtbFindFiles.m
+++ b/Utilities/rtbFindFiles.m
@@ -27,9 +27,9 @@ function fileList = rtbFindFiles(varargin)
 %
 % fileList = rtbFindFiles(varargin)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addParameter('root', pwd(), @ischar);
diff --git a/Utilities/rtbGetPixelSpectrum.m b/Utilities/rtbGetPixelSpectrum.m
index 44e71010b325e01f084e9049c325b529a03189fc..f0e4bef1d4e101cf91d1f8f9af53fb8e85433c29 100644
--- a/Utilities/rtbGetPixelSpectrum.m
+++ b/Utilities/rtbGetPixelSpectrum.m
@@ -19,9 +19,9 @@ function [wavelengths, magnitudes, sRGB] = rtbGetPixelSpectrum(image, spectrum,
 % of magnitudes, for the pixel of interest.  Also returns an sRGB
 % approximation of the spectrum of the pixel of interest.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('image', @isnumeric);
diff --git a/Utilities/rtbGetUserFolder.m b/Utilities/rtbGetUserFolder.m
index 3abd1ee7a55507e7fd98b5929d5349f3506801c6..bef263f2abbe9751f023a3d9285f27dfe0bf1d2a 100644
--- a/Utilities/rtbGetUserFolder.m
+++ b/Utilities/rtbGetUserFolder.m
@@ -9,9 +9,9 @@ function userFolder = rtbGetUserFolder()
 % Users can change their path configuration using userpath().  If for some
 % reason userpath() does not return a valid location, returns ''.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 % get the user's folder from Matlab
 userFolder = userpath();
diff --git a/Utilities/rtbGetWorkingRelativePath.m b/Utilities/rtbGetWorkingRelativePath.m
index bee03a30bfadd872af985c0effc4d331384c0a7d..e66a440f07cbf2640c84dc6e89853e1e75756aa4 100644
--- a/Utilities/rtbGetWorkingRelativePath.m
+++ b/Utilities/rtbGetWorkingRelativePath.m
@@ -9,9 +9,9 @@ function relativePath = rtbGetWorkingRelativePath(originalPath, varargin)
 % the given hints, returns the corresponding relative path, starting
 % from the working folder.  Otherwise, returns ''.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('originalPath', @ischar);
diff --git a/Utilities/rtbImportPsychColorimetricMatFile.m b/Utilities/rtbImportPsychColorimetricMatFile.m
index 47555e0027251dea4fa04b38279e20d43187e010..8e6219ebb9d878ecb6c83a9c9f8c38c81f2e2717 100644
--- a/Utilities/rtbImportPsychColorimetricMatFile.m
+++ b/Utilities/rtbImportPsychColorimetricMatFile.m
@@ -44,8 +44,9 @@ function outFiles = rtbImportPsychColorimetricMatFile(inFile, outFile, varargin)
 % alone unconditionally.
 %
 %% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('inFile', @ischar);
diff --git a/Utilities/rtbIsPathPrefix.m b/Utilities/rtbIsPathPrefix.m
index 4cd0931294293ff3342d2eea771af8e235ad7d9b..9b4ea60a3e70508a8ac4fd2caa5da9333ae9a827 100644
--- a/Utilities/rtbIsPathPrefix.m
+++ b/Utilities/rtbIsPathPrefix.m
@@ -31,9 +31,9 @@ function [isPrefix, remainder] = rtbIsPathPrefix(pathA, pathB)
 %   % reproduce pathB
 %   pathB = fullfile(pathA, remainder);
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('pathA', @ischar);
diff --git a/Utilities/rtbIsStructFieldPresent.m b/Utilities/rtbIsStructFieldPresent.m
index d134ecf4ee4b1b08a613bfa0967c7864c148c8b5..c1026e0928e85366018abc577ee3a44188be0aa5 100644
--- a/Utilities/rtbIsStructFieldPresent.m
+++ b/Utilities/rtbIsStructFieldPresent.m
@@ -5,9 +5,9 @@ function isPresent = rtbIsStructFieldPresent(s, fieldName)
 % given struct s has a field with the given name fieldName,
 % and if that field is not empty.  Otherwise returns false.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('s', @isstruct);
diff --git a/Utilities/rtbKubernetesExists.m b/Utilities/rtbKubernetesExists.m
index 78449f0e80baa8127b0c2717732df3ef18f4b404..c7df80907cd1e169b06f814ffd68af026b265926 100644
--- a/Utilities/rtbKubernetesExists.m
+++ b/Utilities/rtbKubernetesExists.m
@@ -5,9 +5,9 @@ function [kubernetesExists, status, result] = rtbKubernetesExists()
 % be found on the host system, and if the current user has permission to
 % invoke Kubernetes commands.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 %% Can we use Docker?
 [status, result] = system('kubectl version --client');
diff --git a/Utilities/rtbMakeMontage.m b/Utilities/rtbMakeMontage.m
index 81ed578d9e37bbbec0e8f0f13f9d11b5a3d27fec..72ba3cad1ecdbac7cb006a842285e45ced5cbf74 100644
--- a/Utilities/rtbMakeMontage.m
+++ b/Utilities/rtbMakeMontage.m
@@ -43,9 +43,9 @@ function [SRGBMontage, XYZMontage, luminanceScale] = rtbMakeMontage(inFiles, var
 %
 % [SRGBMontage, XYZMontage, luminanceScale] = rtbMakeMontage(inFiles, varargin)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('inFiles', @iscellstr);
diff --git a/Utilities/rtbMakeSensorImages.m b/Utilities/rtbMakeSensorImages.m
index f5c835758ce2ea71690aa4b52cb14dba9847ab26..ee86b11f4bfd990df9f516ee7d841283a809948d 100644
--- a/Utilities/rtbMakeSensorImages.m
+++ b/Utilities/rtbMakeSensorImages.m
@@ -39,9 +39,9 @@ function outFiles = rtbMakeSensorImages(inFiles, matchingFunctions, varargin)
 %   - the name of a Psychtoolbox colorimetric data file
 %   - a numeric suffix
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('inFiles', @iscell);
diff --git a/Utilities/rtbMultispectralToSRGB.m b/Utilities/rtbMultispectralToSRGB.m
index c8126ba32bb0ba42d679abae62c79a9545d0eee2..ba367e678e3ac6a2637e5cc0711487174ea8a5ea 100644
--- a/Utilities/rtbMultispectralToSRGB.m
+++ b/Utilities/rtbMultispectralToSRGB.m
@@ -23,9 +23,9 @@ function [sRGBImage, XYZImage, rawRGBImage] = rtbMultispectralToSRGB(multispectr
 % returns the intermediate XYZ image and the uncorrected RGB image, which
 % have the same size.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('multispectralImage', @isnumeric);
diff --git a/Utilities/rtbMultispectralToSensorImage.m b/Utilities/rtbMultispectralToSensorImage.m
index d2360972c98614428bc5115aadfa90034db5d810..8265471d5624ef32da1add20a2de4d94761eecf0 100644
--- a/Utilities/rtbMultispectralToSensorImage.m
+++ b/Utilities/rtbMultispectralToSensorImage.m
@@ -31,9 +31,9 @@ function sensorImage = rtbMultispectralToSensorImage(multispectralData, imageS,
 % or the file
 %   Psychtoolbox/PsychColorimetricData/PsychColorimetricMatFiles/Contents.m
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('multispectralData', @isnumeric);
diff --git a/Utilities/rtbParsePsychColorimetricMatFile.m b/Utilities/rtbParsePsychColorimetricMatFile.m
index 812485c253a3d0b939a9383b95ea730e975e16cc..8831e0a0341b7fecf3e593fc4a57ed828de75df2 100644
--- a/Utilities/rtbParsePsychColorimetricMatFile.m
+++ b/Utilities/rtbParsePsychColorimetricMatFile.m
@@ -14,9 +14,9 @@ function [data, S, category, name] = rtbParsePsychColorimetricMatFile(dataFile)
 % description of the data's spectral sampling, the category prefix from the
 % file name, and the descriptive base file name.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 % parse the file name for its category and descriptive name
 
 parser = inputParser();
diff --git a/Utilities/rtbReadDAT.m b/Utilities/rtbReadDAT.m
index 1a0880c6602afa514703b0a67aca771ed178a408..0c602b927346a740c3503917331cb2b4ac4e6ffb 100644
--- a/Utilities/rtbReadDAT.m
+++ b/Utilities/rtbReadDAT.m
@@ -20,9 +20,9 @@ function [imageData, imageSize, lens] = rtbReadDAT(filename, varargin)
 % returns a struct of lens data with fields focalLength, fStop, and
 % fieldOfView.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('filename', @ischar);
diff --git a/Utilities/rtbReadJson.m b/Utilities/rtbReadJson.m
index ec41b65b7365037b4a8b3bfd8e4ee72d4d2703f5..1037ce2fca1ae9e66f0d4ed57bde2c094909b614 100644
--- a/Utilities/rtbReadJson.m
+++ b/Utilities/rtbReadJson.m
@@ -6,9 +6,9 @@ function data = rtbReadJson(jsonString)
 %
 % data = rtbReadJson(jsonString)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('jsonString', @ischar);
diff --git a/Utilities/rtbReadSpectrum.m b/Utilities/rtbReadSpectrum.m
index 7afe4313665e3d0a42024969615bfcbab244d821..419ec598e9459513f8fdc8e401d6c947e44c1585 100644
--- a/Utilities/rtbReadSpectrum.m
+++ b/Utilities/rtbReadSpectrum.m
@@ -22,9 +22,9 @@ function [wavelengths, magnitudes] = rtbReadSpectrum(spectrum)
 % Returns a 1 x n matrix of n wavelengths, and a corresponding 1 x n matrix
 % of magnitudes.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('spectrum', @ischar);
diff --git a/Utilities/rtbReadStringNumbers.m b/Utilities/rtbReadStringNumbers.m
index 0ca5ba334787bed85c4863c64862819764e085b9..ccf0fd75746b8fb757c3e95d7d12f90902c4f49a 100644
--- a/Utilities/rtbReadStringNumbers.m
+++ b/Utilities/rtbReadStringNumbers.m
@@ -11,9 +11,9 @@ function [numbers, nNums] = rtbReadStringNumbers(string, varargin)
 % numbers in the output.  The default is 1, each element of the cell array
 % of strings will contain 1 number.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('string', @ischar);
diff --git a/Utilities/rtbResolveFilePath.m b/Utilities/rtbResolveFilePath.m
index b1c68e112b656e691f6bfb6941c34b047879b1b4..0c0880b7e2ce6d3cb13b14217664c06d4b2b2569 100644
--- a/Utilities/rtbResolveFilePath.m
+++ b/Utilities/rtbResolveFilePath.m
@@ -28,9 +28,9 @@ function fileInfo = rtbResolveFilePath(fileName, rootFolder)
 % found within rootFolder.  When isRootFolderMatch is true, resolvedPath
 % should be treated as a relative path.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('fileName', @ischar);
diff --git a/Utilities/rtbRoot.m b/Utilities/rtbRoot.m
index 9a62023e110f24a70939824d341b68f4d5811308..5696049e5bd89254feecde205187e4d2bd585a17 100644
--- a/Utilities/rtbRoot.m
+++ b/Utilities/rtbRoot.m
@@ -4,9 +4,9 @@ function rootPath = rtbRoot()
 % rootPath = rtbRoot() returns the absolute path to RenderToolbox4, based
 % on the location of this file, rtbRoot.m.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 filePath = mfilename('fullpath');
 lastSeps = find(filesep() == filePath, 2, 'last');
diff --git a/Utilities/rtbRunCommand.m b/Utilities/rtbRunCommand.m
index cc5cc6841328fd44a5f63854435e0a078ccceeeb..9e6c3cfc0d628e4e8339ec3589b6817bbe0d6d5b 100644
--- a/Utilities/rtbRunCommand.m
+++ b/Utilities/rtbRunCommand.m
@@ -16,9 +16,9 @@ function [status, result, exception] = rtbRunCommand(command, varargin)
 % false.  Also returns any exception that was thrown during command
 % execution, or empty [] if no exception was thrown.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('command', @ischar);
diff --git a/Utilities/rtbRunDocker.m b/Utilities/rtbRunDocker.m
index 68ceb78cf5fee1d68106f0a591f5e2a632d21632..b63be2a683b4042cddc1aa63f392f9c27cfa6cab 100644
--- a/Utilities/rtbRunDocker.m
+++ b/Utilities/rtbRunDocker.m
@@ -19,9 +19,9 @@ function [status, result] = rtbRunDocker(command, imageName, varargin)
 % rtbRunDocker( ... 'hints', hints) struct of RenderToolbox4 options, as
 % from rtbDefaultHints().
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('command', @ischar);
diff --git a/Utilities/rtbRunKubernetes.m b/Utilities/rtbRunKubernetes.m
index 5c1a795747cdf0e4fb19c69c26ad9b9f6a8149a4..2561a1f41506a2f9ec33e45894b8c3f1cbb7b42f 100644
--- a/Utilities/rtbRunKubernetes.m
+++ b/Utilities/rtbRunKubernetes.m
@@ -12,9 +12,9 @@ function [status, result] = rtbRunKubernetes(command, podSelector, varargin)
 % rtbRunDocker( ... 'hints', hints) struct of RenderToolbox4 options, as
 % from rtbDefaultHints().
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('command', @ischar);
diff --git a/Utilities/rtbShowXYZAndSRGB.m b/Utilities/rtbShowXYZAndSRGB.m
index 8cd6cc9d71b66eda9471e1ce46ea8b367a02d595..44d1d5cf3b77b469aa861d1b6d76b7f4908d38b9 100644
--- a/Utilities/rtbShowXYZAndSRGB.m
+++ b/Utilities/rtbShowXYZAndSRGB.m
@@ -8,9 +8,9 @@ function [xyzFig, srgbFig] = rtbShowXYZAndSRGB(XYZImage, SRGBImage, name)
 %
 % Returns handles to the new figures.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('XYZImage', @isnumeric);
diff --git a/Utilities/rtbShowXYZHistogram.m b/Utilities/rtbShowXYZHistogram.m
index 231844ed0b07fdb0902fe25bb84247e7fd26e0e4..ca13876d6ba562340d4ac1648cdd1f96f01dbb29 100644
--- a/Utilities/rtbShowXYZHistogram.m
+++ b/Utilities/rtbShowXYZHistogram.m
@@ -17,9 +17,9 @@ function [nX, nY, nZ, edges, fig] = rtbShowXYZHistogram(image, varargin)
 %
 % Also returns the handle to the new figure.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('image', @isnumeric);
diff --git a/Utilities/rtbSpdPowerPerNmToPowerPerWlBand.m b/Utilities/rtbSpdPowerPerNmToPowerPerWlBand.m
index e1a2d46cc6c390df429db687e6b1fc2c07385a91..958121c7d574ae817301ddb2bdd9e3e13be5f8fe 100644
--- a/Utilities/rtbSpdPowerPerNmToPowerPerWlBand.m
+++ b/Utilities/rtbSpdPowerPerNmToPowerPerWlBand.m
@@ -13,9 +13,9 @@ function spdPerWlBand = rtbSpdPowerPerNmToPowerPerWlBand(spdPerNm, S)
 %
 % spdPerWlBand = rtbSpdPowerPerNmToPowerPerWlBand(spdPerNm, S)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('spdPerNm', @isnumeric);
diff --git a/Utilities/rtbSpdPowerPerWlBandToPowerPerNm.m b/Utilities/rtbSpdPowerPerWlBandToPowerPerNm.m
index d0abaa484976c000c1b71b016ecf1a47d18edbae..116933c145a38e13bbb002a35bdc981ecdd549e0 100644
--- a/Utilities/rtbSpdPowerPerWlBandToPowerPerNm.m
+++ b/Utilities/rtbSpdPowerPerWlBandToPowerPerNm.m
@@ -14,9 +14,9 @@ function spdPerNm = rtbSpdPowerPerWlBandToPowerPerNm(spdPerWlBand, S)
 %
 % spdPerNm = rtbSpdPowerPerWlBandToPowerPerNm(spdPerWlBand, S)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('spdPerWlBand', @isnumeric);
diff --git a/Utilities/rtbVersionInfo.m b/Utilities/rtbVersionInfo.m
index 21d4109dffa28b15b28e0d70f1707121bd4f69f0..8fc90c5d72415b423620617f25db33f95133f9f2 100644
--- a/Utilities/rtbVersionInfo.m
+++ b/Utilities/rtbVersionInfo.m
@@ -8,9 +8,9 @@ function info = rtbVersionInfo()
 % Returns a struct that contains information collected about each
 % component.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 % Git info about RenderToolbox4
 try
diff --git a/Utilities/rtbWorkingAbsolutePath.m b/Utilities/rtbWorkingAbsolutePath.m
index de2aede9314e29e87558273102e56a510d9b54d6..e808242c3a644b9c3efaf4761c557423bc8735c5 100644
--- a/Utilities/rtbWorkingAbsolutePath.m
+++ b/Utilities/rtbWorkingAbsolutePath.m
@@ -6,9 +6,9 @@ function absolutePath = rtbWorkingAbsolutePath(originalPath, varargin)
 % that originalPath is a relative path relative to the working folder
 % specified by the given hints.  See rtbWorkingFolder().
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('originalPath', @ischar);
diff --git a/Utilities/rtbWorkingFolder.m b/Utilities/rtbWorkingFolder.m
index 4c4d107cfa83d1eab020bb87d1f5b47261a938dd..65ce781d9db65bfce008fcf196e8165bc15f9346 100644
--- a/Utilities/rtbWorkingFolder.m
+++ b/Utilities/rtbWorkingFolder.m
@@ -19,9 +19,9 @@ function folder = rtbWorkingFolder(varargin)
 % whether to include a subfolder with the name of the given hints.renderer.
 % The default is not to include any renderer-specific subfolder.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addParameter('hints', rtbDefaultHints(), @isstruct);
diff --git a/Utilities/rtbWriteJson.m b/Utilities/rtbWriteJson.m
index c8642f8cdf01576b11072617b38d2fb13f4bdccd..0218fc4ec04eef8606f95b3e43d147b7740fead1 100644
--- a/Utilities/rtbWriteJson.m
+++ b/Utilities/rtbWriteJson.m
@@ -9,9 +9,9 @@ function jsonString = rtbWriteJson(data, varargin)
 %
 % jsonString = rtbWriteJson(data)
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('data', @(data) isstruct(data) || iscell(data) || isnumeric(data));
diff --git a/Utilities/rtbWriteSpectrumFile.m b/Utilities/rtbWriteSpectrumFile.m
index f7fdc6e6ff9875b1fd8a07f01eb151b1ece27a79..52165e4e717f68c6d2344ad6035f12fa4e8aae5c 100644
--- a/Utilities/rtbWriteSpectrumFile.m
+++ b/Utilities/rtbWriteSpectrumFile.m
@@ -16,9 +16,9 @@ function filename = rtbWriteSpectrumFile(wavelengths, magnitudes, filename)
 %
 % Returns the given filename, for convenience.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('wavelengths', @isnumeric);
diff --git a/Utilities/rtbXYZToSRGB.m b/Utilities/rtbXYZToSRGB.m
index bc001c711040a14f70e7285cf5e7ed95cb6a0d42..445ac77076b8f4ac1103770d6edd5adbeefa53a1 100644
--- a/Utilities/rtbXYZToSRGB.m
+++ b/Utilities/rtbXYZToSRGB.m
@@ -25,9 +25,9 @@ function [gammaImage, rawImage, scaleFactor] = rtbXYZToSRGB(image, varargin)
 % image was scaled.  This may have been calculated or it may be equal to
 % the given isScale.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2013 The RenderToolbox4 Team.
-%%% About Us://github.com/DavidBrainard/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 parser = inputParser();
 parser.addRequired('image', @isnumeric);
diff --git a/rtbLocalConfigTemplate.m b/rtbLocalConfigTemplate.m
index 3e5739e799ae21ad50caa38892b81ada4008c04a..d8a3ce0ebe3ee4b440d2848867817f309b5f396c 100644
--- a/rtbLocalConfigTemplate.m
+++ b/rtbLocalConfigTemplate.m
@@ -18,9 +18,9 @@
 %
 % Use rtbTestInstallation() to test whether things are working.
 %
-%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox4 Team.
-%%% About Us://github.com/RenderToolbox4/RenderToolbox4/wiki/About-Us
-%%% RenderToolbox4 is released under the MIT License.  See LICENSE.txt.
+%%% RenderToolbox4 Copyright (c) 2012-2016 The RenderToolbox Team.
+%%% About Us://github.com/RenderToolbox/RenderToolbox4/wiki/About-Us
+%%% RenderToolbox4 is released under the MIT License.  See LICENSE file.
 
 
 %% Matlab preferences for RenderToolbox4 default hints.