Skip to content

Commit

Permalink
Update copyright notice (#19278)
Browse files Browse the repository at this point in the history
  • Loading branch information
biagas committed Feb 1, 2024
1 parent 20b72c0 commit e39cf26
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC
Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/gui/main/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ ELSE(NOT APPLE)
SET(MACOSX_BUNDLE_LONG_VERSION_STRING "VisIt version ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "VisIt ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_BUNDLE_VERSION ${VISIT_VERSION})
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC")
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC")

ENDIF(NOT APPLE)

Expand Down
2 changes: 1 addition & 1 deletion src/resources/help/en_US/copyright.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<p><b><h2><center>Parts of VisIt are under the following licenses.</center></h2></b></p>
<p><b><h2>VisIt License:</h2></b></p>
<p>BSD 3-Clause License</p>
<p>Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC</p>
<p>Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC</p>
<p>All rights reserved.</p>
<p>LLNL-CODE-793424</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>
Expand Down
2 changes: 1 addition & 1 deletion src/tools/dev/scripts/Info.plist.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@
<key>LSRequiresCarbon</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC</string>
<string>Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC</string>
</dict>
</plist>
10 changes: 5 additions & 5 deletions src/tools/dev/scripts/update_copyright
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/sh
#
# You should do this in both the src and data directories. You might also
# just do a find over all file names when you are finished for "2000 - 2022"
# just do a find over all file names when you are finished for "2000 - 2023"
# to check if you missed any files.
#
find -type f -name "*.txt" -exec sed -i "s/Copyright (c) 2000 - 2022, Lawrence Livermore National Security, LLC/Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC/" {} \; -print
find -type f -name "*.html" -exec sed -i "s/Copyright (c) 2000 - 2022, Lawrence Livermore National Security, LLC/Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC/" {} \; -print
find -type f -name "LICENSE" -exec sed -i "s/Copyright (c) 2000 - 2022, Lawrence Livermore National Security, LLC/Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC/" {} \; -print
find -type f -name "*.in" -exec sed -i "s/Copyright (c) 2000 - 2022, Lawrence Livermore National Security, LLC/Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC/" {} \; -print
find -type f -name "*.txt" -exec sed -i "s/Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC/Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC/" {} \; -print
find -type f -name "*.html" -exec sed -i "s/Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC/Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC/" {} \; -print
find -type f -name "LICENSE" -exec sed -i "s/Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC/Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC/" {} \; -print
find -type f -name "*.in" -exec sed -i "s/Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC/Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC/" {} \; -print
2 changes: 1 addition & 1 deletion src/tools/dev/xmledit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ IF(APPLE)
SET(MACOSX_BUNDLE_LONG_VERSION_STRING "XmlEdit version ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "XmlEdit ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_BUNDLE_VERSION ${VISIT_VERSION})
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC")
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC")
ELSE(APPLE)
ADD_EXECUTABLE(xmledit ${VISIT_APPLICATION_STYLE} ${XMLEDIT_SOURCES})
ENDIF(APPLE)
Expand Down
4 changes: 2 additions & 2 deletions src/tools/examples/embedviewer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ ELSE(NOT APPLE)
SET(MACOSX_BUNDLE_LONG_VERSION_STRING "Embedded viewer example version ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "Embedded viewer example ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_BUNDLE_VERSION ${VISIT_VERSION})
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC")
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC")

ADD_EXECUTABLE(multiwindow MACOSX_BUNDLE ${SOURCES2} ${STATIC_SOURCES2} ${VISIT_SOURCE_DIR}/common/icons/${GUI_ICON_FILE})
# SET(MACOSX_BUNDLE_BUNDLE_NAME "Multiwindow embedded viewer example ${VISIT_VERSION}")
Expand All @@ -86,7 +86,7 @@ ELSE(NOT APPLE)
# SET(MACOSX_BUNDLE_LONG_VERSION_STRING "Multiwindow embedded viewer example version ${VISIT_VERSION}")
# SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "Multiwindow embedded viewer example ${VISIT_VERSION}")
# SET(MACOSX_BUNDLE_BUNDLE_VERSION ${VISIT_VERSION})
# SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC")
# SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC")
ENDIF(NOT APPLE)


Expand Down
2 changes: 1 addition & 1 deletion src/tools/examples/mcurvit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ IF(APPLE)
SET(MACOSX_BUNDLE_LONG_VERSION_STRING "MCurveIt version ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "MCurveIt ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_BUNDLE_VERSION ${VISIT_VERSION})
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC")
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC")
ELSE(APPLE)
ADD_EXECUTABLE(mcurvit ${VISIT_APPLICATION_STYLE} ${MCURVIT_SOURCES} ${STATIC_SOURCES})
ENDIF(APPLE)
Expand Down
2 changes: 1 addition & 1 deletion src/viewer/main/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ ELSE(NOT APPLE)
SET(MACOSX_BUNDLE_LONG_VERSION_STRING "VisIt version ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "VisIt ${VISIT_VERSION}")
SET(MACOSX_BUNDLE_BUNDLE_VERSION ${VISIT_VERSION})
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2023, Lawrence Livermore National Security, LLC")
SET(MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2000 - 2024, Lawrence Livermore National Security, LLC")

IF(VISIT_STATIC)
MAC_NIB_INSTALL(viewer)
Expand Down

0 comments on commit e39cf26

Please sign in to comment.