Skip to content

Commit 9a193ad

Browse files
committed
Changing AGPLv3 to LGPLv3
1 parent 07899ba commit 9a193ad

File tree

205 files changed

+367
-863
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+367
-863
lines changed

CuraEngine

4.52 MB
Binary file not shown.

LICENSE

Lines changed: 160 additions & 656 deletions
Large diffs are not rendered by default.

cmake/CuraTests.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
enable_testing()
55
include(CMakeParseArguments)

cura/ArrangeObjectsJob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Job import Job
55
from UM.Scene.SceneNode import SceneNode

cura/BuildVolume.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from cura.Settings.ExtruderManager import ExtruderManager
55
from UM.Settings.ContainerRegistry import ContainerRegistry

cura/CameraAnimation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44

55
from PyQt5.QtCore import QVariantAnimation, QEasingCurve

cura/ConvexHullDecorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Application import Application
55
from UM.Math.Polygon import Polygon

cura/ConvexHullNode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Application import Application
55
from UM.Scene.SceneNode import SceneNode

cura/CuraActions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import QObject, QUrl
55
from PyQt5.QtGui import QDesktopServices

cura/CuraApplication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtNetwork import QLocalServer
55
from PyQt5.QtNetwork import QLocalSocket

cura/CuraSplashScreen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Uranium is released under the terms of the AGPLv3 or higher.
2+
# Uranium is released under the terms of the LGPLv3 or higher.
33

44
from threading import Thread, Event
55

cura/CuraVersion.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
CuraVersion = "@CURA_VERSION@"
55
CuraBuildType = "@CURA_BUILDTYPE@"

cura/LayerData.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33
from UM.Mesh.MeshData import MeshData
44

55

cura/LayerDataBuilder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from .Layer import Layer
55
from .LayerPolygon import LayerPolygon

cura/LayerPolygon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Application import Application
55
from typing import Any

cura/MachineAction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import QObject, pyqtSlot, pyqtProperty, pyqtSignal, QUrl
55
from PyQt5.QtQml import QQmlComponent, QQmlContext

cura/MachineActionManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33
from UM.Logger import Logger
44
from UM.PluginRegistry import PluginRegistry # So MachineAction can be added as plugin type
55

cura/MultiplyObjectsJob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Job import Job
55
from UM.Scene.SceneNode import SceneNode

cura/OneAtATimeIterator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Scene.Iterator import Iterator
55
from UM.Scene.SceneNode import SceneNode

cura/PlatformPhysics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import QTimer
55

cura/PlatformPhysicsOperation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Operations.Operation import Operation
55
from UM.Operations.GroupedOperation import GroupedOperation

cura/PrintInformation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import QObject, pyqtSignal, pyqtProperty
55
from UM.FlameProfiler import pyqtSlot

cura/PrinterOutputDevice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.i18n import i18nCatalog
55
from UM.OutputDevice.OutputDevice import OutputDevice

cura/ProfileReader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.PluginObject import PluginObject
55

cura/ProfileWriter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Uranium is released under the terms of the AGPLv3 or higher.
2+
# Uranium is released under the terms of the LGPLv3 or higher.
33

44
from UM.PluginObject import PluginObject
55

cura/QualityManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
# This collects a lot of quality and quality changes related code which was split between ContainerManager
55
# and the MachineManager and really needs to usable from both.

cura/SetParentOperation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Uranium is released under the terms of the AGPLv3 or higher.
2+
# Uranium is released under the terms of the LGPLv3 or higher.
33

44
from UM.Scene.SceneNode import SceneNode
55
from UM.Operations import Operation

cura/Settings/ContainerManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
import os.path
55
import urllib

cura/Settings/ContainerSettingsModel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Application import Application
55
from UM.Qt.ListModel import ListModel

cura/Settings/CuraContainerRegistry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
import os
55
import os.path

cura/Settings/CuraContainerStack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
import os.path
55

cura/Settings/CuraStackBuilder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Logger import Logger
55

cura/Settings/Exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44

55
## Raised when trying to perform an operation like add on a stack that does not allow that.

