Set proper copyright

CURA-7435
This commit is contained in:
Erwan MATHIEU 2025-02-20 14:28:58 +01:00
parent ef256d74f5
commit 93f9531ffe
3 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,6 @@
# Copyright (c) 2025 3Dconnexion, UltiMaker
# Cura is released under the terms of the LGPLv3 or higher.
from UM.Math.Matrix import Matrix
from UM.Math.Vector import Vector
from UM.Math.AxisAlignedBox import AxisAlignedBox

View File

@ -1,5 +1,5 @@
# Copyright (c) 2016 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.
# Copyright (c) 2025 3Dconnexion, UltiMaker
# Cura is released under the terms of the LGPLv3 or higher.
from UM.Scene.SceneNode import SceneNode
from UM.View.GL.OpenGL import OpenGL

View File

@ -1,4 +1,4 @@
# Copyright (c) 2025 Ultimaker B.V.
# Copyright (c) 2025 UltiMaker
# Cura is released under the terms of the LGPLv3 or higher.
from UM.Logger import Logger
@ -18,5 +18,5 @@ def register(app: "Application") -> Dict[str, Any]:
from .NavlibClient import NavlibClient
return { "view_manipulator": NavlibClient(app.getController().getScene(), app.getRenderer()) }
except BaseException as exception:
Logger.warning(f"Unable to load 3DConnexion library: {exception}")
Logger.warning(f"Unable to load 3Dconnexion library: {exception}")
return { }