Sat, 24 Mar 2018 12:54:28 +0200
Happy new year 2018
--- a/CMakeLists.txt Sat Mar 24 12:51:24 2018 +0200 +++ b/CMakeLists.txt Sat Mar 24 12:54:28 2018 +0200 @@ -148,6 +148,7 @@ src/editmodes/magicWandMode.h src/editmodes/rectangleMode.h src/editmodes/selectMode.h + src/generics/enums.h src/generics/functions.h src/generics/migrate.h src/generics/range.h
--- a/src/algorithms/geometry.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/algorithms/geometry.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,21 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + #include "geometry.h" /*
--- a/src/algorithms/geometry.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/algorithms/geometry.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,20 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ #pragma once #include "../main.h"
--- a/src/algorithms/invert.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/algorithms/invert.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/algorithms/invert.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/algorithms/invert.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/basics.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/basics.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/basics.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/basics.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/canvas.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/canvas.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/canvas.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/canvas.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/colors.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/colors.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/colors.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/colors.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/crashCatcher.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/crashCatcher.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/crashCatcher.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/crashCatcher.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/colorselector.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/colorselector.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/colorselector.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/colorselector.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/configdialog.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/configdialog.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/configdialog.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/configdialog.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/externalprogrampathdialog.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/externalprogrampathdialog.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/externalprogrampathdialog.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/externalprogrampathdialog.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/generateprimitivedialog.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/generateprimitivedialog.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/generateprimitivedialog.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/generateprimitivedialog.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/ldrawpathdialog.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/ldrawpathdialog.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/ldrawpathdialog.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/ldrawpathdialog.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/newpartdialog.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/newpartdialog.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/newpartdialog.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/newpartdialog.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/dialogs/subfilereferenceeditor.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/subfilereferenceeditor.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,21 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + #include "subfilereferenceeditor.h" #include "ui_subfilereferenceeditor.h" #include "../linetypes/modelobject.h"
--- a/src/dialogs/subfilereferenceeditor.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/dialogs/subfilereferenceeditor.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,21 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + #pragma once #include <QDialog> #include "../main.h"
--- a/src/documentmanager.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/documentmanager.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/documentmanager.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/documentmanager.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editHistory.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editHistory.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editHistory.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editHistory.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/abstractEditMode.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/abstractEditMode.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/abstractEditMode.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/abstractEditMode.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/circleMode.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/circleMode.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/circleMode.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/circleMode.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/curvemode.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/curvemode.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/curvemode.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/curvemode.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/drawMode.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/drawMode.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/drawMode.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/drawMode.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/linePathMode.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/linePathMode.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/linePathMode.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/linePathMode.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/magicWandMode.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/magicWandMode.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/magicWandMode.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/magicWandMode.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/rectangleMode.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/rectangleMode.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/rectangleMode.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/rectangleMode.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/selectMode.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/selectMode.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/editmodes/selectMode.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/editmodes/selectMode.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/format.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/format.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/generics/enums.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/generics/enums.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,21 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + #pragma once #include <type_traits>
--- a/src/generics/migrate.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/generics/migrate.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/generics/range.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/generics/range.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/generics/reverse.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/generics/reverse.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/generics/ring.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/generics/ring.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/generics/transform.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/generics/transform.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/geometry/linesegment.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/geometry/linesegment.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/geometry/linesegment.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/geometry/linesegment.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/glShared.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/glShared.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/glcamera.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/glcamera.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/glcamera.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/glcamera.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/glcompiler.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/glcompiler.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/glcompiler.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/glcompiler.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/glrenderer.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/glrenderer.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/glrenderer.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/glrenderer.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/grid.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/grid.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/grid.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/grid.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/guiutilities.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/guiutilities.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/guiutilities.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/guiutilities.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/headerhistorymodel.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/headerhistorymodel.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,21 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + #include "headerhistorymodel.h" #include "lddocument.h" #include "generics/migrate.h"
--- a/src/headerhistorymodel.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/headerhistorymodel.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,21 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + #pragma once #include <QAbstractTableModel>
--- a/src/hierarchyelement.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/hierarchyelement.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/hierarchyelement.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/hierarchyelement.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/lddocument.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/lddocument.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/lddocument.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/lddocument.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/ldobjectiterator.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/ldobjectiterator.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/librariesmodel.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/librariesmodel.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,21 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + #include "librariesmodel.h" #include "generics/migrate.h"
--- a/src/librariesmodel.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/librariesmodel.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,3 +1,21 @@ +/* + * LDForge: LDraw parts authoring CAD + * Copyright (C) 2013 - 2018 Teemu Piippo + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + #pragma once #include <QAbstractTableModel> #include "main.h"
--- a/src/linetypes/comment.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/comment.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/comment.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/comment.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/conditionaledge.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/conditionaledge.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/conditionaledge.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/conditionaledge.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/edgeline.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/edgeline.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/edgeline.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/edgeline.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/empty.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/empty.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/empty.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/empty.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/modelobject.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/modelobject.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/modelobject.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/modelobject.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/quadrilateral.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/quadrilateral.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/quadrilateral.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/quadrilateral.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/triangle.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/triangle.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/linetypes/triangle.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/linetypes/triangle.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/main.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/main.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/main.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/main.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/mainwindow.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/mainwindow.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/mainwindow.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/mainwindow.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/mathfunctions.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/mathfunctions.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/mathfunctions.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/mathfunctions.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/matrixinput.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/matrixinput.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/matrixinput.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/matrixinput.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/messageLog.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/messageLog.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/messageLog.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/messageLog.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/model.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/model.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/model.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/model.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/parser.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/parser.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/parser.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/parser.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/partdownloader.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/partdownloader.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/partdownloader.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/partdownloader.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/partdownloadrequest.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/partdownloadrequest.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/partdownloadrequest.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/partdownloadrequest.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/primitives.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/primitives.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/primitives.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/primitives.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/ringFinder.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/ringFinder.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/ringFinder.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/ringFinder.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/serializer.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/serializer.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/algorithmtoolset.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/algorithmtoolset.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/algorithmtoolset.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/algorithmtoolset.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/basictoolset.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/basictoolset.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/basictoolset.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/basictoolset.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/extprogramtoolset.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/extprogramtoolset.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/extprogramtoolset.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/extprogramtoolset.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/filetoolset.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/filetoolset.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/filetoolset.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/filetoolset.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/movetoolset.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/movetoolset.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/movetoolset.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/movetoolset.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/toolset.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/toolset.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/toolset.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/toolset.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/viewtoolset.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/viewtoolset.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/toolsets/viewtoolset.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/toolsets/viewtoolset.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/types/boundingbox.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/types/boundingbox.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/types/boundingbox.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/types/boundingbox.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/types/library.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/types/library.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/types/matrix.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/types/matrix.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/types/matrix.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/types/matrix.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/types/vertex.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/types/vertex.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright(C) 2013 - 2017 Teemu Piippo + * Copyright(C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/types/vertex.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/types/vertex.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/version.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/version.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/version.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/version.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/widgets/headeredit.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/widgets/headeredit.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/widgets/headeredit.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/widgets/headeredit.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/widgets/vertexobjecteditor.cpp Sat Mar 24 12:51:24 2018 +0200 +++ b/src/widgets/vertexobjecteditor.cpp Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
--- a/src/widgets/vertexobjecteditor.h Sat Mar 24 12:51:24 2018 +0200 +++ b/src/widgets/vertexobjecteditor.h Sat Mar 24 12:54:28 2018 +0200 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 - 2017 Teemu Piippo + * Copyright (C) 2013 - 2018 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by