cura/Settings/ExtruderManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import pyqtSignal, pyqtProperty, QObject, QVariant #For communicating data and events to Qt.
55
from UM.FlameProfiler import pyqtSlot

cura/Settings/ExtruderStack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from typing import Any, TYPE_CHECKING, Optional
55

cura/Settings/ExtrudersModel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import Qt, pyqtSignal, pyqtProperty, QTimer
55
from typing import Iterable

cura/Settings/GlobalStack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from typing import Any, Dict, Optional
55

cura/Settings/MachineManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
#Type hinting.
55
from typing import Union, List, Dict

cura/Settings/MachineNameValidator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import pyqtSlot, pyqtProperty, QObject, pyqtSignal, QRegExp
55
from PyQt5.QtGui import QValidator

cura/Settings/MaterialManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import QObject, pyqtSlot #To expose data to QML.
55

cura/Settings/MaterialSettingsVisibilityHandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Uranium is released under the terms of the AGPLv3 or higher.
2+
# Uranium is released under the terms of the LGPLv3 or higher.
33

44
import UM.Settings.Models.SettingVisibilityHandler
55

cura/Settings/MaterialsModel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Settings.ContainerRegistry import ContainerRegistry #To listen for changes to the materials.
55
from UM.Settings.Models.InstanceContainersModel import InstanceContainersModel #We're extending this class.

cura/Settings/ProfilesModel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from collections import OrderedDict
55

cura/Settings/QualityAndUserProfilesModel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33
from UM.Application import Application
44

55
from cura.QualityManager import QualityManager

cura/Settings/QualitySettingsModel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
import collections
55

cura/Settings/SetObjectExtruderOperation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Scene.SceneNode import SceneNode
55
from UM.Operations.Operation import Operation

cura/Settings/SettingInheritanceManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal
55
from UM.FlameProfiler import pyqtSlot

cura/Settings/SettingOverrideDecorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
import copy
55

cura/Settings/UserProfilesModel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33
from UM.Application import Application
44

55
from cura.QualityManager import QualityManager

cura/Settings/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.

cura_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

33
# Copyright (c) 2015 Ultimaker B.V.
4-
# Cura is released under the terms of the AGPLv3 or higher.
4+
# Cura is released under the terms of the LGPLv3 or higher.
55
import os
66
import sys
77
import platform

plugins/3MFReader/ThreeMFReader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
import os.path
55
import zipfile

plugins/3MFReader/ThreeMFWorkspaceReader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Workspace.WorkspaceReader import WorkspaceReader
55
from UM.Application import Application

plugins/3MFReader/WorkspaceDialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from PyQt5.QtCore import QUrl, pyqtSignal, QObject, pyqtProperty, QCoreApplication
55
from UM.FlameProfiler import pyqtSlot

plugins/3MFReader/WorkspaceDialog.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2016 Ultimaker B.V.
2-
// Cura is released under the terms of the AGPLv3 or higher.
2+
// Cura is released under the terms of the LGPLv3 or higher.
33

44
import QtQuick 2.1
55
import QtQuick.Controls 1.1

plugins/3MFReader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33
from typing import Dict
44
import sys
55

plugins/3MFWriter/ThreeMFWorkspaceWriter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Ultimaker B.V.
2-
# Cura is released under the terms of the AGPLv3 or higher.
2+
# Cura is released under the terms of the LGPLv3 or higher.
33

44
from UM.Workspace.WorkspaceWriter import WorkspaceWriter
55
from UM.Application import Application

plugins/3MFWriter/ThreeMFWriter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Uranium is released under the terms of the AGPLv3 or higher.
2+
# Uranium is released under the terms of the LGPLv3 or higher.
33

44
from UM.Mesh.MeshWriter import MeshWriter
55
from UM.Math.Vector import Vector

plugins/3MFWriter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2015 Ultimaker B.V.
2-
# Uranium is released under the terms of the AGPLv3 or higher.
2+
# Uranium is released under the terms of the LGPLv3 or higher.
33
import sys
44

55
from UM.Logger import Logger

0 commit comments

Comments
 (0)