Skip to content

Commit

Permalink
Add missing copyright headers
Browse files Browse the repository at this point in the history
Fixes #5
  • Loading branch information
awhiemstra committed May 11, 2015
1 parent b1984f5 commit 9d7e460
Show file tree
Hide file tree
Showing 40 changed files with 120 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cura.py
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/env python3

# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from src.CuraApplication import CuraApplication

app = CuraApplication.getInstance()
Expand Down
3 changes: 3 additions & 0 deletions plugins/CuraEngineBackend/CuraEngineBackend.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Backend.Backend import Backend
from UM.Application import Application
from UM.Scene.SceneNode import SceneNode
Expand Down
3 changes: 3 additions & 0 deletions plugins/CuraEngineBackend/Cura_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: Cura.proto

Expand Down
3 changes: 3 additions & 0 deletions plugins/CuraEngineBackend/LayerData.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Mesh.MeshData import MeshData
from UM.Math.Color import Color

Expand Down
3 changes: 3 additions & 0 deletions plugins/CuraEngineBackend/ProcessGCodeJob.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Job import Job
from UM.Application import Application

Expand Down
3 changes: 3 additions & 0 deletions plugins/CuraEngineBackend/ProcessSlicedObjectListJob.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Job import Job
from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
from UM.Scene.SceneNode import SceneNode
Expand Down
3 changes: 3 additions & 0 deletions plugins/CuraEngineBackend/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

#Shoopdawoop
from . import CuraEngineBackend

Expand Down
3 changes: 3 additions & 0 deletions plugins/GCodeWriter/GCodeWriter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Mesh.MeshWriter import MeshWriter
from UM.Logger import Logger
from UM.Application import Application
Expand Down
3 changes: 3 additions & 0 deletions plugins/GCodeWriter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from . import GCodeWriter

from UM.i18n import i18nCatalog
Expand Down
3 changes: 3 additions & 0 deletions plugins/LayerView/LayerView.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.View.View import View
from UM.View.Renderer import Renderer
from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
Expand Down
3 changes: 3 additions & 0 deletions plugins/LayerView/LayerView.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Layouts 1.1
Expand Down
3 changes: 3 additions & 0 deletions plugins/LayerView/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from . import LayerView

from UM.i18n import i18nCatalog
Expand Down
3 changes: 3 additions & 0 deletions plugins/USBPrinting/ControlWindow.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.1
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
Expand Down
3 changes: 3 additions & 0 deletions plugins/USBPrinting/FirmwareUpdateWindow.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.1
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
Expand Down
3 changes: 3 additions & 0 deletions plugins/USBPrinting/PrinterConnection.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from .avr_isp import stk500v2, ispBase, intelHex
import serial
import threading
Expand Down
3 changes: 3 additions & 0 deletions plugins/USBPrinting/USBPrinterManager.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Signal import Signal, SignalEmitter
from . import PrinterConnection
from UM.Application import Application
Expand Down
3 changes: 3 additions & 0 deletions plugins/USBPrinting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from . import USBPrinterManager

from UM.i18n import i18nCatalog
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/AboutDialog.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/Actions.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1

Expand Down
3 changes: 3 additions & 0 deletions resources/qml/AddMachineWizard.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/Cura.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/EngineLog.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/SaveButton.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/Sidebar.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/SidebarAdvanced.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import UM 1.0 as UM

UM.SettingView { }
3 changes: 3 additions & 0 deletions resources/qml/SidebarHeader.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/SidebarSimple.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/SidebarTooltip.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/Toolbar.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/qml/ViewPage.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.1
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
Expand Down
3 changes: 3 additions & 0 deletions resources/themes/cura/styles.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.

import QtQuick 2.1
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from distutils.core import setup
import py2exe
import UM
Expand Down
3 changes: 3 additions & 0 deletions src/BuildVolume.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.View.Renderer import Renderer
from UM.Scene.SceneNode import SceneNode
from UM.Application import Application
Expand Down
3 changes: 3 additions & 0 deletions src/CameraAnimation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.


from PyQt5.QtCore import QVariantAnimation, QEasingCurve
from PyQt5.QtGui import QVector3D
Expand Down
3 changes: 3 additions & 0 deletions src/ConvexHullJob.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Job import Job
from UM.Application import Application
from UM.Math.Polygon import Polygon
Expand Down
3 changes: 3 additions & 0 deletions src/ConvexHullNode.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Scene.SceneNode import SceneNode
from UM.Resources import Resources
from UM.Math.Color import Color
Expand Down
3 changes: 3 additions & 0 deletions src/CuraApplication.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Qt.QtApplication import QtApplication
from UM.Scene.SceneNode import SceneNode
from UM.Scene.Camera import Camera
Expand Down
3 changes: 3 additions & 0 deletions src/PlatformPhysics.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from PyQt5.QtCore import QTimer

from UM.Scene.SceneNode import SceneNode
Expand Down
3 changes: 3 additions & 0 deletions src/PlatformPhysicsOperation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from UM.Operations.Operation import Operation
from UM.Operations.AddSceneNodeOperation import AddSceneNodeOperation
from UM.Operations.TranslateOperation import TranslateOperation
Expand Down
3 changes: 3 additions & 0 deletions src/PrintInformation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.

from PyQt5.QtCore import QObject, QDateTime, QTimer, pyqtSignal, pyqtSlot, pyqtProperty

from UM.Application import Application
Expand Down

0 comments on commit 9d7e460

Please sign in to comment.