diff --git a/BUILD.md b/BUILD.md new file mode 100644 index 000000000..7fcf29b02 --- /dev/null +++ b/BUILD.md @@ -0,0 +1,106 @@ +# Build Friction + +Generic instructions for building Friction on supported systems. + +## Requirements on Linux + +* pkg-config +* ninja +* python3 +* cmake *(3.12+)* +* clang *(7+)* +* Qt *(5.15.x)* + * Gui + * Widgets + * OpenGL + * Multimedia + * Qml + * Xml +* qscintilla +* ffmpeg *(4.2.x)* + * libavformat + * libavcodec + * libavutil + * libswscale + * libswresample +* libunwind +* expat +* harfbuzz +* freetype +* fontconfig +* libjpeg-turbo +* libpng +* libwebp +* zlib +* icu + +## Requirements on Windows + +* [Visual Studio 2017 Build Tools](https://aka.ms/vs/15/release/vs_buildtools.exe) +* `git` must be available in `PATH` +* `cmake` must be available in `PATH` +* `python3` must be available in `PATH` +* [LLVM](https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/LLVM-15.0.7-win64.exe) installed to default location +* Qt 5.15.14 libraries and headers in `friction\sdk` + * See [configure_qt5.bat](src/scripts/configure_qt5.bat) and [build_qt5.bat](src/scripts/build_qt5.bat) +* QScintilla 2.14.1 libraries and headers in `friction\sdk` + * See [build_qscintilla.bat](src/scripts/build_qscintilla.bat) +* FFmpeg 4.2.9 libraries and headers in `friction\sdk` + * See [build_mxe_ffmpeg.sh](src/scripts/build_mxe_ffmpeg.sh) and [mxe](https://github.com/friction2d/mxe) + +Binary SDK available [here](https://github.com/friction2d/friction-sdk/releases). + +## Get Source + +``` +git clone --recurse-submodules https://github.com/friction2d/friction +``` + +or + +``` +git clone --recurse-submodules https://codeberg.org/friction/friction +``` + +## Build on Linux + +``` +mkdir build +cd build +cmake -G Ninja \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DCMAKE_CXX_COMPILER=clang++ \ +-DCMAKE_C_COMPILER=clang \ +.. +``` +Note that on some configurations you may need to specify `qscintilla` paths: +``` +-DQSCINTILLA_INCLUDE_DIRS= \ +-DQSCINTILLA_LIBRARIES_DIRS= \ +-DQSCINTILLA_LIBRARIES= \ +``` + +Now build: + +``` +cmake --build . --config Release +``` + +## Build on Windows + +All requirements must be installed in the correct folders, this is an example and should be adjusted to fit your environment. + +``` +call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" + +set SDK_DIR=%cd%\sdk +set PATH=C:\Python;%ProgramFiles%\CMake\bin;%ProgramFiles%\Git\bin;%SDK_DIR%\bin;%PATH% + +mkdir build +cd build + +cmake -G "Visual Studio 15 2017" -A x64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=%SDK_DIR% .. + +cmake --build . --config Release +``` diff --git a/CMakeLists.txt b/CMakeLists.txt index 05d6cd95b..ea056830a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/README.md b/README.md index 722e4733c..281c109c9 100644 --- a/README.md +++ b/README.md @@ -28,117 +28,12 @@ A new stable branch is cut from `main` on each `X` or `Y` release and is maintai Important fixes added to `main` will be backported to active stable branches when possible (and within reason). -## Build - -Generic build instructions. - -### Requirements on Linux - -* pkg-config -* ninja -* python3 -* cmake *(3.12+)* -* clang *(7+)* -* Qt *(5.15.x)* - * Gui - * Widgets - * OpenGL - * Multimedia - * Qml - * Xml -* qscintilla -* ffmpeg *(4.2.x)* - * libavformat - * libavcodec - * libavutil - * libswscale - * libswresample -* libunwind -* expat -* harfbuzz -* freetype -* fontconfig -* libjpeg-turbo -* libpng -* libwebp -* zlib -* icu - -### Requirements on Windows - -* [Visual Studio 2017 Build Tools](https://aka.ms/vs/15/release/vs_buildtools.exe) -* `git` must be available in `PATH` -* `cmake` must be available in `PATH` -* `python3` must be available in `PATH` -* [LLVM](https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/LLVM-15.0.7-win64.exe) installed to default location -* Qt 5.15.14 libraries and headers in `friction\sdk` - * See [configure_qt5.bat](src/scripts/configure_qt5.bat) and [build_qt5.bat](src/scripts/build_qt5.bat) -* QScintilla 2.14.1 libraries and headers in `friction\sdk` - * See [build_qscintilla.bat](src/scripts/build_qscintilla.bat) -* FFmpeg 4.2.9 libraries and headers in `friction\sdk` - * See [build_mxe_ffmpeg.sh](src/scripts/build_mxe_ffmpeg.sh) and [mxe](https://github.com/friction2d/mxe) - -Binary SDK available [here](https://github.com/friction2d/friction-sdk/releases). - -### Get Source - -``` -git clone --recurse-submodules https://github.com/friction2d/friction -``` - -or - -``` -git clone --recurse-submodules https://codeberg.org/friction/friction -``` - -### Build on Linux - -``` -mkdir build -cd build -cmake -G Ninja \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_PREFIX=/usr \ --DCMAKE_CXX_COMPILER=clang++ \ --DCMAKE_C_COMPILER=clang \ -.. -``` -Note that on some configurations you may need to specify `qscintilla` paths: -``` --DQSCINTILLA_INCLUDE_DIRS= \ --DQSCINTILLA_LIBRARIES_DIRS= \ --DQSCINTILLA_LIBRARIES= \ -``` - -Now build: - -``` -cmake --build . --config Release -``` - -### Build on Windows - -All requirements must be installed in the correct folders, this is an example and should be adjusted to fit your environment. - -``` -call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" - -set SDK_DIR=%cd%\sdk -set PATH=C:\Python;%ProgramFiles%\CMake\bin;%ProgramFiles%\Git\bin;%SDK_DIR%\bin;%PATH% - -mkdir build -cd build - -cmake -G "Visual Studio 15 2017" -A x64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=%SDK_DIR% .. - -cmake --build . --config Release -``` - ## License -Copyright © Friction contributors. +Friction is copyright © Ole-André Rodlie and contributors. 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](LICENSE.md) for more details.** + +Friction is based on [enve](https://github.com/MaurycyLiebner/enve) - Copyright © Maurycy Liebner and contributors. diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt index 639ec338b..1c8ae10c4 100644 --- a/src/app/CMakeLists.txt +++ b/src/app/CMakeLists.txt @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boolpropertywidget.cpp b/src/app/GUI/BoxesList/boolpropertywidget.cpp index 330c15ff0..69d2f9b1b 100644 --- a/src/app/GUI/BoxesList/boolpropertywidget.cpp +++ b/src/app/GUI/BoxesList/boolpropertywidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boolpropertywidget.h b/src/app/GUI/BoxesList/boolpropertywidget.h index c1cd65218..9961084c1 100644 --- a/src/app/GUI/BoxesList/boolpropertywidget.h +++ b/src/app/GUI/BoxesList/boolpropertywidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxscrollarea.cpp b/src/app/GUI/BoxesList/boxscrollarea.cpp index c5c1cebca..a26072480 100644 --- a/src/app/GUI/BoxesList/boxscrollarea.cpp +++ b/src/app/GUI/BoxesList/boxscrollarea.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxscrollarea.h b/src/app/GUI/BoxesList/boxscrollarea.h index d8ff78acd..0c64b3ee1 100644 --- a/src/app/GUI/BoxesList/boxscrollarea.h +++ b/src/app/GUI/BoxesList/boxscrollarea.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxscroller.cpp b/src/app/GUI/BoxesList/boxscroller.cpp index 3df83be2e..931046cf0 100644 --- a/src/app/GUI/BoxesList/boxscroller.cpp +++ b/src/app/GUI/BoxesList/boxscroller.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxscroller.h b/src/app/GUI/BoxesList/boxscroller.h index a67d9efb7..4e92a0888 100644 --- a/src/app/GUI/BoxesList/boxscroller.h +++ b/src/app/GUI/BoxesList/boxscroller.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxscrollwidget.cpp b/src/app/GUI/BoxesList/boxscrollwidget.cpp index cbeee5e54..a7c295499 100644 --- a/src/app/GUI/BoxesList/boxscrollwidget.cpp +++ b/src/app/GUI/BoxesList/boxscrollwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxscrollwidget.h b/src/app/GUI/BoxesList/boxscrollwidget.h index 13148699a..cf4ed7f95 100644 --- a/src/app/GUI/BoxesList/boxscrollwidget.h +++ b/src/app/GUI/BoxesList/boxscrollwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxsinglewidget.cpp b/src/app/GUI/BoxesList/boxsinglewidget.cpp index 74a06b255..90490ef9a 100644 --- a/src/app/GUI/BoxesList/boxsinglewidget.cpp +++ b/src/app/GUI/BoxesList/boxsinglewidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxsinglewidget.h b/src/app/GUI/BoxesList/boxsinglewidget.h index 0989a5b31..ae411ed21 100644 --- a/src/app/GUI/BoxesList/boxsinglewidget.h +++ b/src/app/GUI/BoxesList/boxsinglewidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxtargetwidget.cpp b/src/app/GUI/BoxesList/boxtargetwidget.cpp index b913ae698..0387508bb 100644 --- a/src/app/GUI/BoxesList/boxtargetwidget.cpp +++ b/src/app/GUI/BoxesList/boxtargetwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/BoxesList/boxtargetwidget.h b/src/app/GUI/BoxesList/boxtargetwidget.h index 2203e4ef4..0d4520ce6 100644 --- a/src/app/GUI/BoxesList/boxtargetwidget.h +++ b/src/app/GUI/BoxesList/boxtargetwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Dialogs/animationtopaintdialog.cpp b/src/app/GUI/Dialogs/animationtopaintdialog.cpp index c622d42c3..847fa1e41 100644 --- a/src/app/GUI/Dialogs/animationtopaintdialog.cpp +++ b/src/app/GUI/Dialogs/animationtopaintdialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Dialogs/animationtopaintdialog.h b/src/app/GUI/Dialogs/animationtopaintdialog.h index 4b0285924..dcb5ff160 100644 --- a/src/app/GUI/Dialogs/animationtopaintdialog.h +++ b/src/app/GUI/Dialogs/animationtopaintdialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Dialogs/dialogsinterfaceimpl.cpp b/src/app/GUI/Dialogs/dialogsinterfaceimpl.cpp index a0e9ad425..ae8befc68 100644 --- a/src/app/GUI/Dialogs/dialogsinterfaceimpl.cpp +++ b/src/app/GUI/Dialogs/dialogsinterfaceimpl.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Dialogs/dialogsinterfaceimpl.h b/src/app/GUI/Dialogs/dialogsinterfaceimpl.h index f8eedbd77..42090a41f 100644 --- a/src/app/GUI/Dialogs/dialogsinterfaceimpl.h +++ b/src/app/GUI/Dialogs/dialogsinterfaceimpl.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Expressions/expressiondialog.cpp b/src/app/GUI/Expressions/expressiondialog.cpp index d6b62ea45..e9c866023 100644 --- a/src/app/GUI/Expressions/expressiondialog.cpp +++ b/src/app/GUI/Expressions/expressiondialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Expressions/expressiondialog.h b/src/app/GUI/Expressions/expressiondialog.h index 9a7ea21fd..685237c86 100644 --- a/src/app/GUI/Expressions/expressiondialog.h +++ b/src/app/GUI/Expressions/expressiondialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Expressions/expressioneditor.cpp b/src/app/GUI/Expressions/expressioneditor.cpp index 197ec5f7b..09b541a9b 100644 --- a/src/app/GUI/Expressions/expressioneditor.cpp +++ b/src/app/GUI/Expressions/expressioneditor.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Expressions/expressioneditor.h b/src/app/GUI/Expressions/expressioneditor.h index bf2844bfc..e275e9373 100644 --- a/src/app/GUI/Expressions/expressioneditor.h +++ b/src/app/GUI/Expressions/expressioneditor.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Expressions/expressionhighlighter.cpp b/src/app/GUI/Expressions/expressionhighlighter.cpp index 577e1336c..da84463a2 100644 --- a/src/app/GUI/Expressions/expressionhighlighter.cpp +++ b/src/app/GUI/Expressions/expressionhighlighter.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Expressions/expressionhighlighter.h b/src/app/GUI/Expressions/expressionhighlighter.h index 9f20f6ce7..fb7052bf9 100644 --- a/src/app/GUI/Expressions/expressionhighlighter.h +++ b/src/app/GUI/Expressions/expressionhighlighter.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/closablecontainer.cpp b/src/app/GUI/RenderWidgets/closablecontainer.cpp index 75019975c..35ecb91b7 100644 --- a/src/app/GUI/RenderWidgets/closablecontainer.cpp +++ b/src/app/GUI/RenderWidgets/closablecontainer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/closablecontainer.h b/src/app/GUI/RenderWidgets/closablecontainer.h index 393fefb28..75ce3eeac 100644 --- a/src/app/GUI/RenderWidgets/closablecontainer.h +++ b/src/app/GUI/RenderWidgets/closablecontainer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/outputsettingsdialog.cpp b/src/app/GUI/RenderWidgets/outputsettingsdialog.cpp index 622ec52d4..1edcbb23e 100644 --- a/src/app/GUI/RenderWidgets/outputsettingsdialog.cpp +++ b/src/app/GUI/RenderWidgets/outputsettingsdialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/outputsettingsdialog.h b/src/app/GUI/RenderWidgets/outputsettingsdialog.h index 5251f98e6..59994b7c5 100644 --- a/src/app/GUI/RenderWidgets/outputsettingsdialog.h +++ b/src/app/GUI/RenderWidgets/outputsettingsdialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/outputsettingsdisplaywidget.cpp b/src/app/GUI/RenderWidgets/outputsettingsdisplaywidget.cpp index 87cc0979f..c459beda6 100644 --- a/src/app/GUI/RenderWidgets/outputsettingsdisplaywidget.cpp +++ b/src/app/GUI/RenderWidgets/outputsettingsdisplaywidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/outputsettingsdisplaywidget.h b/src/app/GUI/RenderWidgets/outputsettingsdisplaywidget.h index 7d6020353..51843f0c8 100644 --- a/src/app/GUI/RenderWidgets/outputsettingsdisplaywidget.h +++ b/src/app/GUI/RenderWidgets/outputsettingsdisplaywidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/outputsettingsprofilesdialog.cpp b/src/app/GUI/RenderWidgets/outputsettingsprofilesdialog.cpp index c82454888..2e8a55b24 100644 --- a/src/app/GUI/RenderWidgets/outputsettingsprofilesdialog.cpp +++ b/src/app/GUI/RenderWidgets/outputsettingsprofilesdialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/outputsettingsprofilesdialog.h b/src/app/GUI/RenderWidgets/outputsettingsprofilesdialog.h index 07bbe8663..12fba6d3c 100644 --- a/src/app/GUI/RenderWidgets/outputsettingsprofilesdialog.h +++ b/src/app/GUI/RenderWidgets/outputsettingsprofilesdialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/renderinstancewidget.cpp b/src/app/GUI/RenderWidgets/renderinstancewidget.cpp index 8331cbdbc..8745b420a 100644 --- a/src/app/GUI/RenderWidgets/renderinstancewidget.cpp +++ b/src/app/GUI/RenderWidgets/renderinstancewidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/renderinstancewidget.h b/src/app/GUI/RenderWidgets/renderinstancewidget.h index 762d93be8..ef467cb0e 100644 --- a/src/app/GUI/RenderWidgets/renderinstancewidget.h +++ b/src/app/GUI/RenderWidgets/renderinstancewidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/renderwidget.cpp b/src/app/GUI/RenderWidgets/renderwidget.cpp index be6e29315..19f856721 100644 --- a/src/app/GUI/RenderWidgets/renderwidget.cpp +++ b/src/app/GUI/RenderWidgets/renderwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/RenderWidgets/renderwidget.h b/src/app/GUI/RenderWidgets/renderwidget.h index 36708fbf6..1927fe9c8 100644 --- a/src/app/GUI/RenderWidgets/renderwidget.h +++ b/src/app/GUI/RenderWidgets/renderwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Settings/generalsettingswidget.cpp b/src/app/GUI/Settings/generalsettingswidget.cpp index 5b72f9f1f..c3c731eac 100644 --- a/src/app/GUI/Settings/generalsettingswidget.cpp +++ b/src/app/GUI/Settings/generalsettingswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Settings/generalsettingswidget.h b/src/app/GUI/Settings/generalsettingswidget.h index a5f36b30f..0ef0109d8 100644 --- a/src/app/GUI/Settings/generalsettingswidget.h +++ b/src/app/GUI/Settings/generalsettingswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Settings/pluginssettingswidget.cpp b/src/app/GUI/Settings/pluginssettingswidget.cpp index b31c7f331..b907ba2df 100644 --- a/src/app/GUI/Settings/pluginssettingswidget.cpp +++ b/src/app/GUI/Settings/pluginssettingswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Settings/pluginssettingswidget.h b/src/app/GUI/Settings/pluginssettingswidget.h index 871654500..f5b5661db 100644 --- a/src/app/GUI/Settings/pluginssettingswidget.h +++ b/src/app/GUI/Settings/pluginssettingswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Settings/timelinesettingswidget.cpp b/src/app/GUI/Settings/timelinesettingswidget.cpp index 5f01cde96..a50140a6d 100644 --- a/src/app/GUI/Settings/timelinesettingswidget.cpp +++ b/src/app/GUI/Settings/timelinesettingswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/Settings/timelinesettingswidget.h b/src/app/GUI/Settings/timelinesettingswidget.h index df939c5ee..995115ccd 100644 --- a/src/app/GUI/Settings/timelinesettingswidget.h +++ b/src/app/GUI/Settings/timelinesettingswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/animationdockwidget.cpp b/src/app/GUI/animationdockwidget.cpp index 18ed379a0..a3d1dc160 100644 --- a/src/app/GUI/animationdockwidget.cpp +++ b/src/app/GUI/animationdockwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/animationdockwidget.h b/src/app/GUI/animationdockwidget.h index 390618dd5..dad70b025 100644 --- a/src/app/GUI/animationdockwidget.h +++ b/src/app/GUI/animationdockwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/canvasbasewrappernode.cpp b/src/app/GUI/canvasbasewrappernode.cpp index 445599368..f9efc71f3 100644 --- a/src/app/GUI/canvasbasewrappernode.cpp +++ b/src/app/GUI/canvasbasewrappernode.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/canvasbasewrappernode.h b/src/app/GUI/canvasbasewrappernode.h index 99da5ebba..e3fedccd0 100644 --- a/src/app/GUI/canvasbasewrappernode.h +++ b/src/app/GUI/canvasbasewrappernode.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/canvaswindow.cpp b/src/app/GUI/canvaswindow.cpp index eb23e0251..1a90a57d1 100644 --- a/src/app/GUI/canvaswindow.cpp +++ b/src/app/GUI/canvaswindow.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/canvaswindow.h b/src/app/GUI/canvaswindow.h index 1db4c7433..ec686339f 100644 --- a/src/app/GUI/canvaswindow.h +++ b/src/app/GUI/canvaswindow.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/canvaswindowevents.cpp b/src/app/GUI/canvaswindowevents.cpp index 0c8b1d872..daddb35b2 100644 --- a/src/app/GUI/canvaswindowevents.cpp +++ b/src/app/GUI/canvaswindowevents.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/canvaswrappernode.cpp b/src/app/GUI/canvaswrappernode.cpp index 378d023aa..eed31bd48 100644 --- a/src/app/GUI/canvaswrappernode.cpp +++ b/src/app/GUI/canvaswrappernode.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/canvaswrappernode.h b/src/app/GUI/canvaswrappernode.h index eb272e6ae..8995e30c5 100644 --- a/src/app/GUI/canvaswrappernode.h +++ b/src/app/GUI/canvaswrappernode.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/effectactions.cpp b/src/app/GUI/effectactions.cpp index 723059983..00365eef7 100644 --- a/src/app/GUI/effectactions.cpp +++ b/src/app/GUI/effectactions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/ekeyfilter.cpp b/src/app/GUI/ekeyfilter.cpp index 96346a031..975e5b51b 100644 --- a/src/app/GUI/ekeyfilter.cpp +++ b/src/app/GUI/ekeyfilter.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/ekeyfilter.h b/src/app/GUI/ekeyfilter.h index 13b232300..6192ab3b6 100644 --- a/src/app/GUI/ekeyfilter.h +++ b/src/app/GUI/ekeyfilter.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/ewidgetsimpl.cpp b/src/app/GUI/ewidgetsimpl.cpp index eec5e48c6..a12b293f0 100644 --- a/src/app/GUI/ewidgetsimpl.cpp +++ b/src/app/GUI/ewidgetsimpl.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/ewidgetsimpl.h b/src/app/GUI/ewidgetsimpl.h index 7019e91ee..2c7cd5ba9 100644 --- a/src/app/GUI/ewidgetsimpl.h +++ b/src/app/GUI/ewidgetsimpl.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/extraactions.cpp b/src/app/GUI/extraactions.cpp index 3d5972608..1aa86d928 100644 --- a/src/app/GUI/extraactions.cpp +++ b/src/app/GUI/extraactions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/graphboxeslist.cpp b/src/app/GUI/graphboxeslist.cpp index 599290984..f4444899c 100644 --- a/src/app/GUI/graphboxeslist.cpp +++ b/src/app/GUI/graphboxeslist.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/keysview.cpp b/src/app/GUI/keysview.cpp index df5c89515..fa82fb867 100644 --- a/src/app/GUI/keysview.cpp +++ b/src/app/GUI/keysview.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/keysview.h b/src/app/GUI/keysview.h index eb4f54496..d5429beaa 100644 --- a/src/app/GUI/keysview.h +++ b/src/app/GUI/keysview.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/layouthandler.cpp b/src/app/GUI/layouthandler.cpp index ba7aa9b92..15071ec66 100644 --- a/src/app/GUI/layouthandler.cpp +++ b/src/app/GUI/layouthandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/layouthandler.h b/src/app/GUI/layouthandler.h index ba8f67c54..08effbaed 100644 --- a/src/app/GUI/layouthandler.h +++ b/src/app/GUI/layouthandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/mainwindow.cpp b/src/app/GUI/mainwindow.cpp index 8e9e80ebd..5ff8a376c 100644 --- a/src/app/GUI/mainwindow.cpp +++ b/src/app/GUI/mainwindow.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/mainwindow.h b/src/app/GUI/mainwindow.h index 55b29df9e..9f2e5572d 100644 --- a/src/app/GUI/mainwindow.h +++ b/src/app/GUI/mainwindow.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinebasewrappernode.cpp b/src/app/GUI/timelinebasewrappernode.cpp index 323d9026b..85c3efd3f 100644 --- a/src/app/GUI/timelinebasewrappernode.cpp +++ b/src/app/GUI/timelinebasewrappernode.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinebasewrappernode.h b/src/app/GUI/timelinebasewrappernode.h index 6baf8d325..951f1521f 100644 --- a/src/app/GUI/timelinebasewrappernode.h +++ b/src/app/GUI/timelinebasewrappernode.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinedockwidget.cpp b/src/app/GUI/timelinedockwidget.cpp index 1bb18a498..3ef4d14f4 100644 --- a/src/app/GUI/timelinedockwidget.cpp +++ b/src/app/GUI/timelinedockwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinedockwidget.h b/src/app/GUI/timelinedockwidget.h index bb7334363..1fed2e4ee 100644 --- a/src/app/GUI/timelinedockwidget.h +++ b/src/app/GUI/timelinedockwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinehighlightwidget.cpp b/src/app/GUI/timelinehighlightwidget.cpp index 5e4c576d7..631f4d38b 100644 --- a/src/app/GUI/timelinehighlightwidget.cpp +++ b/src/app/GUI/timelinehighlightwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinehighlightwidget.h b/src/app/GUI/timelinehighlightwidget.h index fed632d62..d5a5e7d77 100644 --- a/src/app/GUI/timelinehighlightwidget.h +++ b/src/app/GUI/timelinehighlightwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinewidget.cpp b/src/app/GUI/timelinewidget.cpp index eeeeddca4..b3fa2ab3f 100644 --- a/src/app/GUI/timelinewidget.cpp +++ b/src/app/GUI/timelinewidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinewidget.h b/src/app/GUI/timelinewidget.h index b4671a919..888b38ab2 100644 --- a/src/app/GUI/timelinewidget.h +++ b/src/app/GUI/timelinewidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinewrappernode.cpp b/src/app/GUI/timelinewrappernode.cpp index e0c4867d5..2c497eb0d 100644 --- a/src/app/GUI/timelinewrappernode.cpp +++ b/src/app/GUI/timelinewrappernode.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/timelinewrappernode.h b/src/app/GUI/timelinewrappernode.h index dddbcb7ac..d019684af 100644 --- a/src/app/GUI/timelinewrappernode.h +++ b/src/app/GUI/timelinewrappernode.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/toolbox.cpp b/src/app/GUI/toolbox.cpp index 573d7e7c7..dd0ca28de 100644 --- a/src/app/GUI/toolbox.cpp +++ b/src/app/GUI/toolbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/window.cpp b/src/app/GUI/window.cpp index 98eafe95a..601cbdfbe 100644 --- a/src/app/GUI/window.cpp +++ b/src/app/GUI/window.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/GUI/window.h b/src/app/GUI/window.h index aa9aea72c..f091e4d8b 100644 --- a/src/app/GUI/window.h +++ b/src/app/GUI/window.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/effectsloader.cpp b/src/app/effectsloader.cpp index 65ca0a5a1..c51454b59 100644 --- a/src/app/effectsloader.cpp +++ b/src/app/effectsloader.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/effectsloader.h b/src/app/effectsloader.h index 78748e4ef..f4cac963e 100644 --- a/src/app/effectsloader.h +++ b/src/app/effectsloader.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/eimporters.cpp b/src/app/eimporters.cpp index 22b858776..6a2bf2c18 100644 --- a/src/app/eimporters.cpp +++ b/src/app/eimporters.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/eimporters.h b/src/app/eimporters.h index 97d8d102d..86e7297de 100644 --- a/src/app/eimporters.h +++ b/src/app/eimporters.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/evfileio.cpp b/src/app/evfileio.cpp index de374124d..344259a6a 100644 --- a/src/app/evfileio.cpp +++ b/src/app/evfileio.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/friction.qss b/src/app/friction.qss index 30a6d3b82..57967bf15 100644 --- a/src/app/friction.qss +++ b/src/app/friction.qss @@ -1,7 +1,7 @@ /* # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/memorychecker.cpp b/src/app/memorychecker.cpp index 1bf5c0d56..fb8bfb8bd 100644 --- a/src/app/memorychecker.cpp +++ b/src/app/memorychecker.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/memorychecker.h b/src/app/memorychecker.h index 867f64c32..ecb950d92 100644 --- a/src/app/memorychecker.h +++ b/src/app/memorychecker.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/memoryhandler.cpp b/src/app/memoryhandler.cpp index 56a233eb0..9499d531f 100644 --- a/src/app/memoryhandler.cpp +++ b/src/app/memoryhandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/memoryhandler.h b/src/app/memoryhandler.h index 889405df7..23d3c187f 100644 --- a/src/app/memoryhandler.h +++ b/src/app/memoryhandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/renderhandler.cpp b/src/app/renderhandler.cpp index 1f4beb806..840d88e27 100644 --- a/src/app/renderhandler.cpp +++ b/src/app/renderhandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/app/renderhandler.h b/src/app/renderhandler.h index 488868c6c..e784b011e 100644 --- a/src/app/renderhandler.h +++ b/src/app/renderhandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/cmake/friction-common.cmake b/src/cmake/friction-common.cmake index 897f785e2..3acf0cee7 100644 --- a/src/cmake/friction-common.cmake +++ b/src/cmake/friction-common.cmake @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/cmake/friction-ffmpeg.cmake b/src/cmake/friction-ffmpeg.cmake index 0fbeae99c..5c75f9ec3 100644 --- a/src/cmake/friction-ffmpeg.cmake +++ b/src/cmake/friction-ffmpeg.cmake @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/cmake/friction-meta.cmake b/src/cmake/friction-meta.cmake index a0ca780ec..ef8401a05 100644 --- a/src/cmake/friction-meta.cmake +++ b/src/cmake/friction-meta.cmake @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/cmake/friction-quazip.cmake b/src/cmake/friction-quazip.cmake index c78547f9b..4788f9e2e 100644 --- a/src/cmake/friction-quazip.cmake +++ b/src/cmake/friction-quazip.cmake @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/cmake/friction-version.cmake b/src/cmake/friction-version.cmake index b51454fd8..ca3d21ba8 100644 --- a/src/cmake/friction-version.cmake +++ b/src/cmake/friction-version.cmake @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/listofnodes.cpp b/src/core/Animators/SmartPath/listofnodes.cpp index c1df0b4bd..9a6d6d559 100644 --- a/src/core/Animators/SmartPath/listofnodes.cpp +++ b/src/core/Animators/SmartPath/listofnodes.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/listofnodes.h b/src/core/Animators/SmartPath/listofnodes.h index 29f8dc0fa..63497908a 100644 --- a/src/core/Animators/SmartPath/listofnodes.h +++ b/src/core/Animators/SmartPath/listofnodes.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/node.cpp b/src/core/Animators/SmartPath/node.cpp index 0b528ecca..f3fb8663e 100644 --- a/src/core/Animators/SmartPath/node.cpp +++ b/src/core/Animators/SmartPath/node.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/node.h b/src/core/Animators/SmartPath/node.h index 453511b8e..35b70d57c 100644 --- a/src/core/Animators/SmartPath/node.h +++ b/src/core/Animators/SmartPath/node.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/nodelist.cpp b/src/core/Animators/SmartPath/nodelist.cpp index 62d7b945a..922a1bb8e 100644 --- a/src/core/Animators/SmartPath/nodelist.cpp +++ b/src/core/Animators/SmartPath/nodelist.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/nodelist.h b/src/core/Animators/SmartPath/nodelist.h index 9575176c6..fda020fb8 100644 --- a/src/core/Animators/SmartPath/nodelist.h +++ b/src/core/Animators/SmartPath/nodelist.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/smartpath.cpp b/src/core/Animators/SmartPath/smartpath.cpp index 4988dd2b2..b7545853a 100644 --- a/src/core/Animators/SmartPath/smartpath.cpp +++ b/src/core/Animators/SmartPath/smartpath.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/smartpath.h b/src/core/Animators/SmartPath/smartpath.h index 3978d07de..09250ecb2 100644 --- a/src/core/Animators/SmartPath/smartpath.h +++ b/src/core/Animators/SmartPath/smartpath.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/smartpathanimator.cpp b/src/core/Animators/SmartPath/smartpathanimator.cpp index 0c4ac9666..9a03cbf5e 100644 --- a/src/core/Animators/SmartPath/smartpathanimator.cpp +++ b/src/core/Animators/SmartPath/smartpathanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/smartpathanimator.h b/src/core/Animators/SmartPath/smartpathanimator.h index b0d0da3a2..bcfdd22a0 100644 --- a/src/core/Animators/SmartPath/smartpathanimator.h +++ b/src/core/Animators/SmartPath/smartpathanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/smartpathanimatoractions.cpp b/src/core/Animators/SmartPath/smartpathanimatoractions.cpp index b550f8f80..c5e89b589 100644 --- a/src/core/Animators/SmartPath/smartpathanimatoractions.cpp +++ b/src/core/Animators/SmartPath/smartpathanimatoractions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/smartpathcollection.cpp b/src/core/Animators/SmartPath/smartpathcollection.cpp index dd5c2f72f..dd20617ec 100644 --- a/src/core/Animators/SmartPath/smartpathcollection.cpp +++ b/src/core/Animators/SmartPath/smartpathcollection.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/SmartPath/smartpathcollection.h b/src/core/Animators/SmartPath/smartpathcollection.h index 9c8b59c10..4afbf2aa2 100644 --- a/src/core/Animators/SmartPath/smartpathcollection.h +++ b/src/core/Animators/SmartPath/smartpathcollection.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/animator.cpp b/src/core/Animators/animator.cpp index 57a1e1fe4..44d0070f0 100644 --- a/src/core/Animators/animator.cpp +++ b/src/core/Animators/animator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/animator.h b/src/core/Animators/animator.h index fab335cae..a69fa0075 100644 --- a/src/core/Animators/animator.h +++ b/src/core/Animators/animator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/animatort.cpp b/src/core/Animators/animatort.cpp index 2457f2535..2e0c4a4c8 100644 --- a/src/core/Animators/animatort.cpp +++ b/src/core/Animators/animatort.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/animatort.h b/src/core/Animators/animatort.h index 606b7b542..dfb2f28e9 100644 --- a/src/core/Animators/animatort.h +++ b/src/core/Animators/animatort.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/basedanimatort.cpp b/src/core/Animators/basedanimatort.cpp index 2b7b0ee53..57978305f 100644 --- a/src/core/Animators/basedanimatort.cpp +++ b/src/core/Animators/basedanimatort.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/basedanimatort.h b/src/core/Animators/basedanimatort.h index 462bc9c0d..3031f2b2a 100644 --- a/src/core/Animators/basedanimatort.h +++ b/src/core/Animators/basedanimatort.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/basedkeyt.cpp b/src/core/Animators/basedkeyt.cpp index 2692a5a2f..6d30e5c19 100644 --- a/src/core/Animators/basedkeyt.cpp +++ b/src/core/Animators/basedkeyt.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/basedkeyt.h b/src/core/Animators/basedkeyt.h index 749255019..5dbb19060 100644 --- a/src/core/Animators/basedkeyt.h +++ b/src/core/Animators/basedkeyt.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/boolanimator.cpp b/src/core/Animators/boolanimator.cpp index a0f2712dc..370eb04c7 100644 --- a/src/core/Animators/boolanimator.cpp +++ b/src/core/Animators/boolanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/boolanimator.h b/src/core/Animators/boolanimator.h index 0d316a326..e84fd5930 100644 --- a/src/core/Animators/boolanimator.h +++ b/src/core/Animators/boolanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/brushsettingsanimator.cpp b/src/core/Animators/brushsettingsanimator.cpp index 6f3742177..1c8beecdb 100644 --- a/src/core/Animators/brushsettingsanimator.cpp +++ b/src/core/Animators/brushsettingsanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/brushsettingsanimator.h b/src/core/Animators/brushsettingsanimator.h index 70a7268ed..435f4118d 100644 --- a/src/core/Animators/brushsettingsanimator.h +++ b/src/core/Animators/brushsettingsanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/clampedpoint.cpp b/src/core/Animators/clampedpoint.cpp index e5ddc1ed1..cead39539 100644 --- a/src/core/Animators/clampedpoint.cpp +++ b/src/core/Animators/clampedpoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/clampedpoint.h b/src/core/Animators/clampedpoint.h index 1b7f42f47..a9c70a2c5 100644 --- a/src/core/Animators/clampedpoint.h +++ b/src/core/Animators/clampedpoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/clampedvalue.cpp b/src/core/Animators/clampedvalue.cpp index 98ed261d8..eac20fa50 100644 --- a/src/core/Animators/clampedvalue.cpp +++ b/src/core/Animators/clampedvalue.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/clampedvalue.h b/src/core/Animators/clampedvalue.h index 14a029ee0..8e60b0fd0 100644 --- a/src/core/Animators/clampedvalue.h +++ b/src/core/Animators/clampedvalue.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/coloranimator.cpp b/src/core/Animators/coloranimator.cpp index c2ad8b505..1a9865456 100644 --- a/src/core/Animators/coloranimator.cpp +++ b/src/core/Animators/coloranimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/coloranimator.h b/src/core/Animators/coloranimator.h index 1c7cacd9c..d86fd3f86 100644 --- a/src/core/Animators/coloranimator.h +++ b/src/core/Animators/coloranimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/complexanimator.cpp b/src/core/Animators/complexanimator.cpp index 83c9eb7d8..b3136afc1 100644 --- a/src/core/Animators/complexanimator.cpp +++ b/src/core/Animators/complexanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/complexanimator.h b/src/core/Animators/complexanimator.h index 978c39e20..941172f25 100644 --- a/src/core/Animators/complexanimator.h +++ b/src/core/Animators/complexanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/complexkey.cpp b/src/core/Animators/complexkey.cpp index 5bb3e2dc8..bda89133e 100644 --- a/src/core/Animators/complexkey.cpp +++ b/src/core/Animators/complexkey.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/complexkey.h b/src/core/Animators/complexkey.h index 1445a2e40..23b0f636d 100644 --- a/src/core/Animators/complexkey.h +++ b/src/core/Animators/complexkey.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/customproperties.cpp b/src/core/Animators/customproperties.cpp index 1271fb38f..5e7209360 100644 --- a/src/core/Animators/customproperties.cpp +++ b/src/core/Animators/customproperties.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/customproperties.h b/src/core/Animators/customproperties.h index 813242e3a..ef31bb5c6 100644 --- a/src/core/Animators/customproperties.h +++ b/src/core/Animators/customproperties.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/dynamiccomplexanimator.h b/src/core/Animators/dynamiccomplexanimator.h index 00171be61..d67a72007 100644 --- a/src/core/Animators/dynamiccomplexanimator.h +++ b/src/core/Animators/dynamiccomplexanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/eboxorsound.cpp b/src/core/Animators/eboxorsound.cpp index c1d5fbeaf..c8bb3be7b 100644 --- a/src/core/Animators/eboxorsound.cpp +++ b/src/core/Animators/eboxorsound.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/eboxorsound.h b/src/core/Animators/eboxorsound.h index 823a331be..42b371bf5 100644 --- a/src/core/Animators/eboxorsound.h +++ b/src/core/Animators/eboxorsound.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/eeffect.cpp b/src/core/Animators/eeffect.cpp index ae03612f3..bd3ef39d1 100644 --- a/src/core/Animators/eeffect.cpp +++ b/src/core/Animators/eeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/eeffect.h b/src/core/Animators/eeffect.h index aa075ef6c..5ffb0179d 100644 --- a/src/core/Animators/eeffect.h +++ b/src/core/Animators/eeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/gradient.cpp b/src/core/Animators/gradient.cpp index 3b7e874db..e404dd82f 100644 --- a/src/core/Animators/gradient.cpp +++ b/src/core/Animators/gradient.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/gradient.h b/src/core/Animators/gradient.h index 339ef95c3..f9fa37027 100644 --- a/src/core/Animators/gradient.h +++ b/src/core/Animators/gradient.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/gradientpoints.cpp b/src/core/Animators/gradientpoints.cpp index 4ce61d884..449a60574 100644 --- a/src/core/Animators/gradientpoints.cpp +++ b/src/core/Animators/gradientpoints.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/gradientpoints.h b/src/core/Animators/gradientpoints.h index 9a5a95505..71cb3d24f 100644 --- a/src/core/Animators/gradientpoints.h +++ b/src/core/Animators/gradientpoints.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/graphanimator.cpp b/src/core/Animators/graphanimator.cpp index a9fd87e88..d2ab8e755 100644 --- a/src/core/Animators/graphanimator.cpp +++ b/src/core/Animators/graphanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/graphanimator.h b/src/core/Animators/graphanimator.h index 5fe41d268..73c44661a 100644 --- a/src/core/Animators/graphanimator.h +++ b/src/core/Animators/graphanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/graphanimatort.cpp b/src/core/Animators/graphanimatort.cpp index 68913d150..09f1521de 100644 --- a/src/core/Animators/graphanimatort.cpp +++ b/src/core/Animators/graphanimatort.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/graphanimatort.h b/src/core/Animators/graphanimatort.h index 2deef1428..eb1fbd4d6 100644 --- a/src/core/Animators/graphanimatort.h +++ b/src/core/Animators/graphanimatort.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/graphkey.cpp b/src/core/Animators/graphkey.cpp index d0d088adc..1461b63e9 100644 --- a/src/core/Animators/graphkey.cpp +++ b/src/core/Animators/graphkey.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/graphkey.h b/src/core/Animators/graphkey.h index eaa8bbc64..a723529e7 100644 --- a/src/core/Animators/graphkey.h +++ b/src/core/Animators/graphkey.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/graphkeyt.cpp b/src/core/Animators/graphkeyt.cpp index 2a938214b..3bc900112 100644 --- a/src/core/Animators/graphkeyt.cpp +++ b/src/core/Animators/graphkeyt.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/graphkeyt.h b/src/core/Animators/graphkeyt.h index a54f55afd..b8fe0b4fd 100644 --- a/src/core/Animators/graphkeyt.h +++ b/src/core/Animators/graphkeyt.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/intanimator.cpp b/src/core/Animators/intanimator.cpp index 595750413..a2ce21afb 100644 --- a/src/core/Animators/intanimator.cpp +++ b/src/core/Animators/intanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/intanimator.h b/src/core/Animators/intanimator.h index 2df02e636..0f077a260 100644 --- a/src/core/Animators/intanimator.h +++ b/src/core/Animators/intanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interoptimalanimatort.h b/src/core/Animators/interoptimalanimatort.h index 3654b9ecb..89b5576d1 100644 --- a/src/core/Animators/interoptimalanimatort.h +++ b/src/core/Animators/interoptimalanimatort.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interpolationanimator.cpp b/src/core/Animators/interpolationanimator.cpp index 5c915718e..d63b0bf30 100644 --- a/src/core/Animators/interpolationanimator.cpp +++ b/src/core/Animators/interpolationanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interpolationanimator.h b/src/core/Animators/interpolationanimator.h index 4f3df8c88..8afcd50bc 100644 --- a/src/core/Animators/interpolationanimator.h +++ b/src/core/Animators/interpolationanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interpolationanimatort.cpp b/src/core/Animators/interpolationanimatort.cpp index 0310d3997..b73b360a7 100644 --- a/src/core/Animators/interpolationanimatort.cpp +++ b/src/core/Animators/interpolationanimatort.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interpolationanimatort.h b/src/core/Animators/interpolationanimatort.h index f526ca0a5..e0a4b5395 100644 --- a/src/core/Animators/interpolationanimatort.h +++ b/src/core/Animators/interpolationanimatort.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interpolationkey.cpp b/src/core/Animators/interpolationkey.cpp index e8a7d7914..8f53c928e 100644 --- a/src/core/Animators/interpolationkey.cpp +++ b/src/core/Animators/interpolationkey.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interpolationkey.h b/src/core/Animators/interpolationkey.h index 058b0285a..1c3b83834 100644 --- a/src/core/Animators/interpolationkey.h +++ b/src/core/Animators/interpolationkey.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interpolationkeyt.cpp b/src/core/Animators/interpolationkeyt.cpp index 194c8bba7..51b8839e5 100644 --- a/src/core/Animators/interpolationkeyt.cpp +++ b/src/core/Animators/interpolationkeyt.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/interpolationkeyt.h b/src/core/Animators/interpolationkeyt.h index 0f754e83f..ffa77cbad 100644 --- a/src/core/Animators/interpolationkeyt.h +++ b/src/core/Animators/interpolationkeyt.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/key.cpp b/src/core/Animators/key.cpp index 73e801875..9c5d64aca 100644 --- a/src/core/Animators/key.cpp +++ b/src/core/Animators/key.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/key.h b/src/core/Animators/key.h index 1a4cd0b72..f6178ab4e 100644 --- a/src/core/Animators/key.h +++ b/src/core/Animators/key.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/keyt.cpp b/src/core/Animators/keyt.cpp index 2d515a8db..eff57acae 100644 --- a/src/core/Animators/keyt.cpp +++ b/src/core/Animators/keyt.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/keyt.h b/src/core/Animators/keyt.h index 5675375c0..48ed947a5 100644 --- a/src/core/Animators/keyt.h +++ b/src/core/Animators/keyt.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/outlinesettingsanimator.cpp b/src/core/Animators/outlinesettingsanimator.cpp index 998327c4f..219e4f41d 100644 --- a/src/core/Animators/outlinesettingsanimator.cpp +++ b/src/core/Animators/outlinesettingsanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/outlinesettingsanimator.h b/src/core/Animators/outlinesettingsanimator.h index bf244f6f5..f055faa1a 100644 --- a/src/core/Animators/outlinesettingsanimator.h +++ b/src/core/Animators/outlinesettingsanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/overlappingkeylist.cpp b/src/core/Animators/overlappingkeylist.cpp index b0f808cab..b4a7047e1 100644 --- a/src/core/Animators/overlappingkeylist.cpp +++ b/src/core/Animators/overlappingkeylist.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/overlappingkeylist.h b/src/core/Animators/overlappingkeylist.h index 01593ae27..0a5de9b33 100644 --- a/src/core/Animators/overlappingkeylist.h +++ b/src/core/Animators/overlappingkeylist.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/overlappingkeys.cpp b/src/core/Animators/overlappingkeys.cpp index 5032e633d..9b8b1272a 100644 --- a/src/core/Animators/overlappingkeys.cpp +++ b/src/core/Animators/overlappingkeys.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/overlappingkeys.h b/src/core/Animators/overlappingkeys.h index 174ca2018..c19400080 100644 --- a/src/core/Animators/overlappingkeys.h +++ b/src/core/Animators/overlappingkeys.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/paintsettingsanimator.cpp b/src/core/Animators/paintsettingsanimator.cpp index bb2c2ae62..e286ae39b 100644 --- a/src/core/Animators/paintsettingsanimator.cpp +++ b/src/core/Animators/paintsettingsanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/paintsettingsanimator.h b/src/core/Animators/paintsettingsanimator.h index f2f0f21be..b522188e7 100644 --- a/src/core/Animators/paintsettingsanimator.h +++ b/src/core/Animators/paintsettingsanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qcubicsegment1danimator.cpp b/src/core/Animators/qcubicsegment1danimator.cpp index a00817fcb..5a3a57562 100644 --- a/src/core/Animators/qcubicsegment1danimator.cpp +++ b/src/core/Animators/qcubicsegment1danimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qcubicsegment1danimator.h b/src/core/Animators/qcubicsegment1danimator.h index b126af1e9..b1a35c89a 100644 --- a/src/core/Animators/qcubicsegment1danimator.h +++ b/src/core/Animators/qcubicsegment1danimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qpointfanimator.cpp b/src/core/Animators/qpointfanimator.cpp index ce3d1614c..7da84483d 100644 --- a/src/core/Animators/qpointfanimator.cpp +++ b/src/core/Animators/qpointfanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qpointfanimator.h b/src/core/Animators/qpointfanimator.h index 902e20444..1b8a126bd 100644 --- a/src/core/Animators/qpointfanimator.h +++ b/src/core/Animators/qpointfanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealanimator.cpp b/src/core/Animators/qrealanimator.cpp index d2eb1a4dd..c5c57c8ef 100644 --- a/src/core/Animators/qrealanimator.cpp +++ b/src/core/Animators/qrealanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealanimator.h b/src/core/Animators/qrealanimator.h index add93d9bf..07e2e8a3b 100644 --- a/src/core/Animators/qrealanimator.h +++ b/src/core/Animators/qrealanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealkey.cpp b/src/core/Animators/qrealkey.cpp index 361ca26c4..cf5578cd2 100644 --- a/src/core/Animators/qrealkey.cpp +++ b/src/core/Animators/qrealkey.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealkey.h b/src/core/Animators/qrealkey.h index 4dec8a11c..908eebad5 100644 --- a/src/core/Animators/qrealkey.h +++ b/src/core/Animators/qrealkey.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealpoint.cpp b/src/core/Animators/qrealpoint.cpp index bdef31681..3a9bc80d1 100644 --- a/src/core/Animators/qrealpoint.cpp +++ b/src/core/Animators/qrealpoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealpoint.h b/src/core/Animators/qrealpoint.h index 2d4d2a990..9f963ba65 100644 --- a/src/core/Animators/qrealpoint.h +++ b/src/core/Animators/qrealpoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealsnapshot.cpp b/src/core/Animators/qrealsnapshot.cpp index 7c8080358..086c3af9a 100644 --- a/src/core/Animators/qrealsnapshot.cpp +++ b/src/core/Animators/qrealsnapshot.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealsnapshot.h b/src/core/Animators/qrealsnapshot.h index 3b00bb018..8dd94782b 100644 --- a/src/core/Animators/qrealsnapshot.h +++ b/src/core/Animators/qrealsnapshot.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealvalueeffect.cpp b/src/core/Animators/qrealvalueeffect.cpp index 3cc7e3525..8cc0ea3c9 100644 --- a/src/core/Animators/qrealvalueeffect.cpp +++ b/src/core/Animators/qrealvalueeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qrealvalueeffect.h b/src/core/Animators/qrealvalueeffect.h index 63942bd3c..84107e3c1 100644 --- a/src/core/Animators/qrealvalueeffect.h +++ b/src/core/Animators/qrealvalueeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qstringanimator.cpp b/src/core/Animators/qstringanimator.cpp index 950a20338..0d506eefa 100644 --- a/src/core/Animators/qstringanimator.cpp +++ b/src/core/Animators/qstringanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/qstringanimator.h b/src/core/Animators/qstringanimator.h index c10cc4340..480b2ab82 100644 --- a/src/core/Animators/qstringanimator.h +++ b/src/core/Animators/qstringanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/sceneboundgradient.cpp b/src/core/Animators/sceneboundgradient.cpp index c430bcb34..71aa55d7b 100644 --- a/src/core/Animators/sceneboundgradient.cpp +++ b/src/core/Animators/sceneboundgradient.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/sceneboundgradient.h b/src/core/Animators/sceneboundgradient.h index db775fb90..9bf1dfbf9 100644 --- a/src/core/Animators/sceneboundgradient.h +++ b/src/core/Animators/sceneboundgradient.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/staticcomplexanimator.cpp b/src/core/Animators/staticcomplexanimator.cpp index 92a942f9a..c0cb7e52e 100644 --- a/src/core/Animators/staticcomplexanimator.cpp +++ b/src/core/Animators/staticcomplexanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/staticcomplexanimator.h b/src/core/Animators/staticcomplexanimator.h index f1abf48bb..88df787b6 100644 --- a/src/core/Animators/staticcomplexanimator.h +++ b/src/core/Animators/staticcomplexanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/steppedanimator.cpp b/src/core/Animators/steppedanimator.cpp index c43de2cba..e90f30e10 100644 --- a/src/core/Animators/steppedanimator.cpp +++ b/src/core/Animators/steppedanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/steppedanimator.h b/src/core/Animators/steppedanimator.h index 46df3ab5e..075ecc4f2 100644 --- a/src/core/Animators/steppedanimator.h +++ b/src/core/Animators/steppedanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/texteffectcollection.cpp b/src/core/Animators/texteffectcollection.cpp index 0e93e3801..99831b8ca 100644 --- a/src/core/Animators/texteffectcollection.cpp +++ b/src/core/Animators/texteffectcollection.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/texteffectcollection.h b/src/core/Animators/texteffectcollection.h index 955e88434..2cb31ab9a 100644 --- a/src/core/Animators/texteffectcollection.h +++ b/src/core/Animators/texteffectcollection.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/transformanimator.cpp b/src/core/Animators/transformanimator.cpp index 6d23e3738..1dcb119d1 100644 --- a/src/core/Animators/transformanimator.cpp +++ b/src/core/Animators/transformanimator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Animators/transformanimator.h b/src/core/Animators/transformanimator.h index 66a90938a..824790548 100644 --- a/src/core/Animators/transformanimator.h +++ b/src/core/Animators/transformanimator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/BlendEffects/blendeffectmenucreator.cpp b/src/core/BlendEffects/blendeffectmenucreator.cpp index 0488a9340..210a845eb 100644 --- a/src/core/BlendEffects/blendeffectmenucreator.cpp +++ b/src/core/BlendEffects/blendeffectmenucreator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/BlendEffects/blendeffectmenucreator.h b/src/core/BlendEffects/blendeffectmenucreator.h index 7dabe8d20..fe1317ee1 100644 --- a/src/core/BlendEffects/blendeffectmenucreator.h +++ b/src/core/BlendEffects/blendeffectmenucreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/BlendEffects/moveblendeffect.cpp b/src/core/BlendEffects/moveblendeffect.cpp index d13235604..d29e015e5 100644 --- a/src/core/BlendEffects/moveblendeffect.cpp +++ b/src/core/BlendEffects/moveblendeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/BlendEffects/moveblendeffect.h b/src/core/BlendEffects/moveblendeffect.h index d95229379..970512e1d 100644 --- a/src/core/BlendEffects/moveblendeffect.h +++ b/src/core/BlendEffects/moveblendeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/BlendEffects/targetedblendeffect.cpp b/src/core/BlendEffects/targetedblendeffect.cpp index 6314f215b..0e0a97a0e 100644 --- a/src/core/BlendEffects/targetedblendeffect.cpp +++ b/src/core/BlendEffects/targetedblendeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/BlendEffects/targetedblendeffect.h b/src/core/BlendEffects/targetedblendeffect.h index 4824ca25e..eadc67858 100644 --- a/src/core/BlendEffects/targetedblendeffect.h +++ b/src/core/BlendEffects/targetedblendeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/animationbox.cpp b/src/core/Boxes/animationbox.cpp index a4884b051..a484f6833 100644 --- a/src/core/Boxes/animationbox.cpp +++ b/src/core/Boxes/animationbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/animationbox.h b/src/core/Boxes/animationbox.h index 708359b19..672523036 100644 --- a/src/core/Boxes/animationbox.h +++ b/src/core/Boxes/animationbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/boundingbox.cpp b/src/core/Boxes/boundingbox.cpp index 21503497b..13e6bc65e 100644 --- a/src/core/Boxes/boundingbox.cpp +++ b/src/core/Boxes/boundingbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/boundingbox.h b/src/core/Boxes/boundingbox.h index 2ff5f9b65..1a6d3fb3d 100644 --- a/src/core/Boxes/boundingbox.h +++ b/src/core/Boxes/boundingbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/boxrendercontainer.cpp b/src/core/Boxes/boxrendercontainer.cpp index 51d9c0a28..aa191a093 100644 --- a/src/core/Boxes/boxrendercontainer.cpp +++ b/src/core/Boxes/boxrendercontainer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/boxrendercontainer.h b/src/core/Boxes/boxrendercontainer.h index 9c9628320..506f14d7f 100644 --- a/src/core/Boxes/boxrendercontainer.h +++ b/src/core/Boxes/boxrendercontainer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/boxrenderdata.cpp b/src/core/Boxes/boxrenderdata.cpp index 364e6ebcf..bce4b12e7 100644 --- a/src/core/Boxes/boxrenderdata.cpp +++ b/src/core/Boxes/boxrenderdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/boxrenderdata.h b/src/core/Boxes/boxrenderdata.h index 61041d7f8..e42af3073 100644 --- a/src/core/Boxes/boxrenderdata.h +++ b/src/core/Boxes/boxrenderdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/boxwithpatheffects.cpp b/src/core/Boxes/boxwithpatheffects.cpp index 42e7cb07c..e9d118623 100644 --- a/src/core/Boxes/boxwithpatheffects.cpp +++ b/src/core/Boxes/boxwithpatheffects.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/boxwithpatheffects.h b/src/core/Boxes/boxwithpatheffects.h index 66ab85dec..fd7c66754 100644 --- a/src/core/Boxes/boxwithpatheffects.h +++ b/src/core/Boxes/boxwithpatheffects.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/canvasrenderdata.cpp b/src/core/Boxes/canvasrenderdata.cpp index 73b5ee6b9..7a7c6b7aa 100644 --- a/src/core/Boxes/canvasrenderdata.cpp +++ b/src/core/Boxes/canvasrenderdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/canvasrenderdata.h b/src/core/Boxes/canvasrenderdata.h index 095ec0b3d..2f78e4185 100644 --- a/src/core/Boxes/canvasrenderdata.h +++ b/src/core/Boxes/canvasrenderdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/circle.cpp b/src/core/Boxes/circle.cpp index f8a2fb595..ee7f0903e 100644 --- a/src/core/Boxes/circle.cpp +++ b/src/core/Boxes/circle.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/circle.h b/src/core/Boxes/circle.h index 006efff7e..f3d60b306 100644 --- a/src/core/Boxes/circle.h +++ b/src/core/Boxes/circle.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/containerbox.cpp b/src/core/Boxes/containerbox.cpp index f609ca1db..73ee877d1 100644 --- a/src/core/Boxes/containerbox.cpp +++ b/src/core/Boxes/containerbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/containerbox.h b/src/core/Boxes/containerbox.h index 74f2650f9..7f3dec01a 100644 --- a/src/core/Boxes/containerbox.h +++ b/src/core/Boxes/containerbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/customboxcreator.h b/src/core/Boxes/customboxcreator.h index f0b60cf74..d621153e3 100644 --- a/src/core/Boxes/customboxcreator.h +++ b/src/core/Boxes/customboxcreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/ecustombox.cpp b/src/core/Boxes/ecustombox.cpp index d97b3b6ee..4545fe562 100644 --- a/src/core/Boxes/ecustombox.cpp +++ b/src/core/Boxes/ecustombox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/ecustombox.h b/src/core/Boxes/ecustombox.h index ea1e6c169..902605fdf 100644 --- a/src/core/Boxes/ecustombox.h +++ b/src/core/Boxes/ecustombox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/effectsrenderer.cpp b/src/core/Boxes/effectsrenderer.cpp index f00ed6fc6..8927d5e58 100644 --- a/src/core/Boxes/effectsrenderer.cpp +++ b/src/core/Boxes/effectsrenderer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/effectsrenderer.h b/src/core/Boxes/effectsrenderer.h index 2beb78a75..32e631041 100644 --- a/src/core/Boxes/effectsrenderer.h +++ b/src/core/Boxes/effectsrenderer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/effectsubtaskspawner.cpp b/src/core/Boxes/effectsubtaskspawner.cpp index 3a5b59561..c8b2e424c 100644 --- a/src/core/Boxes/effectsubtaskspawner.cpp +++ b/src/core/Boxes/effectsubtaskspawner.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/effectsubtaskspawner.h b/src/core/Boxes/effectsubtaskspawner.h index dc9c124f8..da5335cab 100644 --- a/src/core/Boxes/effectsubtaskspawner.h +++ b/src/core/Boxes/effectsubtaskspawner.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/externallinkboxt.h b/src/core/Boxes/externallinkboxt.h index 561ed0965..5e4fd4bc2 100644 --- a/src/core/Boxes/externallinkboxt.h +++ b/src/core/Boxes/externallinkboxt.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/frameremapping.cpp b/src/core/Boxes/frameremapping.cpp index 95b8cd6f9..67635e894 100644 --- a/src/core/Boxes/frameremapping.cpp +++ b/src/core/Boxes/frameremapping.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/frameremapping.h b/src/core/Boxes/frameremapping.h index a7bae95f8..039800ccd 100644 --- a/src/core/Boxes/frameremapping.h +++ b/src/core/Boxes/frameremapping.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/imagebox.cpp b/src/core/Boxes/imagebox.cpp index e4894d7c1..5ebf5d39c 100644 --- a/src/core/Boxes/imagebox.cpp +++ b/src/core/Boxes/imagebox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/imagebox.h b/src/core/Boxes/imagebox.h index 4ae06321e..270c12a15 100644 --- a/src/core/Boxes/imagebox.h +++ b/src/core/Boxes/imagebox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/imagerenderdata.cpp b/src/core/Boxes/imagerenderdata.cpp index 5f02bc5da..1446cf207 100644 --- a/src/core/Boxes/imagerenderdata.cpp +++ b/src/core/Boxes/imagerenderdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/imagerenderdata.h b/src/core/Boxes/imagerenderdata.h index 9d8813482..99400be67 100644 --- a/src/core/Boxes/imagerenderdata.h +++ b/src/core/Boxes/imagerenderdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/imagesequencebox.cpp b/src/core/Boxes/imagesequencebox.cpp index a9ffd9af1..360dc4436 100644 --- a/src/core/Boxes/imagesequencebox.cpp +++ b/src/core/Boxes/imagesequencebox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/imagesequencebox.h b/src/core/Boxes/imagesequencebox.h index 8a759a1bb..f1e124cdb 100644 --- a/src/core/Boxes/imagesequencebox.h +++ b/src/core/Boxes/imagesequencebox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/internallinkbox.cpp b/src/core/Boxes/internallinkbox.cpp index 28f046a09..6399c6ced 100644 --- a/src/core/Boxes/internallinkbox.cpp +++ b/src/core/Boxes/internallinkbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/internallinkbox.h b/src/core/Boxes/internallinkbox.h index 98a6f3409..d9d72e296 100644 --- a/src/core/Boxes/internallinkbox.h +++ b/src/core/Boxes/internallinkbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/internallinkboxbase.h b/src/core/Boxes/internallinkboxbase.h index 737f0ad14..b4d2b59d5 100644 --- a/src/core/Boxes/internallinkboxbase.h +++ b/src/core/Boxes/internallinkboxbase.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/internallinkcanvas.cpp b/src/core/Boxes/internallinkcanvas.cpp index b532ad6b3..39997d461 100644 --- a/src/core/Boxes/internallinkcanvas.cpp +++ b/src/core/Boxes/internallinkcanvas.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/internallinkcanvas.h b/src/core/Boxes/internallinkcanvas.h index 834ad8fa6..530df0ea5 100644 --- a/src/core/Boxes/internallinkcanvas.h +++ b/src/core/Boxes/internallinkcanvas.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/internallinkgroupbox.cpp b/src/core/Boxes/internallinkgroupbox.cpp index 7591e3e28..afa4d211e 100644 --- a/src/core/Boxes/internallinkgroupbox.cpp +++ b/src/core/Boxes/internallinkgroupbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/internallinkgroupbox.h b/src/core/Boxes/internallinkgroupbox.h index 7c4bbbec3..5840ac95d 100644 --- a/src/core/Boxes/internallinkgroupbox.h +++ b/src/core/Boxes/internallinkgroupbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/layerboxrenderdata.cpp b/src/core/Boxes/layerboxrenderdata.cpp index 31528836f..f3bdab33b 100644 --- a/src/core/Boxes/layerboxrenderdata.cpp +++ b/src/core/Boxes/layerboxrenderdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/layerboxrenderdata.h b/src/core/Boxes/layerboxrenderdata.h index 4a76a1202..03e67f61a 100644 --- a/src/core/Boxes/layerboxrenderdata.h +++ b/src/core/Boxes/layerboxrenderdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/linkcanvasrenderdata.cpp b/src/core/Boxes/linkcanvasrenderdata.cpp index 2e77b4d3b..315482a20 100644 --- a/src/core/Boxes/linkcanvasrenderdata.cpp +++ b/src/core/Boxes/linkcanvasrenderdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/linkcanvasrenderdata.h b/src/core/Boxes/linkcanvasrenderdata.h index 947dc530c..47d516f5e 100644 --- a/src/core/Boxes/linkcanvasrenderdata.h +++ b/src/core/Boxes/linkcanvasrenderdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/nullobject.cpp b/src/core/Boxes/nullobject.cpp index 483674579..dd109de70 100644 --- a/src/core/Boxes/nullobject.cpp +++ b/src/core/Boxes/nullobject.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/nullobject.h b/src/core/Boxes/nullobject.h index fae84b7a9..a30b496ff 100644 --- a/src/core/Boxes/nullobject.h +++ b/src/core/Boxes/nullobject.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/pathbox.cpp b/src/core/Boxes/pathbox.cpp index 7996ad4ec..7cc3600eb 100644 --- a/src/core/Boxes/pathbox.cpp +++ b/src/core/Boxes/pathbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/pathbox.h b/src/core/Boxes/pathbox.h index 328395d75..fe68f62c6 100644 --- a/src/core/Boxes/pathbox.h +++ b/src/core/Boxes/pathbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/pathboxrenderdata.cpp b/src/core/Boxes/pathboxrenderdata.cpp index d0201e19b..ff47e5e2c 100644 --- a/src/core/Boxes/pathboxrenderdata.cpp +++ b/src/core/Boxes/pathboxrenderdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/pathboxrenderdata.h b/src/core/Boxes/pathboxrenderdata.h index 15a52aee4..037fb3d0b 100644 --- a/src/core/Boxes/pathboxrenderdata.h +++ b/src/core/Boxes/pathboxrenderdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/patheffectsmenu.cpp b/src/core/Boxes/patheffectsmenu.cpp index 993b863ea..942f694d3 100644 --- a/src/core/Boxes/patheffectsmenu.cpp +++ b/src/core/Boxes/patheffectsmenu.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/patheffectsmenu.h b/src/core/Boxes/patheffectsmenu.h index de63bedf8..f3f2c92e4 100644 --- a/src/core/Boxes/patheffectsmenu.h +++ b/src/core/Boxes/patheffectsmenu.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/rectangle.cpp b/src/core/Boxes/rectangle.cpp index eccbb5e80..3afc26d8d 100644 --- a/src/core/Boxes/rectangle.cpp +++ b/src/core/Boxes/rectangle.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/rectangle.h b/src/core/Boxes/rectangle.h index 1f9508013..63c3f2cc2 100644 --- a/src/core/Boxes/rectangle.h +++ b/src/core/Boxes/rectangle.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/renderdatahandler.cpp b/src/core/Boxes/renderdatahandler.cpp index dadcb25c5..024a526f9 100644 --- a/src/core/Boxes/renderdatahandler.cpp +++ b/src/core/Boxes/renderdatahandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/renderdatahandler.h b/src/core/Boxes/renderdatahandler.h index 90ca31e2a..79487a4e4 100644 --- a/src/core/Boxes/renderdatahandler.h +++ b/src/core/Boxes/renderdatahandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/smartvectorpath.cpp b/src/core/Boxes/smartvectorpath.cpp index 3481e70d6..3470ce406 100644 --- a/src/core/Boxes/smartvectorpath.cpp +++ b/src/core/Boxes/smartvectorpath.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/smartvectorpath.h b/src/core/Boxes/smartvectorpath.h index a585c8cd1..2caeddd86 100644 --- a/src/core/Boxes/smartvectorpath.h +++ b/src/core/Boxes/smartvectorpath.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/svglinkbox.cpp b/src/core/Boxes/svglinkbox.cpp index c193c5f78..22bd16955 100644 --- a/src/core/Boxes/svglinkbox.cpp +++ b/src/core/Boxes/svglinkbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/svglinkbox.h b/src/core/Boxes/svglinkbox.h index d4c22ef3a..f5799da79 100644 --- a/src/core/Boxes/svglinkbox.h +++ b/src/core/Boxes/svglinkbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/textbox.cpp b/src/core/Boxes/textbox.cpp index d401cc5d2..58a135d17 100644 --- a/src/core/Boxes/textbox.cpp +++ b/src/core/Boxes/textbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/textbox.h b/src/core/Boxes/textbox.h index 6d5fee492..ebc3b8851 100644 --- a/src/core/Boxes/textbox.h +++ b/src/core/Boxes/textbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/textboxrenderdata.cpp b/src/core/Boxes/textboxrenderdata.cpp index 1901765af..4ead7f8bf 100644 --- a/src/core/Boxes/textboxrenderdata.cpp +++ b/src/core/Boxes/textboxrenderdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/textboxrenderdata.h b/src/core/Boxes/textboxrenderdata.h index 20f66caee..a7755c96a 100644 --- a/src/core/Boxes/textboxrenderdata.h +++ b/src/core/Boxes/textboxrenderdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/videobox.cpp b/src/core/Boxes/videobox.cpp index 1d66343cd..286dd0a35 100644 --- a/src/core/Boxes/videobox.cpp +++ b/src/core/Boxes/videobox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Boxes/videobox.h b/src/core/Boxes/videobox.h index 84a181225..da39e454d 100644 --- a/src/core/Boxes/videobox.h +++ b/src/core/Boxes/videobox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index ace67fc14..39588abf9 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/cachecontainer.cpp b/src/core/CacheHandlers/cachecontainer.cpp index 66319da63..96f003f87 100644 --- a/src/core/CacheHandlers/cachecontainer.cpp +++ b/src/core/CacheHandlers/cachecontainer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/cachecontainer.h b/src/core/CacheHandlers/cachecontainer.h index 1f24e5c8f..3928aca18 100644 --- a/src/core/CacheHandlers/cachecontainer.h +++ b/src/core/CacheHandlers/cachecontainer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/hddcachablecachehandler.cpp b/src/core/CacheHandlers/hddcachablecachehandler.cpp index 0cbeea2fe..f0ef09a8f 100644 --- a/src/core/CacheHandlers/hddcachablecachehandler.cpp +++ b/src/core/CacheHandlers/hddcachablecachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/hddcachablecachehandler.h b/src/core/CacheHandlers/hddcachablecachehandler.h index 1c29d7f36..33f1ebae6 100644 --- a/src/core/CacheHandlers/hddcachablecachehandler.h +++ b/src/core/CacheHandlers/hddcachablecachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/hddcachablecont.cpp b/src/core/CacheHandlers/hddcachablecont.cpp index 8ac3f9bbf..2b10587d3 100644 --- a/src/core/CacheHandlers/hddcachablecont.cpp +++ b/src/core/CacheHandlers/hddcachablecont.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/hddcachablecont.h b/src/core/CacheHandlers/hddcachablecont.h index 4a0202014..bb3194589 100644 --- a/src/core/CacheHandlers/hddcachablecont.h +++ b/src/core/CacheHandlers/hddcachablecont.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/hddcachablerangecont.cpp b/src/core/CacheHandlers/hddcachablerangecont.cpp index 7a14bbfdc..2faf700b7 100644 --- a/src/core/CacheHandlers/hddcachablerangecont.cpp +++ b/src/core/CacheHandlers/hddcachablerangecont.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/hddcachablerangecont.h b/src/core/CacheHandlers/hddcachablerangecont.h index 9579866dd..b1d920417 100644 --- a/src/core/CacheHandlers/hddcachablerangecont.h +++ b/src/core/CacheHandlers/hddcachablerangecont.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/imagecachecontainer.cpp b/src/core/CacheHandlers/imagecachecontainer.cpp index 5e7d95ffe..e40491e30 100644 --- a/src/core/CacheHandlers/imagecachecontainer.cpp +++ b/src/core/CacheHandlers/imagecachecontainer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/imagecachecontainer.h b/src/core/CacheHandlers/imagecachecontainer.h index 786f772f8..c62aae1f7 100644 --- a/src/core/CacheHandlers/imagecachecontainer.h +++ b/src/core/CacheHandlers/imagecachecontainer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/imagedatahandler.cpp b/src/core/CacheHandlers/imagedatahandler.cpp index e16c53e03..ab26bef86 100644 --- a/src/core/CacheHandlers/imagedatahandler.cpp +++ b/src/core/CacheHandlers/imagedatahandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/imagedatahandler.h b/src/core/CacheHandlers/imagedatahandler.h index 6e434a1fe..3fb4d35c7 100644 --- a/src/core/CacheHandlers/imagedatahandler.h +++ b/src/core/CacheHandlers/imagedatahandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/samples.cpp b/src/core/CacheHandlers/samples.cpp index c26ab7230..1a34a8926 100644 --- a/src/core/CacheHandlers/samples.cpp +++ b/src/core/CacheHandlers/samples.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/samples.h b/src/core/CacheHandlers/samples.h index 4abeb0b89..41bbf0c79 100644 --- a/src/core/CacheHandlers/samples.h +++ b/src/core/CacheHandlers/samples.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/sceneframecontainer.cpp b/src/core/CacheHandlers/sceneframecontainer.cpp index 984bb9fa4..a00ab27c6 100644 --- a/src/core/CacheHandlers/sceneframecontainer.cpp +++ b/src/core/CacheHandlers/sceneframecontainer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/sceneframecontainer.h b/src/core/CacheHandlers/sceneframecontainer.h index 8fa810a6f..4aa712ed3 100644 --- a/src/core/CacheHandlers/sceneframecontainer.h +++ b/src/core/CacheHandlers/sceneframecontainer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/soundcachecontainer.cpp b/src/core/CacheHandlers/soundcachecontainer.cpp index 6619bf206..a2483a275 100644 --- a/src/core/CacheHandlers/soundcachecontainer.cpp +++ b/src/core/CacheHandlers/soundcachecontainer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/soundcachecontainer.h b/src/core/CacheHandlers/soundcachecontainer.h index 651213cbe..4c086274b 100644 --- a/src/core/CacheHandlers/soundcachecontainer.h +++ b/src/core/CacheHandlers/soundcachecontainer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/soundcachehandler.cpp b/src/core/CacheHandlers/soundcachehandler.cpp index e5b4847d2..02cda73ba 100644 --- a/src/core/CacheHandlers/soundcachehandler.cpp +++ b/src/core/CacheHandlers/soundcachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/soundcachehandler.h b/src/core/CacheHandlers/soundcachehandler.h index f223e72aa..b2460d12a 100644 --- a/src/core/CacheHandlers/soundcachehandler.h +++ b/src/core/CacheHandlers/soundcachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/soundtmpfilehandlers.cpp b/src/core/CacheHandlers/soundtmpfilehandlers.cpp index 9f3402008..b175c6bed 100644 --- a/src/core/CacheHandlers/soundtmpfilehandlers.cpp +++ b/src/core/CacheHandlers/soundtmpfilehandlers.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/soundtmpfilehandlers.h b/src/core/CacheHandlers/soundtmpfilehandlers.h index 2d95650dd..f8ec40a72 100644 --- a/src/core/CacheHandlers/soundtmpfilehandlers.h +++ b/src/core/CacheHandlers/soundtmpfilehandlers.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/tmpdeleter.cpp b/src/core/CacheHandlers/tmpdeleter.cpp index 9379a6a32..58018abd5 100644 --- a/src/core/CacheHandlers/tmpdeleter.cpp +++ b/src/core/CacheHandlers/tmpdeleter.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/tmpdeleter.h b/src/core/CacheHandlers/tmpdeleter.h index 6fb8f8275..30cf5e7bd 100644 --- a/src/core/CacheHandlers/tmpdeleter.h +++ b/src/core/CacheHandlers/tmpdeleter.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/tmploader.cpp b/src/core/CacheHandlers/tmploader.cpp index d4de26ee8..77c42c8a0 100644 --- a/src/core/CacheHandlers/tmploader.cpp +++ b/src/core/CacheHandlers/tmploader.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/tmploader.h b/src/core/CacheHandlers/tmploader.h index e4629afce..495df5b21 100644 --- a/src/core/CacheHandlers/tmploader.h +++ b/src/core/CacheHandlers/tmploader.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/tmpsaver.cpp b/src/core/CacheHandlers/tmpsaver.cpp index d72543123..9799b876d 100644 --- a/src/core/CacheHandlers/tmpsaver.cpp +++ b/src/core/CacheHandlers/tmpsaver.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/CacheHandlers/tmpsaver.h b/src/core/CacheHandlers/tmpsaver.h index ceaac77ee..7305917db 100644 --- a/src/core/CacheHandlers/tmpsaver.h +++ b/src/core/CacheHandlers/tmpsaver.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/expression.cpp b/src/core/Expressions/expression.cpp index a71d7376b..05e68fc0c 100644 --- a/src/core/Expressions/expression.cpp +++ b/src/core/Expressions/expression.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/expression.h b/src/core/Expressions/expression.h index 83c9e8b33..0f18b8d1f 100644 --- a/src/core/Expressions/expression.h +++ b/src/core/Expressions/expression.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/framebinding.cpp b/src/core/Expressions/framebinding.cpp index e5a80c970..41f082124 100644 --- a/src/core/Expressions/framebinding.cpp +++ b/src/core/Expressions/framebinding.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/framebinding.h b/src/core/Expressions/framebinding.h index 5c80ae16b..61412827e 100644 --- a/src/core/Expressions/framebinding.h +++ b/src/core/Expressions/framebinding.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/propertybinding.cpp b/src/core/Expressions/propertybinding.cpp index 60ff9a1f0..3092f6149 100644 --- a/src/core/Expressions/propertybinding.cpp +++ b/src/core/Expressions/propertybinding.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/propertybinding.h b/src/core/Expressions/propertybinding.h index 92c6e61cf..e6cbbd16f 100644 --- a/src/core/Expressions/propertybinding.h +++ b/src/core/Expressions/propertybinding.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/propertybindingbase.cpp b/src/core/Expressions/propertybindingbase.cpp index 7421107f0..b0298e721 100644 --- a/src/core/Expressions/propertybindingbase.cpp +++ b/src/core/Expressions/propertybindingbase.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/propertybindingbase.h b/src/core/Expressions/propertybindingbase.h index 233d954e0..d4c745adf 100644 --- a/src/core/Expressions/propertybindingbase.h +++ b/src/core/Expressions/propertybindingbase.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/propertybindingparser.cpp b/src/core/Expressions/propertybindingparser.cpp index f45fdbe36..5944ab995 100644 --- a/src/core/Expressions/propertybindingparser.cpp +++ b/src/core/Expressions/propertybindingparser.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/propertybindingparser.h b/src/core/Expressions/propertybindingparser.h index 69939213d..01abe7ee7 100644 --- a/src/core/Expressions/propertybindingparser.h +++ b/src/core/Expressions/propertybindingparser.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/valuebinding.cpp b/src/core/Expressions/valuebinding.cpp index 6d927a19e..a87cea4e9 100644 --- a/src/core/Expressions/valuebinding.cpp +++ b/src/core/Expressions/valuebinding.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Expressions/valuebinding.h b/src/core/Expressions/valuebinding.h index e2c47ac56..f56d38884 100644 --- a/src/core/Expressions/valuebinding.h +++ b/src/core/Expressions/valuebinding.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/animationcachehandler.cpp b/src/core/FileCacheHandlers/animationcachehandler.cpp index f054cb979..4468bd45b 100644 --- a/src/core/FileCacheHandlers/animationcachehandler.cpp +++ b/src/core/FileCacheHandlers/animationcachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/animationcachehandler.h b/src/core/FileCacheHandlers/animationcachehandler.h index 310bb2c19..5c36e71b0 100644 --- a/src/core/FileCacheHandlers/animationcachehandler.h +++ b/src/core/FileCacheHandlers/animationcachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/audiostreamsdata.cpp b/src/core/FileCacheHandlers/audiostreamsdata.cpp index a1bfd99a1..2e68bbd64 100644 --- a/src/core/FileCacheHandlers/audiostreamsdata.cpp +++ b/src/core/FileCacheHandlers/audiostreamsdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/audiostreamsdata.h b/src/core/FileCacheHandlers/audiostreamsdata.h index 99424b41d..5f5584895 100644 --- a/src/core/FileCacheHandlers/audiostreamsdata.h +++ b/src/core/FileCacheHandlers/audiostreamsdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/filecachehandler.cpp b/src/core/FileCacheHandlers/filecachehandler.cpp index 9c3e2ff58..74042b322 100644 --- a/src/core/FileCacheHandlers/filecachehandler.cpp +++ b/src/core/FileCacheHandlers/filecachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/filecachehandler.h b/src/core/FileCacheHandlers/filecachehandler.h index b4de475d1..df918b97e 100644 --- a/src/core/FileCacheHandlers/filecachehandler.h +++ b/src/core/FileCacheHandlers/filecachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/filedatacachehandler.cpp b/src/core/FileCacheHandlers/filedatacachehandler.cpp index 878ef494e..059be821d 100644 --- a/src/core/FileCacheHandlers/filedatacachehandler.cpp +++ b/src/core/FileCacheHandlers/filedatacachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/filedatacachehandler.h b/src/core/FileCacheHandlers/filedatacachehandler.h index 5db8b3f47..2e2dd9b36 100644 --- a/src/core/FileCacheHandlers/filedatacachehandler.h +++ b/src/core/FileCacheHandlers/filedatacachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/filehandlerobjref.h b/src/core/FileCacheHandlers/filehandlerobjref.h index ede4dd371..f5a5fb00e 100644 --- a/src/core/FileCacheHandlers/filehandlerobjref.h +++ b/src/core/FileCacheHandlers/filehandlerobjref.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/imagecachehandler.cpp b/src/core/FileCacheHandlers/imagecachehandler.cpp index 628973717..778b694e3 100644 --- a/src/core/FileCacheHandlers/imagecachehandler.cpp +++ b/src/core/FileCacheHandlers/imagecachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/imagecachehandler.h b/src/core/FileCacheHandlers/imagecachehandler.h index 0065e52a4..81b239619 100644 --- a/src/core/FileCacheHandlers/imagecachehandler.h +++ b/src/core/FileCacheHandlers/imagecachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/imagesequencecachehandler.cpp b/src/core/FileCacheHandlers/imagesequencecachehandler.cpp index d37437493..c0ab246ed 100644 --- a/src/core/FileCacheHandlers/imagesequencecachehandler.cpp +++ b/src/core/FileCacheHandlers/imagesequencecachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/imagesequencecachehandler.h b/src/core/FileCacheHandlers/imagesequencecachehandler.h index ee17a22cc..6551b28a7 100644 --- a/src/core/FileCacheHandlers/imagesequencecachehandler.h +++ b/src/core/FileCacheHandlers/imagesequencecachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/soundreader.cpp b/src/core/FileCacheHandlers/soundreader.cpp index abf6e72b3..8beb75d25 100644 --- a/src/core/FileCacheHandlers/soundreader.cpp +++ b/src/core/FileCacheHandlers/soundreader.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/soundreader.h b/src/core/FileCacheHandlers/soundreader.h index 277530272..7dcc40739 100644 --- a/src/core/FileCacheHandlers/soundreader.h +++ b/src/core/FileCacheHandlers/soundreader.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/svgfilecachehandler.cpp b/src/core/FileCacheHandlers/svgfilecachehandler.cpp index 6e6387f9d..e6f2beab1 100644 --- a/src/core/FileCacheHandlers/svgfilecachehandler.cpp +++ b/src/core/FileCacheHandlers/svgfilecachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/svgfilecachehandler.h b/src/core/FileCacheHandlers/svgfilecachehandler.h index 5e6b02dba..149e2aff1 100644 --- a/src/core/FileCacheHandlers/svgfilecachehandler.h +++ b/src/core/FileCacheHandlers/svgfilecachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/videocachehandler.cpp b/src/core/FileCacheHandlers/videocachehandler.cpp index 3b6b65e14..c44abb49c 100644 --- a/src/core/FileCacheHandlers/videocachehandler.cpp +++ b/src/core/FileCacheHandlers/videocachehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/videocachehandler.h b/src/core/FileCacheHandlers/videocachehandler.h index 3aad5027c..ae9c06911 100644 --- a/src/core/FileCacheHandlers/videocachehandler.h +++ b/src/core/FileCacheHandlers/videocachehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/videoframeloader.cpp b/src/core/FileCacheHandlers/videoframeloader.cpp index aec238135..0991541a6 100644 --- a/src/core/FileCacheHandlers/videoframeloader.cpp +++ b/src/core/FileCacheHandlers/videoframeloader.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/videoframeloader.h b/src/core/FileCacheHandlers/videoframeloader.h index e4826a1d6..1cbfbdf3e 100644 --- a/src/core/FileCacheHandlers/videoframeloader.h +++ b/src/core/FileCacheHandlers/videoframeloader.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/videostreamsdata.cpp b/src/core/FileCacheHandlers/videostreamsdata.cpp index 430994c55..f2a976062 100644 --- a/src/core/FileCacheHandlers/videostreamsdata.cpp +++ b/src/core/FileCacheHandlers/videostreamsdata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/FileCacheHandlers/videostreamsdata.h b/src/core/FileCacheHandlers/videostreamsdata.h index 3a1899d4b..d9580f168 100644 --- a/src/core/FileCacheHandlers/videostreamsdata.h +++ b/src/core/FileCacheHandlers/videostreamsdata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/boxeslistactionbutton.cpp b/src/core/GUI/boxeslistactionbutton.cpp index 802b0013a..79ee4dbac 100644 --- a/src/core/GUI/boxeslistactionbutton.cpp +++ b/src/core/GUI/boxeslistactionbutton.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/boxeslistactionbutton.h b/src/core/GUI/boxeslistactionbutton.h index c2d498795..5c7c1bf12 100644 --- a/src/core/GUI/boxeslistactionbutton.h +++ b/src/core/GUI/boxeslistactionbutton.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/coloranimatorbutton.cpp b/src/core/GUI/coloranimatorbutton.cpp index f3c5f51d5..eab234bcf 100644 --- a/src/core/GUI/coloranimatorbutton.cpp +++ b/src/core/GUI/coloranimatorbutton.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/coloranimatorbutton.h b/src/core/GUI/coloranimatorbutton.h index dff711871..5009092a2 100644 --- a/src/core/GUI/coloranimatorbutton.h +++ b/src/core/GUI/coloranimatorbutton.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/dialogsinterface.cpp b/src/core/GUI/dialogsinterface.cpp index cab5a3c38..ba9fb7f6d 100644 --- a/src/core/GUI/dialogsinterface.cpp +++ b/src/core/GUI/dialogsinterface.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/dialogsinterface.h b/src/core/GUI/dialogsinterface.h index 84a65e84d..cb04b405b 100644 --- a/src/core/GUI/dialogsinterface.h +++ b/src/core/GUI/dialogsinterface.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/edialogs.cpp b/src/core/GUI/edialogs.cpp index 9ac33c8c0..83a3cc2fa 100644 --- a/src/core/GUI/edialogs.cpp +++ b/src/core/GUI/edialogs.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/edialogs.h b/src/core/GUI/edialogs.h index 0f802dbe7..8efdd3e0f 100644 --- a/src/core/GUI/edialogs.h +++ b/src/core/GUI/edialogs.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/ewidgets.cpp b/src/core/GUI/ewidgets.cpp index 3a8b4f08b..efbe492e3 100644 --- a/src/core/GUI/ewidgets.cpp +++ b/src/core/GUI/ewidgets.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/ewidgets.h b/src/core/GUI/ewidgets.h index 4de4277a8..09015f6ca 100644 --- a/src/core/GUI/ewidgets.h +++ b/src/core/GUI/ewidgets.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/global.cpp b/src/core/GUI/global.cpp index b706cba9b..1ec06554e 100644 --- a/src/core/GUI/global.cpp +++ b/src/core/GUI/global.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/global.h b/src/core/GUI/global.h index cf4647feb..bdf94de70 100644 --- a/src/core/GUI/global.h +++ b/src/core/GUI/global.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/sizesetter.cpp b/src/core/GUI/sizesetter.cpp index 67d3a9e34..2479e119e 100644 --- a/src/core/GUI/sizesetter.cpp +++ b/src/core/GUI/sizesetter.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/sizesetter.h b/src/core/GUI/sizesetter.h index 897c5a281..038acd754 100644 --- a/src/core/GUI/sizesetter.h +++ b/src/core/GUI/sizesetter.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/valueinput.cpp b/src/core/GUI/valueinput.cpp index bc413d5df..e6255a499 100644 --- a/src/core/GUI/valueinput.cpp +++ b/src/core/GUI/valueinput.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/GUI/valueinput.h b/src/core/GUI/valueinput.h index f47145094..dd768094e 100644 --- a/src/core/GUI/valueinput.h +++ b/src/core/GUI/valueinput.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/animatedpoint.cpp b/src/core/MovablePoints/animatedpoint.cpp index 8035847e2..0f2ff065e 100644 --- a/src/core/MovablePoints/animatedpoint.cpp +++ b/src/core/MovablePoints/animatedpoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/animatedpoint.h b/src/core/MovablePoints/animatedpoint.h index 7bcfd5d7c..3b49652fd 100644 --- a/src/core/MovablePoints/animatedpoint.h +++ b/src/core/MovablePoints/animatedpoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/boxpathpoint.cpp b/src/core/MovablePoints/boxpathpoint.cpp index 54cf0ac0d..b7ec1f98d 100644 --- a/src/core/MovablePoints/boxpathpoint.cpp +++ b/src/core/MovablePoints/boxpathpoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/boxpathpoint.h b/src/core/MovablePoints/boxpathpoint.h index de4ee022f..d8c12431f 100644 --- a/src/core/MovablePoints/boxpathpoint.h +++ b/src/core/MovablePoints/boxpathpoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/gradientpoint.cpp b/src/core/MovablePoints/gradientpoint.cpp index 6e7841f53..a87e76270 100644 --- a/src/core/MovablePoints/gradientpoint.cpp +++ b/src/core/MovablePoints/gradientpoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/gradientpoint.h b/src/core/MovablePoints/gradientpoint.h index e558ad617..19f38212c 100644 --- a/src/core/MovablePoints/gradientpoint.h +++ b/src/core/MovablePoints/gradientpoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/movablepoint.cpp b/src/core/MovablePoints/movablepoint.cpp index 44c7b8411..098c2b262 100644 --- a/src/core/MovablePoints/movablepoint.cpp +++ b/src/core/MovablePoints/movablepoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/movablepoint.h b/src/core/MovablePoints/movablepoint.h index 0b7e3634f..f93e1a0c0 100644 --- a/src/core/MovablePoints/movablepoint.h +++ b/src/core/MovablePoints/movablepoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/nonanimatedmovablepoint.cpp b/src/core/MovablePoints/nonanimatedmovablepoint.cpp index 7b664d95b..1a4aa7b53 100644 --- a/src/core/MovablePoints/nonanimatedmovablepoint.cpp +++ b/src/core/MovablePoints/nonanimatedmovablepoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/nonanimatedmovablepoint.h b/src/core/MovablePoints/nonanimatedmovablepoint.h index ba4eaf6f0..d77319520 100644 --- a/src/core/MovablePoints/nonanimatedmovablepoint.h +++ b/src/core/MovablePoints/nonanimatedmovablepoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/pathpivot.cpp b/src/core/MovablePoints/pathpivot.cpp index 48c26ec8a..690ab4dad 100644 --- a/src/core/MovablePoints/pathpivot.cpp +++ b/src/core/MovablePoints/pathpivot.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/pathpivot.h b/src/core/MovablePoints/pathpivot.h index 5842dad08..c5b5444f8 100644 --- a/src/core/MovablePoints/pathpivot.h +++ b/src/core/MovablePoints/pathpivot.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/pathpointshandler.cpp b/src/core/MovablePoints/pathpointshandler.cpp index 4e6bca77b..c323790df 100644 --- a/src/core/MovablePoints/pathpointshandler.cpp +++ b/src/core/MovablePoints/pathpointshandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/pathpointshandler.h b/src/core/MovablePoints/pathpointshandler.h index c53defd85..36fe0a3e9 100644 --- a/src/core/MovablePoints/pathpointshandler.h +++ b/src/core/MovablePoints/pathpointshandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/pointshandler.cpp b/src/core/MovablePoints/pointshandler.cpp index f604c2b48..1a84d7c2f 100644 --- a/src/core/MovablePoints/pointshandler.cpp +++ b/src/core/MovablePoints/pointshandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/pointshandler.h b/src/core/MovablePoints/pointshandler.h index a61a585f3..8a6282213 100644 --- a/src/core/MovablePoints/pointshandler.h +++ b/src/core/MovablePoints/pointshandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/segment.cpp b/src/core/MovablePoints/segment.cpp index 63e4ba2f5..1f4e00785 100644 --- a/src/core/MovablePoints/segment.cpp +++ b/src/core/MovablePoints/segment.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/segment.h b/src/core/MovablePoints/segment.h index c2a65db67..153788954 100644 --- a/src/core/MovablePoints/segment.h +++ b/src/core/MovablePoints/segment.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/smartctrlpoint.cpp b/src/core/MovablePoints/smartctrlpoint.cpp index 04b95d887..1a79fb3e5 100644 --- a/src/core/MovablePoints/smartctrlpoint.cpp +++ b/src/core/MovablePoints/smartctrlpoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/smartctrlpoint.h b/src/core/MovablePoints/smartctrlpoint.h index 25a969ac7..1cfae5dd8 100644 --- a/src/core/MovablePoints/smartctrlpoint.h +++ b/src/core/MovablePoints/smartctrlpoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/smartnodepoint.cpp b/src/core/MovablePoints/smartnodepoint.cpp index dfb6c2c2a..8834e0a5c 100644 --- a/src/core/MovablePoints/smartnodepoint.cpp +++ b/src/core/MovablePoints/smartnodepoint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/MovablePoints/smartnodepoint.h b/src/core/MovablePoints/smartnodepoint.h index 83eb1564f..9a107f082 100644 --- a/src/core/MovablePoints/smartnodepoint.h +++ b/src/core/MovablePoints/smartnodepoint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Paint/brushcontexedwrapper.cpp b/src/core/Paint/brushcontexedwrapper.cpp index 5091bcc7e..3c69d65c3 100644 --- a/src/core/Paint/brushcontexedwrapper.cpp +++ b/src/core/Paint/brushcontexedwrapper.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Paint/brushcontexedwrapper.h b/src/core/Paint/brushcontexedwrapper.h index 2ddff762b..04601e5a0 100644 --- a/src/core/Paint/brushcontexedwrapper.h +++ b/src/core/Paint/brushcontexedwrapper.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Paint/simplebrushwrapper.cpp b/src/core/Paint/simplebrushwrapper.cpp index 07ebe6425..e1e044c39 100644 --- a/src/core/Paint/simplebrushwrapper.cpp +++ b/src/core/Paint/simplebrushwrapper.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Paint/simplebrushwrapper.h b/src/core/Paint/simplebrushwrapper.h index e20f61199..0591710fb 100644 --- a/src/core/Paint/simplebrushwrapper.h +++ b/src/core/Paint/simplebrushwrapper.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/custompatheffect.cpp b/src/core/PathEffects/custompatheffect.cpp index 571d72f13..17cb305d1 100644 --- a/src/core/PathEffects/custompatheffect.cpp +++ b/src/core/PathEffects/custompatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/custompatheffect.h b/src/core/PathEffects/custompatheffect.h index 029cf2327..de81e5050 100644 --- a/src/core/PathEffects/custompatheffect.h +++ b/src/core/PathEffects/custompatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/custompatheffectcreator.h b/src/core/PathEffects/custompatheffectcreator.h index dd02f3b56..a681b1939 100644 --- a/src/core/PathEffects/custompatheffectcreator.h +++ b/src/core/PathEffects/custompatheffectcreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/dashpatheffect.cpp b/src/core/PathEffects/dashpatheffect.cpp index 8f8c22e8e..275d9c6ea 100644 --- a/src/core/PathEffects/dashpatheffect.cpp +++ b/src/core/PathEffects/dashpatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/dashpatheffect.h b/src/core/PathEffects/dashpatheffect.h index 47c6947a9..95e0bb5db 100644 --- a/src/core/PathEffects/dashpatheffect.h +++ b/src/core/PathEffects/dashpatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/displacepatheffect.cpp b/src/core/PathEffects/displacepatheffect.cpp index 186b8c14b..d83dfd155 100644 --- a/src/core/PathEffects/displacepatheffect.cpp +++ b/src/core/PathEffects/displacepatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/displacepatheffect.h b/src/core/PathEffects/displacepatheffect.h index f944ffa7a..a8e5dd7de 100644 --- a/src/core/PathEffects/displacepatheffect.h +++ b/src/core/PathEffects/displacepatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/duplicatepatheffect.cpp b/src/core/PathEffects/duplicatepatheffect.cpp index f36a19514..3dd5d8178 100644 --- a/src/core/PathEffects/duplicatepatheffect.cpp +++ b/src/core/PathEffects/duplicatepatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/duplicatepatheffect.h b/src/core/PathEffects/duplicatepatheffect.h index fc0616491..37801628d 100644 --- a/src/core/PathEffects/duplicatepatheffect.h +++ b/src/core/PathEffects/duplicatepatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/linespatheffect.cpp b/src/core/PathEffects/linespatheffect.cpp index 98e476730..a2141bc05 100644 --- a/src/core/PathEffects/linespatheffect.cpp +++ b/src/core/PathEffects/linespatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/linespatheffect.h b/src/core/PathEffects/linespatheffect.h index aa310c766..6b9896aed 100644 --- a/src/core/PathEffects/linespatheffect.h +++ b/src/core/PathEffects/linespatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffect.cpp b/src/core/PathEffects/patheffect.cpp index 4ad71de2e..c4831b891 100644 --- a/src/core/PathEffects/patheffect.cpp +++ b/src/core/PathEffects/patheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffect.h b/src/core/PathEffects/patheffect.h index 112739db2..446ec1fdc 100644 --- a/src/core/PathEffects/patheffect.h +++ b/src/core/PathEffects/patheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffectcollection.cpp b/src/core/PathEffects/patheffectcollection.cpp index 03fd4db37..bb215cadb 100644 --- a/src/core/PathEffects/patheffectcollection.cpp +++ b/src/core/PathEffects/patheffectcollection.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffectcollection.h b/src/core/PathEffects/patheffectcollection.h index a4fc3712b..ec6a1d1d9 100644 --- a/src/core/PathEffects/patheffectcollection.h +++ b/src/core/PathEffects/patheffectcollection.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffectmenucreator.cpp b/src/core/PathEffects/patheffectmenucreator.cpp index 370f8edc4..1e185528b 100644 --- a/src/core/PathEffects/patheffectmenucreator.cpp +++ b/src/core/PathEffects/patheffectmenucreator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffectmenucreator.h b/src/core/PathEffects/patheffectmenucreator.h index 22f74bf62..a1e85f1bc 100644 --- a/src/core/PathEffects/patheffectmenucreator.h +++ b/src/core/PathEffects/patheffectmenucreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffectsinclude.h b/src/core/PathEffects/patheffectsinclude.h index e729dd59f..ccfbd7dbc 100644 --- a/src/core/PathEffects/patheffectsinclude.h +++ b/src/core/PathEffects/patheffectsinclude.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffectstask.cpp b/src/core/PathEffects/patheffectstask.cpp index 3c2c27fa9..7040d0f64 100644 --- a/src/core/PathEffects/patheffectstask.cpp +++ b/src/core/PathEffects/patheffectstask.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/patheffectstask.h b/src/core/PathEffects/patheffectstask.h index 1d109a316..1728181e4 100644 --- a/src/core/PathEffects/patheffectstask.h +++ b/src/core/PathEffects/patheffectstask.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/solidifypatheffect.cpp b/src/core/PathEffects/solidifypatheffect.cpp index fc3fff01d..87a2da31b 100644 --- a/src/core/PathEffects/solidifypatheffect.cpp +++ b/src/core/PathEffects/solidifypatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/solidifypatheffect.h b/src/core/PathEffects/solidifypatheffect.h index 3c412427e..7218a828b 100644 --- a/src/core/PathEffects/solidifypatheffect.h +++ b/src/core/PathEffects/solidifypatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/spatialdisplacepatheffect.cpp b/src/core/PathEffects/spatialdisplacepatheffect.cpp index 078270ca7..1b57eee63 100644 --- a/src/core/PathEffects/spatialdisplacepatheffect.cpp +++ b/src/core/PathEffects/spatialdisplacepatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/spatialdisplacepatheffect.h b/src/core/PathEffects/spatialdisplacepatheffect.h index 347aa28a5..07eeadd3a 100644 --- a/src/core/PathEffects/spatialdisplacepatheffect.h +++ b/src/core/PathEffects/spatialdisplacepatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/subdividepatheffect.cpp b/src/core/PathEffects/subdividepatheffect.cpp index b1ec363cc..e00939548 100644 --- a/src/core/PathEffects/subdividepatheffect.cpp +++ b/src/core/PathEffects/subdividepatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/subdividepatheffect.h b/src/core/PathEffects/subdividepatheffect.h index acb624c7a..d21a8d083 100644 --- a/src/core/PathEffects/subdividepatheffect.h +++ b/src/core/PathEffects/subdividepatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/subpatheffect.cpp b/src/core/PathEffects/subpatheffect.cpp index 2b724f170..c527b08dd 100644 --- a/src/core/PathEffects/subpatheffect.cpp +++ b/src/core/PathEffects/subpatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/subpatheffect.h b/src/core/PathEffects/subpatheffect.h index dc846a9dc..cd5f529fa 100644 --- a/src/core/PathEffects/subpatheffect.h +++ b/src/core/PathEffects/subpatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/sumpatheffect.cpp b/src/core/PathEffects/sumpatheffect.cpp index c92afb42c..c9639bcc9 100644 --- a/src/core/PathEffects/sumpatheffect.cpp +++ b/src/core/PathEffects/sumpatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/sumpatheffect.h b/src/core/PathEffects/sumpatheffect.h index 0fe89b560..5543ee6d8 100644 --- a/src/core/PathEffects/sumpatheffect.h +++ b/src/core/PathEffects/sumpatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/zigzagpatheffect.cpp b/src/core/PathEffects/zigzagpatheffect.cpp index bb2671fbf..3d63fd8d0 100644 --- a/src/core/PathEffects/zigzagpatheffect.cpp +++ b/src/core/PathEffects/zigzagpatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/PathEffects/zigzagpatheffect.h b/src/core/PathEffects/zigzagpatheffect.h index 6ab2256ef..6cdb4da18 100644 --- a/src/core/PathEffects/zigzagpatheffect.h +++ b/src/core/PathEffects/zigzagpatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/complextask.cpp b/src/core/Private/Tasks/complextask.cpp index d20413bbd..804b91447 100644 --- a/src/core/Private/Tasks/complextask.cpp +++ b/src/core/Private/Tasks/complextask.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/complextask.h b/src/core/Private/Tasks/complextask.h index 483632263..a87c015ec 100644 --- a/src/core/Private/Tasks/complextask.h +++ b/src/core/Private/Tasks/complextask.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/execcontroller.cpp b/src/core/Private/Tasks/execcontroller.cpp index b7942e01a..d2bf356ea 100644 --- a/src/core/Private/Tasks/execcontroller.cpp +++ b/src/core/Private/Tasks/execcontroller.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/execcontroller.h b/src/core/Private/Tasks/execcontroller.h index b994f1026..5d93d0662 100644 --- a/src/core/Private/Tasks/execcontroller.h +++ b/src/core/Private/Tasks/execcontroller.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/gputaskexecutor.cpp b/src/core/Private/Tasks/gputaskexecutor.cpp index f6c238947..dd9ae9ff4 100644 --- a/src/core/Private/Tasks/gputaskexecutor.cpp +++ b/src/core/Private/Tasks/gputaskexecutor.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/gputaskexecutor.h b/src/core/Private/Tasks/gputaskexecutor.h index 564cacdcd..e109b1b83 100644 --- a/src/core/Private/Tasks/gputaskexecutor.h +++ b/src/core/Private/Tasks/gputaskexecutor.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/offscreenqgl33c.cpp b/src/core/Private/Tasks/offscreenqgl33c.cpp index a04b9c61d..fd32800e2 100644 --- a/src/core/Private/Tasks/offscreenqgl33c.cpp +++ b/src/core/Private/Tasks/offscreenqgl33c.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/offscreenqgl33c.h b/src/core/Private/Tasks/offscreenqgl33c.h index 731c25e6e..d463f2c4d 100644 --- a/src/core/Private/Tasks/offscreenqgl33c.h +++ b/src/core/Private/Tasks/offscreenqgl33c.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/taskexecutor.cpp b/src/core/Private/Tasks/taskexecutor.cpp index 74567c99e..9de6ac1c3 100644 --- a/src/core/Private/Tasks/taskexecutor.cpp +++ b/src/core/Private/Tasks/taskexecutor.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/taskexecutor.h b/src/core/Private/Tasks/taskexecutor.h index c239875fa..1006a021e 100644 --- a/src/core/Private/Tasks/taskexecutor.h +++ b/src/core/Private/Tasks/taskexecutor.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/taskque.cpp b/src/core/Private/Tasks/taskque.cpp index 2baabba19..96f1314af 100644 --- a/src/core/Private/Tasks/taskque.cpp +++ b/src/core/Private/Tasks/taskque.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/taskque.h b/src/core/Private/Tasks/taskque.h index d503ff718..55313a58e 100644 --- a/src/core/Private/Tasks/taskque.h +++ b/src/core/Private/Tasks/taskque.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/taskquehandler.cpp b/src/core/Private/Tasks/taskquehandler.cpp index 77c21fdaf..b6f5cdf63 100644 --- a/src/core/Private/Tasks/taskquehandler.cpp +++ b/src/core/Private/Tasks/taskquehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/taskquehandler.h b/src/core/Private/Tasks/taskquehandler.h index 4f7cff40c..eedd4dd1b 100644 --- a/src/core/Private/Tasks/taskquehandler.h +++ b/src/core/Private/Tasks/taskquehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/taskscheduler.cpp b/src/core/Private/Tasks/taskscheduler.cpp index 29448ea9a..44fff5eb1 100644 --- a/src/core/Private/Tasks/taskscheduler.cpp +++ b/src/core/Private/Tasks/taskscheduler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/Tasks/taskscheduler.h b/src/core/Private/Tasks/taskscheduler.h index 60eacdfb0..d6ee71fb8 100644 --- a/src/core/Private/Tasks/taskscheduler.h +++ b/src/core/Private/Tasks/taskscheduler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/document.cpp b/src/core/Private/document.cpp index 2afc5b6f8..30436648c 100644 --- a/src/core/Private/document.cpp +++ b/src/core/Private/document.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/document.h b/src/core/Private/document.h index 8078ba328..3419e45e7 100644 --- a/src/core/Private/document.h +++ b/src/core/Private/document.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/documentrw.cpp b/src/core/Private/documentrw.cpp index cd00d37ae..cedddbf79 100644 --- a/src/core/Private/documentrw.cpp +++ b/src/core/Private/documentrw.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/esettings.cpp b/src/core/Private/esettings.cpp index 89005cb2c..7a57ed645 100644 --- a/src/core/Private/esettings.cpp +++ b/src/core/Private/esettings.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Private/esettings.h b/src/core/Private/esettings.h index f1de05f22..95b957d49 100644 --- a/src/core/Private/esettings.h +++ b/src/core/Private/esettings.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/boolproperty.cpp b/src/core/Properties/boolproperty.cpp index 7eb8fb048..5876069fa 100644 --- a/src/core/Properties/boolproperty.cpp +++ b/src/core/Properties/boolproperty.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/boolproperty.h b/src/core/Properties/boolproperty.h index 19ad9a8c0..93139d342 100644 --- a/src/core/Properties/boolproperty.h +++ b/src/core/Properties/boolproperty.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/boolpropertycontainer.cpp b/src/core/Properties/boolpropertycontainer.cpp index 5fd133c82..4cad745fe 100644 --- a/src/core/Properties/boolpropertycontainer.cpp +++ b/src/core/Properties/boolpropertycontainer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/boolpropertycontainer.h b/src/core/Properties/boolpropertycontainer.h index 6a8f2d85b..1e21fa52e 100644 --- a/src/core/Properties/boolpropertycontainer.h +++ b/src/core/Properties/boolpropertycontainer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/boxtargetproperty.cpp b/src/core/Properties/boxtargetproperty.cpp index e38635ec8..db4241af8 100644 --- a/src/core/Properties/boxtargetproperty.cpp +++ b/src/core/Properties/boxtargetproperty.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/boxtargetproperty.h b/src/core/Properties/boxtargetproperty.h index a0540904c..757f89d30 100644 --- a/src/core/Properties/boxtargetproperty.h +++ b/src/core/Properties/boxtargetproperty.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/comboboxproperty.cpp b/src/core/Properties/comboboxproperty.cpp index aa1d122c6..b1919fe98 100644 --- a/src/core/Properties/comboboxproperty.cpp +++ b/src/core/Properties/comboboxproperty.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/comboboxproperty.h b/src/core/Properties/comboboxproperty.h index 9fa268f05..c8603acf5 100644 --- a/src/core/Properties/comboboxproperty.h +++ b/src/core/Properties/comboboxproperty.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/emimedata.cpp b/src/core/Properties/emimedata.cpp index ecff7be9d..8870c26df 100644 --- a/src/core/Properties/emimedata.cpp +++ b/src/core/Properties/emimedata.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/emimedata.h b/src/core/Properties/emimedata.h index 55477432a..cd9483d9b 100644 --- a/src/core/Properties/emimedata.h +++ b/src/core/Properties/emimedata.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/property.cpp b/src/core/Properties/property.cpp index 2095846e2..a151287b9 100644 --- a/src/core/Properties/property.cpp +++ b/src/core/Properties/property.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Properties/property.h b/src/core/Properties/property.h index e692d7304..227abcc6e 100644 --- a/src/core/Properties/property.h +++ b/src/core/Properties/property.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/brightnesscontrasteffect.cpp b/src/core/RasterEffects/brightnesscontrasteffect.cpp index c13c79fbc..8bd758261 100644 --- a/src/core/RasterEffects/brightnesscontrasteffect.cpp +++ b/src/core/RasterEffects/brightnesscontrasteffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/brightnesscontrasteffect.frag b/src/core/RasterEffects/brightnesscontrasteffect.frag index cb29911a1..dbb6204d7 100644 --- a/src/core/RasterEffects/brightnesscontrasteffect.frag +++ b/src/core/RasterEffects/brightnesscontrasteffect.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/brightnesscontrasteffect.h b/src/core/RasterEffects/brightnesscontrasteffect.h index 79a0e365f..1d5d98a4f 100644 --- a/src/core/RasterEffects/brightnesscontrasteffect.h +++ b/src/core/RasterEffects/brightnesscontrasteffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/colorizeeffect.cpp b/src/core/RasterEffects/colorizeeffect.cpp index d93e86e90..eca4e32a8 100644 --- a/src/core/RasterEffects/colorizeeffect.cpp +++ b/src/core/RasterEffects/colorizeeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/colorizeeffect.frag b/src/core/RasterEffects/colorizeeffect.frag index 450fe8051..5e8d3491d 100644 --- a/src/core/RasterEffects/colorizeeffect.frag +++ b/src/core/RasterEffects/colorizeeffect.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/colorizeeffect.h b/src/core/RasterEffects/colorizeeffect.h index b62c7f364..4033ae11d 100644 --- a/src/core/RasterEffects/colorizeeffect.h +++ b/src/core/RasterEffects/colorizeeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/customrastereffect.cpp b/src/core/RasterEffects/customrastereffect.cpp index f74ad5459..8e984aee7 100644 --- a/src/core/RasterEffects/customrastereffect.cpp +++ b/src/core/RasterEffects/customrastereffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/customrastereffect.h b/src/core/RasterEffects/customrastereffect.h index 68541c6ac..8fd5ead6e 100644 --- a/src/core/RasterEffects/customrastereffect.h +++ b/src/core/RasterEffects/customrastereffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/customrastereffectcreator.h b/src/core/RasterEffects/customrastereffectcreator.h index d7946da37..2907d6a67 100644 --- a/src/core/RasterEffects/customrastereffectcreator.h +++ b/src/core/RasterEffects/customrastereffectcreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/motionblureffect.cpp b/src/core/RasterEffects/motionblureffect.cpp index 420f199f5..9599cd066 100644 --- a/src/core/RasterEffects/motionblureffect.cpp +++ b/src/core/RasterEffects/motionblureffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/motionblureffect.h b/src/core/RasterEffects/motionblureffect.h index e60179f7c..a9df73c4f 100644 --- a/src/core/RasterEffects/motionblureffect.h +++ b/src/core/RasterEffects/motionblureffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/noisefadeeffect.cpp b/src/core/RasterEffects/noisefadeeffect.cpp index 7f93ced70..2ec47cf1d 100644 --- a/src/core/RasterEffects/noisefadeeffect.cpp +++ b/src/core/RasterEffects/noisefadeeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/noisefadeeffect.frag b/src/core/RasterEffects/noisefadeeffect.frag index 2f465682e..ee3446060 100644 --- a/src/core/RasterEffects/noisefadeeffect.frag +++ b/src/core/RasterEffects/noisefadeeffect.frag @@ -6,7 +6,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/noisefadeeffect.h b/src/core/RasterEffects/noisefadeeffect.h index 71fa2f18c..4726d5f15 100644 --- a/src/core/RasterEffects/noisefadeeffect.h +++ b/src/core/RasterEffects/noisefadeeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/openglrastereffectcaller.cpp b/src/core/RasterEffects/openglrastereffectcaller.cpp index 77f97af1b..fb7e3570f 100644 --- a/src/core/RasterEffects/openglrastereffectcaller.cpp +++ b/src/core/RasterEffects/openglrastereffectcaller.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/openglrastereffectcaller.h b/src/core/RasterEffects/openglrastereffectcaller.h index 896d8f3a3..a9a6436cb 100644 --- a/src/core/RasterEffects/openglrastereffectcaller.h +++ b/src/core/RasterEffects/openglrastereffectcaller.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/rastereffect.cpp b/src/core/RasterEffects/rastereffect.cpp index 4d1eb42b3..e11dab877 100644 --- a/src/core/RasterEffects/rastereffect.cpp +++ b/src/core/RasterEffects/rastereffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/rastereffect.h b/src/core/RasterEffects/rastereffect.h index 6badcc88b..6d2d30d67 100644 --- a/src/core/RasterEffects/rastereffect.h +++ b/src/core/RasterEffects/rastereffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/rastereffectcaller.cpp b/src/core/RasterEffects/rastereffectcaller.cpp index ac56ac505..29c4a9e0f 100644 --- a/src/core/RasterEffects/rastereffectcaller.cpp +++ b/src/core/RasterEffects/rastereffectcaller.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/rastereffectcaller.h b/src/core/RasterEffects/rastereffectcaller.h index 03f94ec68..536417b4e 100644 --- a/src/core/RasterEffects/rastereffectcaller.h +++ b/src/core/RasterEffects/rastereffectcaller.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/rastereffectcollection.cpp b/src/core/RasterEffects/rastereffectcollection.cpp index 4bbd70aed..f1134a880 100644 --- a/src/core/RasterEffects/rastereffectcollection.cpp +++ b/src/core/RasterEffects/rastereffectcollection.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/rastereffectcollection.h b/src/core/RasterEffects/rastereffectcollection.h index 8ca057a0a..ff954c7b6 100644 --- a/src/core/RasterEffects/rastereffectcollection.h +++ b/src/core/RasterEffects/rastereffectcollection.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/rastereffectmenucreator.cpp b/src/core/RasterEffects/rastereffectmenucreator.cpp index ad360a1d5..58c6ecdd7 100644 --- a/src/core/RasterEffects/rastereffectmenucreator.cpp +++ b/src/core/RasterEffects/rastereffectmenucreator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/rastereffectmenucreator.h b/src/core/RasterEffects/rastereffectmenucreator.h index 962ff4ef0..a22896bbf 100644 --- a/src/core/RasterEffects/rastereffectmenucreator.h +++ b/src/core/RasterEffects/rastereffectmenucreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/wipeeffect.cpp b/src/core/RasterEffects/wipeeffect.cpp index 775c3060b..0a6038e1d 100644 --- a/src/core/RasterEffects/wipeeffect.cpp +++ b/src/core/RasterEffects/wipeeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/wipeeffect.frag b/src/core/RasterEffects/wipeeffect.frag index 2ffc22fc6..8f1dbccba 100644 --- a/src/core/RasterEffects/wipeeffect.frag +++ b/src/core/RasterEffects/wipeeffect.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/RasterEffects/wipeeffect.h b/src/core/RasterEffects/wipeeffect.h index ca1d671f3..e25744070 100644 --- a/src/core/RasterEffects/wipeeffect.h +++ b/src/core/RasterEffects/wipeeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ReadWrite/basicreadwrite.cpp b/src/core/ReadWrite/basicreadwrite.cpp index c8a91e3f3..e97ccd1b7 100644 --- a/src/core/ReadWrite/basicreadwrite.cpp +++ b/src/core/ReadWrite/basicreadwrite.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ReadWrite/basicreadwrite.h b/src/core/ReadWrite/basicreadwrite.h index 0d6ceb008..91e450aaa 100644 --- a/src/core/ReadWrite/basicreadwrite.h +++ b/src/core/ReadWrite/basicreadwrite.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ReadWrite/evformat.h b/src/core/ReadWrite/evformat.h index 3c8977264..a3c4e54a6 100644 --- a/src/core/ReadWrite/evformat.h +++ b/src/core/ReadWrite/evformat.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ReadWrite/xevformat.h b/src/core/ReadWrite/xevformat.h index c0966a6d3..0848c7984 100644 --- a/src/core/ReadWrite/xevformat.h +++ b/src/core/ReadWrite/xevformat.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/conicsegment.cpp b/src/core/Segments/conicsegment.cpp index 7bc42c06d..45656797a 100644 --- a/src/core/Segments/conicsegment.cpp +++ b/src/core/Segments/conicsegment.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/conicsegment.h b/src/core/Segments/conicsegment.h index 1760f6d87..ffc789e99 100644 --- a/src/core/Segments/conicsegment.h +++ b/src/core/Segments/conicsegment.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/cubiclist.cpp b/src/core/Segments/cubiclist.cpp index 484679560..d384b1000 100644 --- a/src/core/Segments/cubiclist.cpp +++ b/src/core/Segments/cubiclist.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/cubiclist.h b/src/core/Segments/cubiclist.h index faa6b1652..ea9d2df57 100644 --- a/src/core/Segments/cubiclist.h +++ b/src/core/Segments/cubiclist.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/cubicnode.cpp b/src/core/Segments/cubicnode.cpp index d25ba6146..099028ea4 100644 --- a/src/core/Segments/cubicnode.cpp +++ b/src/core/Segments/cubicnode.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/cubicnode.h b/src/core/Segments/cubicnode.h index 57b9eef41..a2b238895 100644 --- a/src/core/Segments/cubicnode.h +++ b/src/core/Segments/cubicnode.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/qcubicsegment1d.cpp b/src/core/Segments/qcubicsegment1d.cpp index 0b7ff56a7..c56e1f3f2 100644 --- a/src/core/Segments/qcubicsegment1d.cpp +++ b/src/core/Segments/qcubicsegment1d.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/qcubicsegment1d.h b/src/core/Segments/qcubicsegment1d.h index 75f96b5d0..1969a1d3d 100644 --- a/src/core/Segments/qcubicsegment1d.h +++ b/src/core/Segments/qcubicsegment1d.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/qcubicsegment2d.cpp b/src/core/Segments/qcubicsegment2d.cpp index f2e4d0606..ebdba5d78 100644 --- a/src/core/Segments/qcubicsegment2d.cpp +++ b/src/core/Segments/qcubicsegment2d.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/qcubicsegment2d.h b/src/core/Segments/qcubicsegment2d.h index d66fc6a12..5b1e216ed 100644 --- a/src/core/Segments/qcubicsegment2d.h +++ b/src/core/Segments/qcubicsegment2d.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/quadsegment.cpp b/src/core/Segments/quadsegment.cpp index af4dd0302..2503b229b 100644 --- a/src/core/Segments/quadsegment.cpp +++ b/src/core/Segments/quadsegment.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/quadsegment.h b/src/core/Segments/quadsegment.h index 232cd633d..c26eddd95 100644 --- a/src/core/Segments/quadsegment.h +++ b/src/core/Segments/quadsegment.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/smoothcurves.cpp b/src/core/Segments/smoothcurves.cpp index 5cdd61ac9..24b432087 100644 --- a/src/core/Segments/smoothcurves.cpp +++ b/src/core/Segments/smoothcurves.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Segments/smoothcurves.h b/src/core/Segments/smoothcurves.h index ab4f1a182..38f67ace6 100644 --- a/src/core/Segments/smoothcurves.h +++ b/src/core/Segments/smoothcurves.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/PropertyCreators/intanimatorcreator.h b/src/core/ShaderEffects/PropertyCreators/intanimatorcreator.h index 598ec43dd..94fa6081e 100644 --- a/src/core/ShaderEffects/PropertyCreators/intanimatorcreator.h +++ b/src/core/ShaderEffects/PropertyCreators/intanimatorcreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/PropertyCreators/qpointfanimatorcreator.h b/src/core/ShaderEffects/PropertyCreators/qpointfanimatorcreator.h index bfe7b07ba..58820e01a 100644 --- a/src/core/ShaderEffects/PropertyCreators/qpointfanimatorcreator.h +++ b/src/core/ShaderEffects/PropertyCreators/qpointfanimatorcreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/PropertyCreators/qrealanimatorcreator.h b/src/core/ShaderEffects/PropertyCreators/qrealanimatorcreator.h index 517409360..eb293893e 100644 --- a/src/core/ShaderEffects/PropertyCreators/qrealanimatorcreator.h +++ b/src/core/ShaderEffects/PropertyCreators/qrealanimatorcreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/PropertyCreators/shaderpropertycreator.h b/src/core/ShaderEffects/PropertyCreators/shaderpropertycreator.h index 22df04d81..df3b42205 100644 --- a/src/core/ShaderEffects/PropertyCreators/shaderpropertycreator.h +++ b/src/core/ShaderEffects/PropertyCreators/shaderpropertycreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffect.cpp b/src/core/ShaderEffects/shadereffect.cpp index 1d3ed1145..a7c770399 100644 --- a/src/core/ShaderEffects/shadereffect.cpp +++ b/src/core/ShaderEffects/shadereffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffect.h b/src/core/ShaderEffects/shadereffect.h index cf8973f37..02d86c640 100644 --- a/src/core/ShaderEffects/shadereffect.h +++ b/src/core/ShaderEffects/shadereffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffectcaller.cpp b/src/core/ShaderEffects/shadereffectcaller.cpp index c887bd034..608ede156 100644 --- a/src/core/ShaderEffects/shadereffectcaller.cpp +++ b/src/core/ShaderEffects/shadereffectcaller.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffectcaller.h b/src/core/ShaderEffects/shadereffectcaller.h index 34cdca55c..44bff912d 100644 --- a/src/core/ShaderEffects/shadereffectcaller.h +++ b/src/core/ShaderEffects/shadereffectcaller.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffectcreator.cpp b/src/core/ShaderEffects/shadereffectcreator.cpp index 7dc280e28..6011016b1 100644 --- a/src/core/ShaderEffects/shadereffectcreator.cpp +++ b/src/core/ShaderEffects/shadereffectcreator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffectcreator.h b/src/core/ShaderEffects/shadereffectcreator.h index a703b657a..ef48456fb 100644 --- a/src/core/ShaderEffects/shadereffectcreator.h +++ b/src/core/ShaderEffects/shadereffectcreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffectjs.cpp b/src/core/ShaderEffects/shadereffectjs.cpp index a807550e6..9c1e59fec 100644 --- a/src/core/ShaderEffects/shadereffectjs.cpp +++ b/src/core/ShaderEffects/shadereffectjs.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffectjs.h b/src/core/ShaderEffects/shadereffectjs.h index 3884a8b39..4c840e2cc 100644 --- a/src/core/ShaderEffects/shadereffectjs.h +++ b/src/core/ShaderEffects/shadereffectjs.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffectprogram.cpp b/src/core/ShaderEffects/shadereffectprogram.cpp index e83d663ad..cd00846de 100644 --- a/src/core/ShaderEffects/shadereffectprogram.cpp +++ b/src/core/ShaderEffects/shadereffectprogram.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadereffectprogram.h b/src/core/ShaderEffects/shadereffectprogram.h index fd8cee030..8bbe9041f 100644 --- a/src/core/ShaderEffects/shadereffectprogram.h +++ b/src/core/ShaderEffects/shadereffectprogram.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadervaluehandler.cpp b/src/core/ShaderEffects/shadervaluehandler.cpp index 2cc355078..2a35ffb21 100644 --- a/src/core/ShaderEffects/shadervaluehandler.cpp +++ b/src/core/ShaderEffects/shadervaluehandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/shadervaluehandler.h b/src/core/ShaderEffects/shadervaluehandler.h index d8769af2d..89f9eb9e4 100644 --- a/src/core/ShaderEffects/shadervaluehandler.h +++ b/src/core/ShaderEffects/shadervaluehandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/uniformspecifiercreator.cpp b/src/core/ShaderEffects/uniformspecifiercreator.cpp index 2e1bb862a..e5a8de7a1 100644 --- a/src/core/ShaderEffects/uniformspecifiercreator.cpp +++ b/src/core/ShaderEffects/uniformspecifiercreator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/ShaderEffects/uniformspecifiercreator.h b/src/core/ShaderEffects/uniformspecifiercreator.h index b7e517677..4f61b7861 100644 --- a/src/core/ShaderEffects/uniformspecifiercreator.h +++ b/src/core/ShaderEffects/uniformspecifiercreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/audiohandler.cpp b/src/core/Sound/audiohandler.cpp index f34d71723..274156b8d 100644 --- a/src/core/Sound/audiohandler.cpp +++ b/src/core/Sound/audiohandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/audiohandler.h b/src/core/Sound/audiohandler.h index 78adc8cad..6408ae791 100644 --- a/src/core/Sound/audiohandler.h +++ b/src/core/Sound/audiohandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/eindependentsound.cpp b/src/core/Sound/eindependentsound.cpp index 6f08da67b..7f618337c 100644 --- a/src/core/Sound/eindependentsound.cpp +++ b/src/core/Sound/eindependentsound.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/eindependentsound.h b/src/core/Sound/eindependentsound.h index 4fc6bd1cc..9550cc6cf 100644 --- a/src/core/Sound/eindependentsound.h +++ b/src/core/Sound/eindependentsound.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/esound.cpp b/src/core/Sound/esound.cpp index 0bdb1a7bb..f25e04943 100644 --- a/src/core/Sound/esound.cpp +++ b/src/core/Sound/esound.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/esound.h b/src/core/Sound/esound.h index 866184096..087dd2139 100644 --- a/src/core/Sound/esound.h +++ b/src/core/Sound/esound.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/esoundlink.cpp b/src/core/Sound/esoundlink.cpp index b2eea72d3..2f8b4a1e4 100644 --- a/src/core/Sound/esoundlink.cpp +++ b/src/core/Sound/esoundlink.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/esoundlink.h b/src/core/Sound/esoundlink.h index c0b8a2afa..6c385ba1b 100644 --- a/src/core/Sound/esoundlink.h +++ b/src/core/Sound/esoundlink.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/esoundobjectbase.cpp b/src/core/Sound/esoundobjectbase.cpp index 699aa9aee..02007825e 100644 --- a/src/core/Sound/esoundobjectbase.cpp +++ b/src/core/Sound/esoundobjectbase.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/esoundobjectbase.h b/src/core/Sound/esoundobjectbase.h index 6f0ccc89d..4cd3ec396 100644 --- a/src/core/Sound/esoundobjectbase.h +++ b/src/core/Sound/esoundobjectbase.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/esoundsettings.cpp b/src/core/Sound/esoundsettings.cpp index d1c483a55..d9fb6ab77 100644 --- a/src/core/Sound/esoundsettings.cpp +++ b/src/core/Sound/esoundsettings.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/esoundsettings.h b/src/core/Sound/esoundsettings.h index 586be6ab0..fb56e32dc 100644 --- a/src/core/Sound/esoundsettings.h +++ b/src/core/Sound/esoundsettings.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/evideosound.cpp b/src/core/Sound/evideosound.cpp index 879cba1f4..d5b3fe6ea 100644 --- a/src/core/Sound/evideosound.cpp +++ b/src/core/Sound/evideosound.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/evideosound.h b/src/core/Sound/evideosound.h index 0d6429e71..c58fec21e 100644 --- a/src/core/Sound/evideosound.h +++ b/src/core/Sound/evideosound.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/soundcomposition.cpp b/src/core/Sound/soundcomposition.cpp index 56918f9c7..7e1f6e156 100644 --- a/src/core/Sound/soundcomposition.cpp +++ b/src/core/Sound/soundcomposition.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/soundcomposition.h b/src/core/Sound/soundcomposition.h index d1864eb0f..0409e276d 100644 --- a/src/core/Sound/soundcomposition.h +++ b/src/core/Sound/soundcomposition.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/soundmerger.cpp b/src/core/Sound/soundmerger.cpp index 9a19065a4..243a87c4d 100644 --- a/src/core/Sound/soundmerger.cpp +++ b/src/core/Sound/soundmerger.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Sound/soundmerger.h b/src/core/Sound/soundmerger.h index 6fb3332ba..125a03e47 100644 --- a/src/core/Sound/soundmerger.h +++ b/src/core/Sound/soundmerger.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Tasks/domeletask.cpp b/src/core/Tasks/domeletask.cpp index 75704ab14..93bb2d58b 100644 --- a/src/core/Tasks/domeletask.cpp +++ b/src/core/Tasks/domeletask.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Tasks/domeletask.h b/src/core/Tasks/domeletask.h index be549142d..bf9dbb2d7 100644 --- a/src/core/Tasks/domeletask.h +++ b/src/core/Tasks/domeletask.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Tasks/etask.cpp b/src/core/Tasks/etask.cpp index 86e4caeb6..48ef5c25d 100644 --- a/src/core/Tasks/etask.cpp +++ b/src/core/Tasks/etask.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Tasks/etask.h b/src/core/Tasks/etask.h index 54c3a35d4..964738641 100644 --- a/src/core/Tasks/etask.h +++ b/src/core/Tasks/etask.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Tasks/etaskbase.cpp b/src/core/Tasks/etaskbase.cpp index 858dd88ef..daefc0fd2 100644 --- a/src/core/Tasks/etaskbase.cpp +++ b/src/core/Tasks/etaskbase.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Tasks/etaskbase.h b/src/core/Tasks/etaskbase.h index f66d73525..b608e8f3e 100644 --- a/src/core/Tasks/etaskbase.h +++ b/src/core/Tasks/etaskbase.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Tasks/updatable.cpp b/src/core/Tasks/updatable.cpp index adefe6605..444266b01 100644 --- a/src/core/Tasks/updatable.cpp +++ b/src/core/Tasks/updatable.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Tasks/updatable.h b/src/core/Tasks/updatable.h index 21edf4322..3d5e27e65 100644 --- a/src/core/Tasks/updatable.h +++ b/src/core/Tasks/updatable.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Timeline/animationrect.cpp b/src/core/Timeline/animationrect.cpp index 6f6235210..d6bbce4e7 100644 --- a/src/core/Timeline/animationrect.cpp +++ b/src/core/Timeline/animationrect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Timeline/animationrect.h b/src/core/Timeline/animationrect.h index af919a89a..68cada44d 100644 --- a/src/core/Timeline/animationrect.h +++ b/src/core/Timeline/animationrect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Timeline/durationrectangle.cpp b/src/core/Timeline/durationrectangle.cpp index 16e66aa76..e713c7309 100644 --- a/src/core/Timeline/durationrectangle.cpp +++ b/src/core/Timeline/durationrectangle.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Timeline/durationrectangle.h b/src/core/Timeline/durationrectangle.h index d86956eb4..4ade5b5a5 100644 --- a/src/core/Timeline/durationrectangle.h +++ b/src/core/Timeline/durationrectangle.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Timeline/fixedlenanimationrect.cpp b/src/core/Timeline/fixedlenanimationrect.cpp index 29a252227..16269bbae 100644 --- a/src/core/Timeline/fixedlenanimationrect.cpp +++ b/src/core/Timeline/fixedlenanimationrect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/Timeline/fixedlenanimationrect.h b/src/core/Timeline/fixedlenanimationrect.h index 7e0b8ca83..d7f02c5c0 100644 --- a/src/core/Timeline/fixedlenanimationrect.h +++ b/src/core/Timeline/fixedlenanimationrect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/followobjecteffect.cpp b/src/core/TransformEffects/followobjecteffect.cpp index 7cac77003..b8bfa5f0a 100644 --- a/src/core/TransformEffects/followobjecteffect.cpp +++ b/src/core/TransformEffects/followobjecteffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/followobjecteffect.h b/src/core/TransformEffects/followobjecteffect.h index 907b2199b..a37c51e32 100644 --- a/src/core/TransformEffects/followobjecteffect.h +++ b/src/core/TransformEffects/followobjecteffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/followobjecteffectbase.cpp b/src/core/TransformEffects/followobjecteffectbase.cpp index 08071278e..44bc15c30 100644 --- a/src/core/TransformEffects/followobjecteffectbase.cpp +++ b/src/core/TransformEffects/followobjecteffectbase.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/followobjecteffectbase.h b/src/core/TransformEffects/followobjecteffectbase.h index f75863794..3c63f5bbd 100644 --- a/src/core/TransformEffects/followobjecteffectbase.h +++ b/src/core/TransformEffects/followobjecteffectbase.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/followobjectrelativeeffect.cpp b/src/core/TransformEffects/followobjectrelativeeffect.cpp index f125c752f..511972cf5 100644 --- a/src/core/TransformEffects/followobjectrelativeeffect.cpp +++ b/src/core/TransformEffects/followobjectrelativeeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/followobjectrelativeeffect.h b/src/core/TransformEffects/followobjectrelativeeffect.h index 99081eb20..53cd6a7b4 100644 --- a/src/core/TransformEffects/followobjectrelativeeffect.h +++ b/src/core/TransformEffects/followobjectrelativeeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/followpatheffect.cpp b/src/core/TransformEffects/followpatheffect.cpp index 1e577464a..c980cf1b8 100644 --- a/src/core/TransformEffects/followpatheffect.cpp +++ b/src/core/TransformEffects/followpatheffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/followpatheffect.h b/src/core/TransformEffects/followpatheffect.h index 53a32d82b..00353aad4 100644 --- a/src/core/TransformEffects/followpatheffect.h +++ b/src/core/TransformEffects/followpatheffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/parenteffect.cpp b/src/core/TransformEffects/parenteffect.cpp index ef1dc3aae..e84f53ade 100644 --- a/src/core/TransformEffects/parenteffect.cpp +++ b/src/core/TransformEffects/parenteffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/parenteffect.h b/src/core/TransformEffects/parenteffect.h index 4bcba5dd1..1ff462f65 100644 --- a/src/core/TransformEffects/parenteffect.h +++ b/src/core/TransformEffects/parenteffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/targettransformeffect.cpp b/src/core/TransformEffects/targettransformeffect.cpp index d10d17d9d..151e44c0d 100644 --- a/src/core/TransformEffects/targettransformeffect.cpp +++ b/src/core/TransformEffects/targettransformeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/targettransformeffect.h b/src/core/TransformEffects/targettransformeffect.h index 5b64ca7b6..cdfad6575 100644 --- a/src/core/TransformEffects/targettransformeffect.h +++ b/src/core/TransformEffects/targettransformeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/trackeffect.cpp b/src/core/TransformEffects/trackeffect.cpp index 53f73c59d..6168d4e66 100644 --- a/src/core/TransformEffects/trackeffect.cpp +++ b/src/core/TransformEffects/trackeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/trackeffect.h b/src/core/TransformEffects/trackeffect.h index 966d577d3..80683743d 100644 --- a/src/core/TransformEffects/trackeffect.h +++ b/src/core/TransformEffects/trackeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/transformeffect.cpp b/src/core/TransformEffects/transformeffect.cpp index 054f21bf5..f254a345e 100644 --- a/src/core/TransformEffects/transformeffect.cpp +++ b/src/core/TransformEffects/transformeffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/transformeffect.h b/src/core/TransformEffects/transformeffect.h index 2e80dd695..eb8fc43d3 100644 --- a/src/core/TransformEffects/transformeffect.h +++ b/src/core/TransformEffects/transformeffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/transformeffectcollection.cpp b/src/core/TransformEffects/transformeffectcollection.cpp index f7f5a2278..59561c9e6 100644 --- a/src/core/TransformEffects/transformeffectcollection.cpp +++ b/src/core/TransformEffects/transformeffectcollection.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/transformeffectcollection.h b/src/core/TransformEffects/transformeffectcollection.h index d6ac7c071..233d44281 100644 --- a/src/core/TransformEffects/transformeffectcollection.h +++ b/src/core/TransformEffects/transformeffectcollection.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/transformeffectmenucreator.cpp b/src/core/TransformEffects/transformeffectmenucreator.cpp index c6821361d..57c08ff12 100644 --- a/src/core/TransformEffects/transformeffectmenucreator.cpp +++ b/src/core/TransformEffects/transformeffectmenucreator.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/TransformEffects/transformeffectmenucreator.h b/src/core/TransformEffects/transformeffectmenucreator.h index c4b00c371..9eec24dc1 100644 --- a/src/core/TransformEffects/transformeffectmenucreator.h +++ b/src/core/TransformEffects/transformeffectmenucreator.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/runtimewriteid.h b/src/core/XML/runtimewriteid.h index 7a081e0c2..c5c285f42 100644 --- a/src/core/XML/runtimewriteid.h +++ b/src/core/XML/runtimewriteid.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/xevexporter.cpp b/src/core/XML/xevexporter.cpp index 136f32c58..3cd57f453 100644 --- a/src/core/XML/xevexporter.cpp +++ b/src/core/XML/xevexporter.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/xevexporter.h b/src/core/XML/xevexporter.h index ecfa41ff2..37a2850a7 100644 --- a/src/core/XML/xevexporter.h +++ b/src/core/XML/xevexporter.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/xevimporter.cpp b/src/core/XML/xevimporter.cpp index ff8a2c0dc..64c65e600 100644 --- a/src/core/XML/xevimporter.cpp +++ b/src/core/XML/xevimporter.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/xevimporter.h b/src/core/XML/xevimporter.h index 8f7288c72..168e1cd58 100644 --- a/src/core/XML/xevimporter.h +++ b/src/core/XML/xevimporter.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/xevzipfilesaver.cpp b/src/core/XML/xevzipfilesaver.cpp index fab79182f..ecbffaa6d 100644 --- a/src/core/XML/xevzipfilesaver.cpp +++ b/src/core/XML/xevzipfilesaver.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/xevzipfilesaver.h b/src/core/XML/xevzipfilesaver.h index b29fb39bf..24fff6fe4 100644 --- a/src/core/XML/xevzipfilesaver.h +++ b/src/core/XML/xevzipfilesaver.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/xmlexporthelpers.cpp b/src/core/XML/xmlexporthelpers.cpp index 1b08dc66c..d0a389fed 100644 --- a/src/core/XML/xmlexporthelpers.cpp +++ b/src/core/XML/xmlexporthelpers.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/XML/xmlexporthelpers.h b/src/core/XML/xmlexporthelpers.h index 3c8711142..34d012711 100644 --- a/src/core/XML/xmlexporthelpers.h +++ b/src/core/XML/xmlexporthelpers.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/action.cpp b/src/core/action.cpp index e649fb1bd..5796577d6 100644 --- a/src/core/action.cpp +++ b/src/core/action.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/action.h b/src/core/action.h index 4acb9a7d9..417183b5a 100644 --- a/src/core/action.h +++ b/src/core/action.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/actions.cpp b/src/core/actions.cpp index 28bef4c97..368b0df01 100644 --- a/src/core/actions.cpp +++ b/src/core/actions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/actions.h b/src/core/actions.h index 5497bb3c2..7326fe3de 100644 --- a/src/core/actions.h +++ b/src/core/actions.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/appsupport.cpp b/src/core/appsupport.cpp index d58361a3a..0100cc0d4 100644 --- a/src/core/appsupport.cpp +++ b/src/core/appsupport.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/appsupport.h b/src/core/appsupport.h index 054c990b3..adfd5e0b4 100644 --- a/src/core/appsupport.h +++ b/src/core/appsupport.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/canvasbase.cpp b/src/core/canvasbase.cpp index 76fc80ac3..5f8c93408 100644 --- a/src/core/canvasbase.cpp +++ b/src/core/canvasbase.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/canvasbase.h b/src/core/canvasbase.h index 63a483f6b..c1eaf97d8 100644 --- a/src/core/canvasbase.h +++ b/src/core/canvasbase.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/canvashandlesmartpath.cpp b/src/core/canvashandlesmartpath.cpp index 784ab2573..edc15603f 100644 --- a/src/core/canvashandlesmartpath.cpp +++ b/src/core/canvashandlesmartpath.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/canvasmouseevents.cpp b/src/core/canvasmouseevents.cpp index 052f520c1..e593981f7 100644 --- a/src/core/canvasmouseevents.cpp +++ b/src/core/canvasmouseevents.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/canvasmouseinteractions.cpp b/src/core/canvasmouseinteractions.cpp index a5ef4f90e..31db01357 100644 --- a/src/core/canvasmouseinteractions.cpp +++ b/src/core/canvasmouseinteractions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/canvasselectedboxesactions.cpp b/src/core/canvasselectedboxesactions.cpp index 9060c90ce..d609fef26 100644 --- a/src/core/canvasselectedboxesactions.cpp +++ b/src/core/canvasselectedboxesactions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/canvasselectedpointsactions.cpp b/src/core/canvasselectedpointsactions.cpp index 2f11251e4..2f604f560 100644 --- a/src/core/canvasselectedpointsactions.cpp +++ b/src/core/canvasselectedpointsactions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/clipboardcontainer.cpp b/src/core/clipboardcontainer.cpp index bd8c84b59..e1f6293d6 100644 --- a/src/core/clipboardcontainer.cpp +++ b/src/core/clipboardcontainer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/clipboardcontainer.h b/src/core/clipboardcontainer.h index 3d6ca41a6..30460ead8 100644 --- a/src/core/clipboardcontainer.h +++ b/src/core/clipboardcontainer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/colorhelpers.cpp b/src/core/colorhelpers.cpp index 891d779f9..12c2754dd 100644 --- a/src/core/colorhelpers.cpp +++ b/src/core/colorhelpers.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/colorhelpers.h b/src/core/colorhelpers.h index 8e775cf0b..acf003dd5 100644 --- a/src/core/colorhelpers.h +++ b/src/core/colorhelpers.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/colorsetting.cpp b/src/core/colorsetting.cpp index ec698289b..07e211298 100644 --- a/src/core/colorsetting.cpp +++ b/src/core/colorsetting.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/colorsetting.h b/src/core/colorsetting.h index 33ea36f12..9d0366f11 100644 --- a/src/core/colorsetting.h +++ b/src/core/colorsetting.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/conncontext.cpp b/src/core/conncontext.cpp index c16df0705..3d2f0687a 100644 --- a/src/core/conncontext.cpp +++ b/src/core/conncontext.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/conncontext.h b/src/core/conncontext.h index 3a8293351..be6db700c 100644 --- a/src/core/conncontext.h +++ b/src/core/conncontext.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/conncontextobjlist.h b/src/core/conncontextobjlist.h index 1e7a79375..5731c81de 100644 --- a/src/core/conncontextobjlist.h +++ b/src/core/conncontextobjlist.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/conncontextptr.h b/src/core/conncontextptr.h index 5b70b7d91..127714b96 100644 --- a/src/core/conncontextptr.h +++ b/src/core/conncontextptr.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/core_global.h b/src/core/core_global.h index c4f2cf193..4b996e189 100644 --- a/src/core/core_global.h +++ b/src/core/core_global.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/cpurendertools.cpp b/src/core/cpurendertools.cpp index 3364f5063..e7ec79acc 100644 --- a/src/core/cpurendertools.cpp +++ b/src/core/cpurendertools.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/cpurendertools.h b/src/core/cpurendertools.h index dab52d514..3e1443bf0 100644 --- a/src/core/cpurendertools.h +++ b/src/core/cpurendertools.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/customhandler.h b/src/core/customhandler.h index f0b8b6546..23df95120 100644 --- a/src/core/customhandler.h +++ b/src/core/customhandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/customidentifier.cpp b/src/core/customidentifier.cpp index aea3c66b8..ce59bced4 100644 --- a/src/core/customidentifier.cpp +++ b/src/core/customidentifier.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/customidentifier.h b/src/core/customidentifier.h index b6ed4266f..8d7191941 100644 --- a/src/core/customidentifier.h +++ b/src/core/customidentifier.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/differsinterpolate.cpp b/src/core/differsinterpolate.cpp index d3452e004..c63900478 100644 --- a/src/core/differsinterpolate.cpp +++ b/src/core/differsinterpolate.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/differsinterpolate.h b/src/core/differsinterpolate.h index 46222b450..450080256 100644 --- a/src/core/differsinterpolate.h +++ b/src/core/differsinterpolate.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/drawpath.cpp b/src/core/drawpath.cpp index 5d1c47eef..addba36de 100644 --- a/src/core/drawpath.cpp +++ b/src/core/drawpath.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/drawpath.h b/src/core/drawpath.h index 28ceb1cac..391ead3ad 100644 --- a/src/core/drawpath.h +++ b/src/core/drawpath.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/eevent.cpp b/src/core/eevent.cpp index 74f59ffa5..5c76f5b8f 100644 --- a/src/core/eevent.cpp +++ b/src/core/eevent.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/eevent.h b/src/core/eevent.h index 78475cc8f..bdd1800a7 100644 --- a/src/core/eevent.h +++ b/src/core/eevent.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/efiltersettings.cpp b/src/core/efiltersettings.cpp index bf2430bfa..d5af473d5 100644 --- a/src/core/efiltersettings.cpp +++ b/src/core/efiltersettings.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/efiltersettings.h b/src/core/efiltersettings.h index ea2823cef..91ad70899 100644 --- a/src/core/efiltersettings.h +++ b/src/core/efiltersettings.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/etexture.cpp b/src/core/etexture.cpp index 35fad4ee3..004137cfb 100644 --- a/src/core/etexture.cpp +++ b/src/core/etexture.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/etexture.h b/src/core/etexture.h index 115661da6..0f6188e97 100644 --- a/src/core/etexture.h +++ b/src/core/etexture.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/etextureframebuffer.cpp b/src/core/etextureframebuffer.cpp index 84708552b..c66cfba7e 100644 --- a/src/core/etextureframebuffer.cpp +++ b/src/core/etextureframebuffer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/etextureframebuffer.h b/src/core/etextureframebuffer.h index 4a7e22810..fc58cc2d9 100644 --- a/src/core/etextureframebuffer.h +++ b/src/core/etextureframebuffer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/exceptions.cpp b/src/core/exceptions.cpp index 87afc8892..78c981f8f 100644 --- a/src/core/exceptions.cpp +++ b/src/core/exceptions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/exceptions.h b/src/core/exceptions.h index 1614e047d..627c95d8c 100644 --- a/src/core/exceptions.h +++ b/src/core/exceptions.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/fileshandler.cpp b/src/core/fileshandler.cpp index f6fb62b1f..df71e0002 100644 --- a/src/core/fileshandler.cpp +++ b/src/core/fileshandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/fileshandler.h b/src/core/fileshandler.h index 8f0ccb4fa..4f73bebf6 100644 --- a/src/core/fileshandler.h +++ b/src/core/fileshandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/filesourcescache.cpp b/src/core/filesourcescache.cpp index 02ee5e122..fb75eecee 100644 --- a/src/core/filesourcescache.cpp +++ b/src/core/filesourcescache.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/filesourcescache.h b/src/core/filesourcescache.h index 88a813bad..291e1bd4f 100644 --- a/src/core/filesourcescache.h +++ b/src/core/filesourcescache.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/formatoptions.h b/src/core/formatoptions.h index 5aba0abc0..ad0bd1f49 100644 --- a/src/core/formatoptions.h +++ b/src/core/formatoptions.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/framerange.cpp b/src/core/framerange.cpp index 9d3b150c3..bb557c757 100644 --- a/src/core/framerange.cpp +++ b/src/core/framerange.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/framerange.h b/src/core/framerange.h index 14c9a021a..c9569f33b 100644 --- a/src/core/framerange.h +++ b/src/core/framerange.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/glhelpers.cpp b/src/core/glhelpers.cpp index e3471a319..011090d28 100644 --- a/src/core/glhelpers.cpp +++ b/src/core/glhelpers.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/glhelpers.h b/src/core/glhelpers.h index 1ac49a263..b75238649 100644 --- a/src/core/glhelpers.h +++ b/src/core/glhelpers.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/gpurendertools.cpp b/src/core/gpurendertools.cpp index 71ac33c9a..2f6ef04c1 100644 --- a/src/core/gpurendertools.cpp +++ b/src/core/gpurendertools.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/gpurendertools.h b/src/core/gpurendertools.h index b1456d0ce..be5cb72ef 100644 --- a/src/core/gpurendertools.h +++ b/src/core/gpurendertools.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/hardwareenums.h b/src/core/hardwareenums.h index 9fb01dda5..93a879542 100644 --- a/src/core/hardwareenums.h +++ b/src/core/hardwareenums.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/hardwareinfo.cpp b/src/core/hardwareinfo.cpp index b552f6d98..a5d7e71cb 100644 --- a/src/core/hardwareinfo.cpp +++ b/src/core/hardwareinfo.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/hardwareinfo.h b/src/core/hardwareinfo.h index afc377159..a20aef802 100644 --- a/src/core/hardwareinfo.h +++ b/src/core/hardwareinfo.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/importhandler.cpp b/src/core/importhandler.cpp index f7a2c63a7..ec3c3e947 100644 --- a/src/core/importhandler.cpp +++ b/src/core/importhandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/importhandler.h b/src/core/importhandler.h index ce9f2983f..a7994421b 100644 --- a/src/core/importhandler.h +++ b/src/core/importhandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/matrixdecomposition.cpp b/src/core/matrixdecomposition.cpp index 8fdf907fb..3ab205368 100644 --- a/src/core/matrixdecomposition.cpp +++ b/src/core/matrixdecomposition.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/matrixdecomposition.h b/src/core/matrixdecomposition.h index bf9a4db7d..b9ef054d2 100644 --- a/src/core/matrixdecomposition.h +++ b/src/core/matrixdecomposition.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/memorydatahandler.cpp b/src/core/memorydatahandler.cpp index 79ed6ecd6..f0e636e0f 100644 --- a/src/core/memorydatahandler.cpp +++ b/src/core/memorydatahandler.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/memorydatahandler.h b/src/core/memorydatahandler.h index 6762ab1fa..f5ee7dbe2 100644 --- a/src/core/memorydatahandler.h +++ b/src/core/memorydatahandler.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/namefixer.cpp b/src/core/namefixer.cpp index 4354eae57..61eb8c968 100644 --- a/src/core/namefixer.cpp +++ b/src/core/namefixer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/namefixer.h b/src/core/namefixer.h index 297ba64bb..ac98da19d 100644 --- a/src/core/namefixer.h +++ b/src/core/namefixer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/nodepointvalues.cpp b/src/core/nodepointvalues.cpp index 59f16e957..443b35d5a 100644 --- a/src/core/nodepointvalues.cpp +++ b/src/core/nodepointvalues.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/nodepointvalues.h b/src/core/nodepointvalues.h index 756534adf..e496b8f05 100644 --- a/src/core/nodepointvalues.h +++ b/src/core/nodepointvalues.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/paintsettings.cpp b/src/core/paintsettings.cpp index f0f86fef4..1ccb34964 100644 --- a/src/core/paintsettings.cpp +++ b/src/core/paintsettings.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/paintsettings.h b/src/core/paintsettings.h index 736df9781..d7b9c40ba 100644 --- a/src/core/paintsettings.h +++ b/src/core/paintsettings.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/paintsettingsapplier.cpp b/src/core/paintsettingsapplier.cpp index 794e0210c..097956036 100644 --- a/src/core/paintsettingsapplier.cpp +++ b/src/core/paintsettingsapplier.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/paintsettingsapplier.h b/src/core/paintsettingsapplier.h index 26857aaf6..6a6d1c6c6 100644 --- a/src/core/paintsettingsapplier.h +++ b/src/core/paintsettingsapplier.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/pathoperations.cpp b/src/core/pathoperations.cpp index 29a8193bc..dc6b3d7f9 100644 --- a/src/core/pathoperations.cpp +++ b/src/core/pathoperations.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/pathoperations.h b/src/core/pathoperations.h index 93cb0b156..22d1d2e2f 100644 --- a/src/core/pathoperations.h +++ b/src/core/pathoperations.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/pointhelpers.cpp b/src/core/pointhelpers.cpp index 8f30f0d8d..3a3b2833a 100644 --- a/src/core/pointhelpers.cpp +++ b/src/core/pointhelpers.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/pointhelpers.h b/src/core/pointhelpers.h index 91cc498e1..856dc0c5f 100644 --- a/src/core/pointhelpers.h +++ b/src/core/pointhelpers.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/pointtypemenu.h b/src/core/pointtypemenu.h index 1a917b2b5..cf52473c0 100644 --- a/src/core/pointtypemenu.h +++ b/src/core/pointtypemenu.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/randomgrid.cpp b/src/core/randomgrid.cpp index c86fb936a..6f7355309 100644 --- a/src/core/randomgrid.cpp +++ b/src/core/randomgrid.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/randomgrid.h b/src/core/randomgrid.h index 03b01911e..ba91d0378 100644 --- a/src/core/randomgrid.h +++ b/src/core/randomgrid.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/rangemap.h b/src/core/rangemap.h index 970979333..69a255d95 100644 --- a/src/core/rangemap.h +++ b/src/core/rangemap.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/regexhelpers.h b/src/core/regexhelpers.h index e8f8e03a4..7ade150d9 100644 --- a/src/core/regexhelpers.h +++ b/src/core/regexhelpers.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/renderinstancesettings.cpp b/src/core/renderinstancesettings.cpp index 5c759ad6c..2a7595acb 100644 --- a/src/core/renderinstancesettings.cpp +++ b/src/core/renderinstancesettings.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/renderinstancesettings.h b/src/core/renderinstancesettings.h index 3558426d6..08eda996a 100644 --- a/src/core/renderinstancesettings.h +++ b/src/core/renderinstancesettings.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/rendersettings.cpp b/src/core/rendersettings.cpp index e71a2fbc4..437c3a106 100644 --- a/src/core/rendersettings.cpp +++ b/src/core/rendersettings.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/rendersettings.h b/src/core/rendersettings.h index 5ca3176c2..1e10664f2 100644 --- a/src/core/rendersettings.h +++ b/src/core/rendersettings.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/shaders/maxalpha.frag b/src/core/shaders/maxalpha.frag index d1545ffbd..64649683f 100755 --- a/src/core/shaders/maxalpha.frag +++ b/src/core/shaders/maxalpha.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/simplemath.cpp b/src/core/simplemath.cpp index e4b73bf65..6b018115f 100644 --- a/src/core/simplemath.cpp +++ b/src/core/simplemath.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/simplemath.h b/src/core/simplemath.h index 8cc30ad3a..bb3cb48c3 100644 --- a/src/core/simplemath.h +++ b/src/core/simplemath.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/simpletask.cpp b/src/core/simpletask.cpp index 881822bf5..c5b37ccfc 100644 --- a/src/core/simpletask.cpp +++ b/src/core/simpletask.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/simpletask.h b/src/core/simpletask.h index 217fdb3ec..a76c55aff 100644 --- a/src/core/simpletask.h +++ b/src/core/simpletask.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/singlewidgettarget.cpp b/src/core/singlewidgettarget.cpp index e65758eec..f586425f2 100644 --- a/src/core/singlewidgettarget.cpp +++ b/src/core/singlewidgettarget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/singlewidgettarget.h b/src/core/singlewidgettarget.h index 5fa283609..e34508cf3 100644 --- a/src/core/singlewidgettarget.h +++ b/src/core/singlewidgettarget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/skia/skiadefines.h b/src/core/skia/skiadefines.h index c020ea1c6..d8ca5a263 100644 --- a/src/core/skia/skiadefines.h +++ b/src/core/skia/skiadefines.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/skia/skiahelpers.cpp b/src/core/skia/skiahelpers.cpp index c9e7b1928..8843c03a4 100644 --- a/src/core/skia/skiahelpers.cpp +++ b/src/core/skia/skiahelpers.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/skia/skiahelpers.h b/src/core/skia/skiahelpers.h index 8e7dc3de6..5e12c9a81 100644 --- a/src/core/skia/skiahelpers.h +++ b/src/core/skia/skiahelpers.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/skia/skiaincludes.h b/src/core/skia/skiaincludes.h index 23b8b156a..0d38de81c 100644 --- a/src/core/skia/skiaincludes.h +++ b/src/core/skia/skiaincludes.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/skia/skqtconversions.cpp b/src/core/skia/skqtconversions.cpp index 9a456e760..ab45376e5 100644 --- a/src/core/skia/skqtconversions.cpp +++ b/src/core/skia/skqtconversions.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/skia/skqtconversions.h b/src/core/skia/skqtconversions.h index c28e2037b..3569563e5 100644 --- a/src/core/skia/skqtconversions.h +++ b/src/core/skia/skqtconversions.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/smartPointers/ememory.h b/src/core/smartPointers/ememory.h index 8e72e29e4..c092b2198 100644 --- a/src/core/smartPointers/ememory.h +++ b/src/core/smartPointers/ememory.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/smartPointers/eobject.h b/src/core/smartPointers/eobject.h index 05b210bb8..5f75c4117 100644 --- a/src/core/smartPointers/eobject.h +++ b/src/core/smartPointers/eobject.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/smartPointers/selfref.h b/src/core/smartPointers/selfref.h index 212618b29..54d83ffe5 100644 --- a/src/core/smartPointers/selfref.h +++ b/src/core/smartPointers/selfref.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/smartPointers/stdpointer.cpp b/src/core/smartPointers/stdpointer.cpp index d6a20996a..62ff1cab9 100644 --- a/src/core/smartPointers/stdpointer.cpp +++ b/src/core/smartPointers/stdpointer.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/smartPointers/stdpointer.h b/src/core/smartPointers/stdpointer.h index dba9aa348..203526c34 100644 --- a/src/core/smartPointers/stdpointer.h +++ b/src/core/smartPointers/stdpointer.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/smartPointers/stdselfref.cpp b/src/core/smartPointers/stdselfref.cpp index 44c59ba03..b1261cf8f 100644 --- a/src/core/smartPointers/stdselfref.cpp +++ b/src/core/smartPointers/stdselfref.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/smartPointers/stdselfref.h b/src/core/smartPointers/stdselfref.h index 4f6cde9c1..bfcd2e63e 100644 --- a/src/core/smartPointers/stdselfref.h +++ b/src/core/smartPointers/stdselfref.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/svgexporthelpers.cpp b/src/core/svgexporthelpers.cpp index 50e506037..cafdad509 100644 --- a/src/core/svgexporthelpers.cpp +++ b/src/core/svgexporthelpers.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/svgexporthelpers.h b/src/core/svgexporthelpers.h index 38beada01..2d33adb05 100644 --- a/src/core/svgexporthelpers.h +++ b/src/core/svgexporthelpers.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/svgimporter.cpp b/src/core/svgimporter.cpp index 3a7a8a3ab..e2ecffd69 100644 --- a/src/core/svgimporter.cpp +++ b/src/core/svgimporter.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/svgimporter.h b/src/core/svgimporter.h index b925a31a9..a72332758 100644 --- a/src/core/svgimporter.h +++ b/src/core/svgimporter.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/switchablecontext.cpp b/src/core/switchablecontext.cpp index ae6295ebc..f2fd054fa 100644 --- a/src/core/switchablecontext.cpp +++ b/src/core/switchablecontext.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/switchablecontext.h b/src/core/switchablecontext.h index 43b6e592c..e9ae98222 100644 --- a/src/core/switchablecontext.h +++ b/src/core/switchablecontext.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/swt_abstraction.cpp b/src/core/swt_abstraction.cpp index 80c633698..27b00bbe8 100644 --- a/src/core/swt_abstraction.cpp +++ b/src/core/swt_abstraction.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/swt_abstraction.h b/src/core/swt_abstraction.h index 07ab0918d..0f31d383a 100644 --- a/src/core/swt_abstraction.h +++ b/src/core/swt_abstraction.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/swt_rulescollection.cpp b/src/core/swt_rulescollection.cpp index b28bb76a6..13ac53836 100644 --- a/src/core/swt_rulescollection.cpp +++ b/src/core/swt_rulescollection.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/swt_rulescollection.h b/src/core/swt_rulescollection.h index f6028180a..30070490d 100644 --- a/src/core/swt_rulescollection.h +++ b/src/core/swt_rulescollection.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/texteffect.cpp b/src/core/texteffect.cpp index 9a0cae864..d8ee35ee6 100644 --- a/src/core/texteffect.cpp +++ b/src/core/texteffect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/texteffect.h b/src/core/texteffect.h index 74b257d62..d8a5d7807 100644 --- a/src/core/texteffect.h +++ b/src/core/texteffect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/themesupport.cpp b/src/core/themesupport.cpp index 57ac0bf45..50f0b30ab 100644 --- a/src/core/themesupport.cpp +++ b/src/core/themesupport.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/themesupport.h b/src/core/themesupport.h index 66d201eb3..bbe56c200 100644 --- a/src/core/themesupport.h +++ b/src/core/themesupport.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/transformvalues.cpp b/src/core/transformvalues.cpp index 9e353f258..091877e1a 100644 --- a/src/core/transformvalues.cpp +++ b/src/core/transformvalues.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/transformvalues.h b/src/core/transformvalues.h index fa42e2333..b25b6911d 100644 --- a/src/core/transformvalues.h +++ b/src/core/transformvalues.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/typemenu.cpp b/src/core/typemenu.cpp index ba819aa83..01d3f1d03 100644 --- a/src/core/typemenu.cpp +++ b/src/core/typemenu.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/typemenu.h b/src/core/typemenu.h index 7409d6982..90413437d 100644 --- a/src/core/typemenu.h +++ b/src/core/typemenu.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/undoredo.cpp b/src/core/undoredo.cpp index de7fe0c4d..df2ab51a5 100644 --- a/src/core/undoredo.cpp +++ b/src/core/undoredo.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/undoredo.h b/src/core/undoredo.h index c5fbb0a38..db2c6130d 100644 --- a/src/core/undoredo.h +++ b/src/core/undoredo.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/videoencoder.cpp b/src/core/videoencoder.cpp index d34edbeec..d99f3c5be 100644 --- a/src/core/videoencoder.cpp +++ b/src/core/videoencoder.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/videoencoder.h b/src/core/videoencoder.h index 91922ffb5..bacc65d54 100644 --- a/src/core/videoencoder.h +++ b/src/core/videoencoder.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/wrappedint.cpp b/src/core/wrappedint.cpp index 70db60003..c4a6bf5af 100644 --- a/src/core/wrappedint.cpp +++ b/src/core/wrappedint.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/wrappedint.h b/src/core/wrappedint.h index d763dd73a..c5cebbd1d 100644 --- a/src/core/wrappedint.h +++ b/src/core/wrappedint.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/zipfileloader.cpp b/src/core/zipfileloader.cpp index a6f1f9ba3..08d029072 100644 --- a/src/core/zipfileloader.cpp +++ b/src/core/zipfileloader.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/zipfileloader.h b/src/core/zipfileloader.h index 7ac7bbc94..7cfb75c12 100644 --- a/src/core/zipfileloader.h +++ b/src/core/zipfileloader.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/zipfilesaver.cpp b/src/core/zipfilesaver.cpp index 42a1028be..afb9994cb 100644 --- a/src/core/zipfilesaver.cpp +++ b/src/core/zipfilesaver.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/core/zipfilesaver.h b/src/core/zipfilesaver.h index ef2333d8c..b543d83d6 100644 --- a/src/core/zipfilesaver.h +++ b/src/core/zipfilesaver.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/engine/CMakeLists.txt b/src/engine/CMakeLists.txt index fd49e61e9..5228e6a09 100644 --- a/src/engine/CMakeLists.txt +++ b/src/engine/CMakeLists.txt @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/pathEffects/eLinearize/elinearize.cpp b/src/examples/pathEffects/eLinearize/elinearize.cpp index 327c1aa2d..da8385e50 100755 --- a/src/examples/pathEffects/eLinearize/elinearize.cpp +++ b/src/examples/pathEffects/eLinearize/elinearize.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/pathEffects/eLinearize/elinearize.h b/src/examples/pathEffects/eLinearize/elinearize.h index 9a284274a..af1b501cf 100755 --- a/src/examples/pathEffects/eLinearize/elinearize.h +++ b/src/examples/pathEffects/eLinearize/elinearize.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/pathEffects/eLinearize/elinearize_global.h b/src/examples/pathEffects/eLinearize/elinearize_global.h index 20361f12e..196da44b1 100755 --- a/src/examples/pathEffects/eLinearize/elinearize_global.h +++ b/src/examples/pathEffects/eLinearize/elinearize_global.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/dabTest/dabtest.cpp b/src/examples/rasterEffects/dabTest/dabtest.cpp index 9e7fa27d2..01dd05b50 100755 --- a/src/examples/rasterEffects/dabTest/dabtest.cpp +++ b/src/examples/rasterEffects/dabTest/dabtest.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/dabTest/dabtest.h b/src/examples/rasterEffects/dabTest/dabtest.h index 936838075..3bb5d08a9 100755 --- a/src/examples/rasterEffects/dabTest/dabtest.h +++ b/src/examples/rasterEffects/dabTest/dabtest.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/dabTest/dabtest_global.h b/src/examples/rasterEffects/dabTest/dabtest_global.h index dedab989b..945299998 100755 --- a/src/examples/rasterEffects/dabTest/dabtest_global.h +++ b/src/examples/rasterEffects/dabTest/dabtest_global.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/dabTest/normal.frag b/src/examples/rasterEffects/dabTest/normal.frag index 5735e9de0..0672fbda5 100755 --- a/src/examples/rasterEffects/dabTest/normal.frag +++ b/src/examples/rasterEffects/dabTest/normal.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/eBlur/eblur.cpp b/src/examples/rasterEffects/eBlur/eblur.cpp index 1a42e758e..4203290e7 100755 --- a/src/examples/rasterEffects/eBlur/eblur.cpp +++ b/src/examples/rasterEffects/eBlur/eblur.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/eBlur/eblur.h b/src/examples/rasterEffects/eBlur/eblur.h index 8709c2293..afea029c0 100755 --- a/src/examples/rasterEffects/eBlur/eblur.h +++ b/src/examples/rasterEffects/eBlur/eblur.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/eBlur/eblur_global.h b/src/examples/rasterEffects/eBlur/eblur_global.h index dd0634eb6..acf7a0dbf 100755 --- a/src/examples/rasterEffects/eBlur/eblur_global.h +++ b/src/examples/rasterEffects/eBlur/eblur_global.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/eShadow/eshadow.cpp b/src/examples/rasterEffects/eShadow/eshadow.cpp index 107c0acb1..085e6c7e8 100755 --- a/src/examples/rasterEffects/eShadow/eshadow.cpp +++ b/src/examples/rasterEffects/eShadow/eshadow.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/eShadow/eshadow.h b/src/examples/rasterEffects/eShadow/eshadow.h index a0d809632..ac6cdea66 100755 --- a/src/examples/rasterEffects/eShadow/eshadow.h +++ b/src/examples/rasterEffects/eShadow/eshadow.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/rasterEffects/eShadow/eshadow_global.h b/src/examples/rasterEffects/eShadow/eshadow_global.h index 29db99a67..154fe5d5b 100755 --- a/src/examples/rasterEffects/eShadow/eshadow_global.h +++ b/src/examples/rasterEffects/eShadow/eshadow_global.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eBrightnessContrast.frag b/src/examples/shaderEffects/eBrightnessContrast.frag index cb29911a1..dbb6204d7 100755 --- a/src/examples/shaderEffects/eBrightnessContrast.frag +++ b/src/examples/shaderEffects/eBrightnessContrast.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eColorize.frag b/src/examples/shaderEffects/eColorize.frag index e948e9771..c6a5c482f 100755 --- a/src/examples/shaderEffects/eColorize.frag +++ b/src/examples/shaderEffects/eColorize.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eColorize2.frag b/src/examples/shaderEffects/eColorize2.frag index aa6325c2e..ac358ebfa 100755 --- a/src/examples/shaderEffects/eColorize2.frag +++ b/src/examples/shaderEffects/eColorize2.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eDots.frag b/src/examples/shaderEffects/eDots.frag index 4624dae5f..b7b1150b7 100755 --- a/src/examples/shaderEffects/eDots.frag +++ b/src/examples/shaderEffects/eDots.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eExplode.frag b/src/examples/shaderEffects/eExplode.frag index 5ba2b55df..4cc8633b4 100755 --- a/src/examples/shaderEffects/eExplode.frag +++ b/src/examples/shaderEffects/eExplode.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eMultiplyRed.frag b/src/examples/shaderEffects/eMultiplyRed.frag index a788596a7..4b2b5b4a8 100755 --- a/src/examples/shaderEffects/eMultiplyRed.frag +++ b/src/examples/shaderEffects/eMultiplyRed.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eNoiseFade.frag b/src/examples/shaderEffects/eNoiseFade.frag index 2f465682e..ee3446060 100644 --- a/src/examples/shaderEffects/eNoiseFade.frag +++ b/src/examples/shaderEffects/eNoiseFade.frag @@ -6,7 +6,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eWipe.frag b/src/examples/shaderEffects/eWipe.frag index b5777c89d..575d311fa 100644 --- a/src/examples/shaderEffects/eWipe.frag +++ b/src/examples/shaderEffects/eWipe.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eWipeLeft.frag b/src/examples/shaderEffects/eWipeLeft.frag index 2a7708cae..49bc4ffd1 100644 --- a/src/examples/shaderEffects/eWipeLeft.frag +++ b/src/examples/shaderEffects/eWipeLeft.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/examples/shaderEffects/eWipeRight.frag b/src/examples/shaderEffects/eWipeRight.frag index fc596500d..d524577f7 100644 --- a/src/examples/shaderEffects/eWipeRight.frag +++ b/src/examples/shaderEffects/eWipeRight.frag @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build.bat b/src/scripts/build.bat index 5850cec04..c1e4c71ce 100644 --- a/src/scripts/build.bat +++ b/src/scripts/build.bat @@ -1,7 +1,7 @@ @echo off REM ### BUILD FRICTION ON WINDOWS -REM # Copyright (c) Friction contributors +REM # Copyright (c) Ole-André Rodlie and contributors REM # GPLv3+ set OPT=%1 diff --git a/src/scripts/build.sh b/src/scripts/build.sh index f9446475a..d58352755 100755 --- a/src/scripts/build.sh +++ b/src/scripts/build.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_changelog.sh b/src/scripts/build_changelog.sh index 5fb31df49..7e7076c51 100755 --- a/src/scripts/build_changelog.sh +++ b/src/scripts/build_changelog.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_hicolor.sh b/src/scripts/build_hicolor.sh index 342ab7168..0967f36fc 100755 --- a/src/scripts/build_hicolor.sh +++ b/src/scripts/build_hicolor.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_qscintilla.bat b/src/scripts/build_qscintilla.bat index 16b98b8b9..ed02bdbe7 100644 --- a/src/scripts/build_qscintilla.bat +++ b/src/scripts/build_qscintilla.bat @@ -1,7 +1,7 @@ @echo off REM ### BUILD QSCINTILLA FOR FRICTION -REM # Copyright (c) Friction contributors +REM # Copyright (c) Ole-André Rodlie and contributors REM # GPLv3+ set CWD=%cd% diff --git a/src/scripts/build_qt5.bat b/src/scripts/build_qt5.bat index 29c475848..f9181d0cb 100644 --- a/src/scripts/build_qt5.bat +++ b/src/scripts/build_qt5.bat @@ -1,7 +1,7 @@ @echo off REM ### BUILD QT 5.15 FOR FRICTION -REM # Copyright (c) Friction contributors +REM # Copyright (c) Ole-André Rodlie and contributors REM # GPLv3+ set CWD=%cd% diff --git a/src/scripts/build_source_tarball.sh b/src/scripts/build_source_tarball.sh index 8af91640e..78432160c 100755 --- a/src/scripts/build_source_tarball.sh +++ b/src/scripts/build_source_tarball.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_vfxplatform.sh b/src/scripts/build_vfxplatform.sh index 1cb83052b..16717e7ac 100755 --- a/src/scripts/build_vfxplatform.sh +++ b/src/scripts/build_vfxplatform.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_vfxplatform_friction.sh b/src/scripts/build_vfxplatform_friction.sh index 53c1e71c7..f49f10e2f 100755 --- a/src/scripts/build_vfxplatform_friction.sh +++ b/src/scripts/build_vfxplatform_friction.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_vfxplatform_package.sh b/src/scripts/build_vfxplatform_package.sh index 20d43bdee..07e2e0a68 100755 --- a/src/scripts/build_vfxplatform_package.sh +++ b/src/scripts/build_vfxplatform_package.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_vfxplatform_sdk01.sh b/src/scripts/build_vfxplatform_sdk01.sh index 3a01068e7..a8338ab59 100755 --- a/src/scripts/build_vfxplatform_sdk01.sh +++ b/src/scripts/build_vfxplatform_sdk01.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_vfxplatform_sdk02.sh b/src/scripts/build_vfxplatform_sdk02.sh index 2333e7b9f..204f82c5b 100755 --- a/src/scripts/build_vfxplatform_sdk02.sh +++ b/src/scripts/build_vfxplatform_sdk02.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/build_vfxplatform_sdk03.sh b/src/scripts/build_vfxplatform_sdk03.sh index 7356d94c5..d6f4215cc 100755 --- a/src/scripts/build_vfxplatform_sdk03.sh +++ b/src/scripts/build_vfxplatform_sdk03.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/ci.sh b/src/scripts/ci.sh index e7f005856..a7061bce6 100755 --- a/src/scripts/ci.sh +++ b/src/scripts/ci.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/configure_qt5.bat b/src/scripts/configure_qt5.bat index 267add9ea..6a9b4c547 100644 --- a/src/scripts/configure_qt5.bat +++ b/src/scripts/configure_qt5.bat @@ -1,7 +1,7 @@ @echo off REM ### CONFIGURE QT 5.15 FOR FRICTION -REM # Copyright (c) Friction contributors +REM # Copyright (c) Ole-André Rodlie and contributors REM # GPLv3+ set CWD=%cd% diff --git a/src/scripts/easing/build.sh b/src/scripts/easing/build.sh index fdd036b12..d74e9ba86 100755 --- a/src/scripts/easing/build.sh +++ b/src/scripts/easing/build.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/make_ico.sh b/src/scripts/make_ico.sh index a8d57dca5..5034b0e6a 100755 --- a/src/scripts/make_ico.sh +++ b/src/scripts/make_ico.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/mkicns.sh b/src/scripts/mkicns.sh index 4365e1545..31f8e2a6b 100755 --- a/src/scripts/mkicns.sh +++ b/src/scripts/mkicns.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/scripts/run_docker.sh b/src/scripts/run_docker.sh index b8483820a..262627fc8 100755 --- a/src/scripts/run_docker.sh +++ b/src/scripts/run_docker.sh @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index 28d9b92e3..a9d28bdc1 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -1,7 +1,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/adjustscenedialog.cpp b/src/ui/dialogs/adjustscenedialog.cpp index 088b801b6..0b8b4a449 100644 --- a/src/ui/dialogs/adjustscenedialog.cpp +++ b/src/ui/dialogs/adjustscenedialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/adjustscenedialog.h b/src/ui/dialogs/adjustscenedialog.h index 3d3bf431b..b7127c4cf 100644 --- a/src/ui/dialogs/adjustscenedialog.h +++ b/src/ui/dialogs/adjustscenedialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/applyexpressiondialog.cpp b/src/ui/dialogs/applyexpressiondialog.cpp index 5ea054a19..75c73effe 100644 --- a/src/ui/dialogs/applyexpressiondialog.cpp +++ b/src/ui/dialogs/applyexpressiondialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/applyexpressiondialog.h b/src/ui/dialogs/applyexpressiondialog.h index 18ac5cf27..1c5eb4d51 100644 --- a/src/ui/dialogs/applyexpressiondialog.h +++ b/src/ui/dialogs/applyexpressiondialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/commandpalette.cpp b/src/ui/dialogs/commandpalette.cpp index 99ef8a102..d43421c85 100644 --- a/src/ui/dialogs/commandpalette.cpp +++ b/src/ui/dialogs/commandpalette.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/commandpalette.h b/src/ui/dialogs/commandpalette.h index a4d0a5c4f..8fd19c48f 100644 --- a/src/ui/dialogs/commandpalette.h +++ b/src/ui/dialogs/commandpalette.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/durationrectsettingsdialog.cpp b/src/ui/dialogs/durationrectsettingsdialog.cpp index 9c9821880..3acb80d97 100644 --- a/src/ui/dialogs/durationrectsettingsdialog.cpp +++ b/src/ui/dialogs/durationrectsettingsdialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/durationrectsettingsdialog.h b/src/ui/dialogs/durationrectsettingsdialog.h index fdc5c1a90..7f9843442 100644 --- a/src/ui/dialogs/durationrectsettingsdialog.h +++ b/src/ui/dialogs/durationrectsettingsdialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/markereditordialog.cpp b/src/ui/dialogs/markereditordialog.cpp index f198c7b7f..904ad3466 100644 --- a/src/ui/dialogs/markereditordialog.cpp +++ b/src/ui/dialogs/markereditordialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/markereditordialog.h b/src/ui/dialogs/markereditordialog.h index 44c2aed74..5f158f811 100644 --- a/src/ui/dialogs/markereditordialog.h +++ b/src/ui/dialogs/markereditordialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/qrealpointvaluedialog.cpp b/src/ui/dialogs/qrealpointvaluedialog.cpp index 54256f155..d010cda71 100644 --- a/src/ui/dialogs/qrealpointvaluedialog.cpp +++ b/src/ui/dialogs/qrealpointvaluedialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/qrealpointvaluedialog.h b/src/ui/dialogs/qrealpointvaluedialog.h index 60344aa8a..ac316e722 100644 --- a/src/ui/dialogs/qrealpointvaluedialog.h +++ b/src/ui/dialogs/qrealpointvaluedialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/renderoutputwidget.cpp b/src/ui/dialogs/renderoutputwidget.cpp index 06ce7720e..88da19890 100644 --- a/src/ui/dialogs/renderoutputwidget.cpp +++ b/src/ui/dialogs/renderoutputwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/renderoutputwidget.h b/src/ui/dialogs/renderoutputwidget.h index eafa0d462..81b990c3a 100644 --- a/src/ui/dialogs/renderoutputwidget.h +++ b/src/ui/dialogs/renderoutputwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/scenesettingsdialog.cpp b/src/ui/dialogs/scenesettingsdialog.cpp index 78b8dd1e9..5884a91f1 100644 --- a/src/ui/dialogs/scenesettingsdialog.cpp +++ b/src/ui/dialogs/scenesettingsdialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/dialogs/scenesettingsdialog.h b/src/ui/dialogs/scenesettingsdialog.h index 26eb1465d..3789fab23 100644 --- a/src/ui/dialogs/scenesettingsdialog.h +++ b/src/ui/dialogs/scenesettingsdialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/gradientwidgets/currentgradientwidget.cpp b/src/ui/gradientwidgets/currentgradientwidget.cpp index e5ba07796..6ccf281af 100644 --- a/src/ui/gradientwidgets/currentgradientwidget.cpp +++ b/src/ui/gradientwidgets/currentgradientwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/gradientwidgets/currentgradientwidget.h b/src/ui/gradientwidgets/currentgradientwidget.h index 3e968eb06..501a42c16 100644 --- a/src/ui/gradientwidgets/currentgradientwidget.h +++ b/src/ui/gradientwidgets/currentgradientwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/gradientwidgets/displayedgradientswidget.cpp b/src/ui/gradientwidgets/displayedgradientswidget.cpp index 749bbfc97..764d31aed 100644 --- a/src/ui/gradientwidgets/displayedgradientswidget.cpp +++ b/src/ui/gradientwidgets/displayedgradientswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/gradientwidgets/displayedgradientswidget.h b/src/ui/gradientwidgets/displayedgradientswidget.h index 9816d3aa0..236f3d1a0 100644 --- a/src/ui/gradientwidgets/displayedgradientswidget.h +++ b/src/ui/gradientwidgets/displayedgradientswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/gradientwidgets/gradientslistwidget.cpp b/src/ui/gradientwidgets/gradientslistwidget.cpp index c84521073..44f2c7567 100644 --- a/src/ui/gradientwidgets/gradientslistwidget.cpp +++ b/src/ui/gradientwidgets/gradientslistwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/gradientwidgets/gradientslistwidget.h b/src/ui/gradientwidgets/gradientslistwidget.h index af8feb03f..89a968d20 100644 --- a/src/ui/gradientwidgets/gradientslistwidget.h +++ b/src/ui/gradientwidgets/gradientslistwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/gradientwidgets/gradientwidget.cpp b/src/ui/gradientwidgets/gradientwidget.cpp index 0f831536c..63e93da81 100644 --- a/src/ui/gradientwidgets/gradientwidget.cpp +++ b/src/ui/gradientwidgets/gradientwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/gradientwidgets/gradientwidget.h b/src/ui/gradientwidgets/gradientwidget.h index b0f2a056b..dcbfb8116 100644 --- a/src/ui/gradientwidgets/gradientwidget.h +++ b/src/ui/gradientwidgets/gradientwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/misc/keyfocustarget.cpp b/src/ui/misc/keyfocustarget.cpp index cde55b700..4abf2bee5 100644 --- a/src/ui/misc/keyfocustarget.cpp +++ b/src/ui/misc/keyfocustarget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/misc/keyfocustarget.h b/src/ui/misc/keyfocustarget.h index 0f6084955..54ab29fd9 100644 --- a/src/ui/misc/keyfocustarget.h +++ b/src/ui/misc/keyfocustarget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/misc/noshortcutaction.cpp b/src/ui/misc/noshortcutaction.cpp index eeae164e4..9a4c8c4b7 100644 --- a/src/ui/misc/noshortcutaction.cpp +++ b/src/ui/misc/noshortcutaction.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/misc/noshortcutaction.h b/src/ui/misc/noshortcutaction.h index 2953c62d8..ef8ce3b4e 100644 --- a/src/ui/misc/noshortcutaction.h +++ b/src/ui/misc/noshortcutaction.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/minimalscrollwidget.cpp b/src/ui/optimalscrollarena/minimalscrollwidget.cpp index ce93b89c7..16eafd301 100644 --- a/src/ui/optimalscrollarena/minimalscrollwidget.cpp +++ b/src/ui/optimalscrollarena/minimalscrollwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/minimalscrollwidget.h b/src/ui/optimalscrollarena/minimalscrollwidget.h index 11bfa8561..d1d61498b 100644 --- a/src/ui/optimalscrollarena/minimalscrollwidget.h +++ b/src/ui/optimalscrollarena/minimalscrollwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/scrollarea.cpp b/src/ui/optimalscrollarena/scrollarea.cpp index 2c328379b..6e2fd9053 100644 --- a/src/ui/optimalscrollarena/scrollarea.cpp +++ b/src/ui/optimalscrollarena/scrollarea.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/scrollarea.h b/src/ui/optimalscrollarena/scrollarea.h index 1e9fcb578..0d752d834 100644 --- a/src/ui/optimalscrollarena/scrollarea.h +++ b/src/ui/optimalscrollarena/scrollarea.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/scrollvisiblepartbase.cpp b/src/ui/optimalscrollarena/scrollvisiblepartbase.cpp index c89a74193..35f1e79c3 100644 --- a/src/ui/optimalscrollarena/scrollvisiblepartbase.cpp +++ b/src/ui/optimalscrollarena/scrollvisiblepartbase.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/scrollvisiblepartbase.h b/src/ui/optimalscrollarena/scrollvisiblepartbase.h index d6c4089be..01eb3be6d 100644 --- a/src/ui/optimalscrollarena/scrollvisiblepartbase.h +++ b/src/ui/optimalscrollarena/scrollvisiblepartbase.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/scrollwidget.cpp b/src/ui/optimalscrollarena/scrollwidget.cpp index 98b55869e..eb7634660 100644 --- a/src/ui/optimalscrollarena/scrollwidget.cpp +++ b/src/ui/optimalscrollarena/scrollwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/scrollwidget.h b/src/ui/optimalscrollarena/scrollwidget.h index 1638cbceb..c57a90c8e 100644 --- a/src/ui/optimalscrollarena/scrollwidget.h +++ b/src/ui/optimalscrollarena/scrollwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/scrollwidgetvisiblepart.cpp b/src/ui/optimalscrollarena/scrollwidgetvisiblepart.cpp index cd00d4490..a3ce1705e 100644 --- a/src/ui/optimalscrollarena/scrollwidgetvisiblepart.cpp +++ b/src/ui/optimalscrollarena/scrollwidgetvisiblepart.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/scrollwidgetvisiblepart.h b/src/ui/optimalscrollarena/scrollwidgetvisiblepart.h index c5ba775bf..b6233d089 100644 --- a/src/ui/optimalscrollarena/scrollwidgetvisiblepart.h +++ b/src/ui/optimalscrollarena/scrollwidgetvisiblepart.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/singlewidget.cpp b/src/ui/optimalscrollarena/singlewidget.cpp index 03ae9d5a8..d1a70626d 100644 --- a/src/ui/optimalscrollarena/singlewidget.cpp +++ b/src/ui/optimalscrollarena/singlewidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/optimalscrollarena/singlewidget.h b/src/ui/optimalscrollarena/singlewidget.h index d912c60c6..234e700cc 100644 --- a/src/ui/optimalscrollarena/singlewidget.h +++ b/src/ui/optimalscrollarena/singlewidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/ui_global.h b/src/ui/ui_global.h index 8f28db9ec..53f57a5b0 100644 --- a/src/ui/ui_global.h +++ b/src/ui/ui_global.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/aboutwidget.cpp b/src/ui/widgets/aboutwidget.cpp index 41acdf4f1..cfac931ad 100644 --- a/src/ui/widgets/aboutwidget.cpp +++ b/src/ui/widgets/aboutwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/aboutwidget.h b/src/ui/widgets/aboutwidget.h index f31c854dc..5dbbcf3ea 100644 --- a/src/ui/widgets/aboutwidget.h +++ b/src/ui/widgets/aboutwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/actionbutton.cpp b/src/ui/widgets/actionbutton.cpp index 694f02920..46028b2d6 100644 --- a/src/ui/widgets/actionbutton.cpp +++ b/src/ui/widgets/actionbutton.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/actionbutton.h b/src/ui/widgets/actionbutton.h index a8e1fcb61..a62618123 100644 --- a/src/ui/widgets/actionbutton.h +++ b/src/ui/widgets/actionbutton.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/alignwidget.cpp b/src/ui/widgets/alignwidget.cpp index 26ce4b3ec..8c00fc64a 100644 --- a/src/ui/widgets/alignwidget.cpp +++ b/src/ui/widgets/alignwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/alignwidget.h b/src/ui/widgets/alignwidget.h index 529f25465..2b74199ad 100644 --- a/src/ui/widgets/alignwidget.h +++ b/src/ui/widgets/alignwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/assetswidget.cpp b/src/ui/widgets/assetswidget.cpp index c42ebf082..bb29ad580 100644 --- a/src/ui/widgets/assetswidget.cpp +++ b/src/ui/widgets/assetswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/assetswidget.h b/src/ui/widgets/assetswidget.h index bcaad3378..c6f285a9b 100644 --- a/src/ui/widgets/assetswidget.h +++ b/src/ui/widgets/assetswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/bookmarkedcolors.cpp b/src/ui/widgets/bookmarkedcolors.cpp index 41f9b8e0f..ee579f7eb 100644 --- a/src/ui/widgets/bookmarkedcolors.cpp +++ b/src/ui/widgets/bookmarkedcolors.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/bookmarkedcolors.h b/src/ui/widgets/bookmarkedcolors.h index d2055bc5c..68665d84f 100644 --- a/src/ui/widgets/bookmarkedcolors.h +++ b/src/ui/widgets/bookmarkedcolors.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/bookmarkedwidget.cpp b/src/ui/widgets/bookmarkedwidget.cpp index c4c863bc4..6c24da323 100644 --- a/src/ui/widgets/bookmarkedwidget.cpp +++ b/src/ui/widgets/bookmarkedwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/bookmarkedwidget.h b/src/ui/widgets/bookmarkedwidget.h index 0ee904a72..09661f7f4 100644 --- a/src/ui/widgets/bookmarkedwidget.h +++ b/src/ui/widgets/bookmarkedwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/buttonbase.cpp b/src/ui/widgets/buttonbase.cpp index f224c6572..6571d5d7a 100644 --- a/src/ui/widgets/buttonbase.cpp +++ b/src/ui/widgets/buttonbase.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/buttonbase.h b/src/ui/widgets/buttonbase.h index 86dd2146d..6db0f1b89 100644 --- a/src/ui/widgets/buttonbase.h +++ b/src/ui/widgets/buttonbase.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/canvassettingswidget.cpp b/src/ui/widgets/canvassettingswidget.cpp index ca7e3a2cd..ddcfa141d 100644 --- a/src/ui/widgets/canvassettingswidget.cpp +++ b/src/ui/widgets/canvassettingswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/canvassettingswidget.h b/src/ui/widgets/canvassettingswidget.h index 6059b8698..6b5589109 100644 --- a/src/ui/widgets/canvassettingswidget.h +++ b/src/ui/widgets/canvassettingswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/canvastoolbar.cpp b/src/ui/widgets/canvastoolbar.cpp index a938d402a..44e3f734c 100644 --- a/src/ui/widgets/canvastoolbar.cpp +++ b/src/ui/widgets/canvastoolbar.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/canvastoolbar.h b/src/ui/widgets/canvastoolbar.h index 6ab571b05..860bdae5c 100644 --- a/src/ui/widgets/canvastoolbar.h +++ b/src/ui/widgets/canvastoolbar.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/changewidthwidget.cpp b/src/ui/widgets/changewidthwidget.cpp index fcf93dd24..824f4a3fe 100644 --- a/src/ui/widgets/changewidthwidget.cpp +++ b/src/ui/widgets/changewidthwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/changewidthwidget.h b/src/ui/widgets/changewidthwidget.h index 0f8147178..480221849 100644 --- a/src/ui/widgets/changewidthwidget.h +++ b/src/ui/widgets/changewidthwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorlabel.cpp b/src/ui/widgets/colorlabel.cpp index 187fc2642..4f325841b 100644 --- a/src/ui/widgets/colorlabel.cpp +++ b/src/ui/widgets/colorlabel.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorlabel.h b/src/ui/widgets/colorlabel.h index 76283b888..04401e68a 100644 --- a/src/ui/widgets/colorlabel.h +++ b/src/ui/widgets/colorlabel.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorpickingwidget.cpp b/src/ui/widgets/colorpickingwidget.cpp index 1c9952e94..d0b13d132 100644 --- a/src/ui/widgets/colorpickingwidget.cpp +++ b/src/ui/widgets/colorpickingwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorpickingwidget.h b/src/ui/widgets/colorpickingwidget.h index e16b469b1..164fcc2b2 100644 --- a/src/ui/widgets/colorpickingwidget.h +++ b/src/ui/widgets/colorpickingwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorsettingswidget.cpp b/src/ui/widgets/colorsettingswidget.cpp index 85abb9c09..141e43f45 100644 --- a/src/ui/widgets/colorsettingswidget.cpp +++ b/src/ui/widgets/colorsettingswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorsettingswidget.h b/src/ui/widgets/colorsettingswidget.h index 602f208b7..53ddef396 100644 --- a/src/ui/widgets/colorsettingswidget.h +++ b/src/ui/widgets/colorsettingswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colortoolbar.cpp b/src/ui/widgets/colortoolbar.cpp index 47f4302d5..52238ef19 100644 --- a/src/ui/widgets/colortoolbar.cpp +++ b/src/ui/widgets/colortoolbar.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colortoolbar.h b/src/ui/widgets/colortoolbar.h index fb8c0e148..0b9591a8e 100644 --- a/src/ui/widgets/colortoolbar.h +++ b/src/ui/widgets/colortoolbar.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colortoolbutton.cpp b/src/ui/widgets/colortoolbutton.cpp index 0e9901bd6..0a93c208f 100644 --- a/src/ui/widgets/colortoolbutton.cpp +++ b/src/ui/widgets/colortoolbutton.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colortoolbutton.h b/src/ui/widgets/colortoolbutton.h index 1de1d3133..509e37301 100644 --- a/src/ui/widgets/colortoolbutton.h +++ b/src/ui/widgets/colortoolbutton.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorvaluerect.cpp b/src/ui/widgets/colorvaluerect.cpp index f6a48dc5a..6f59dbd39 100644 --- a/src/ui/widgets/colorvaluerect.cpp +++ b/src/ui/widgets/colorvaluerect.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorvaluerect.h b/src/ui/widgets/colorvaluerect.h index 4ec4614c7..2d8c58c1f 100644 --- a/src/ui/widgets/colorvaluerect.h +++ b/src/ui/widgets/colorvaluerect.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorwidget.cpp b/src/ui/widgets/colorwidget.cpp index c0090875a..178151faf 100644 --- a/src/ui/widgets/colorwidget.cpp +++ b/src/ui/widgets/colorwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorwidget.h b/src/ui/widgets/colorwidget.h index a6aa63be2..e3ff54fe9 100644 --- a/src/ui/widgets/colorwidget.h +++ b/src/ui/widgets/colorwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorwidgetshaders.cpp b/src/ui/widgets/colorwidgetshaders.cpp index 6fd06265d..61ee5092f 100644 --- a/src/ui/widgets/colorwidgetshaders.cpp +++ b/src/ui/widgets/colorwidgetshaders.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/colorwidgetshaders.h b/src/ui/widgets/colorwidgetshaders.h index de40dd58c..631cf3a70 100644 --- a/src/ui/widgets/colorwidgetshaders.h +++ b/src/ui/widgets/colorwidgetshaders.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/ecombobox.cpp b/src/ui/widgets/ecombobox.cpp index 8421cd977..e596ee670 100644 --- a/src/ui/widgets/ecombobox.cpp +++ b/src/ui/widgets/ecombobox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/ecombobox.h b/src/ui/widgets/ecombobox.h index f537396f7..d767f0ba0 100644 --- a/src/ui/widgets/ecombobox.h +++ b/src/ui/widgets/ecombobox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/editablecombobox.cpp b/src/ui/widgets/editablecombobox.cpp index bf6973514..657f09b4a 100644 --- a/src/ui/widgets/editablecombobox.cpp +++ b/src/ui/widgets/editablecombobox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/editablecombobox.h b/src/ui/widgets/editablecombobox.h index 6f06d3673..1803a6f38 100644 --- a/src/ui/widgets/editablecombobox.h +++ b/src/ui/widgets/editablecombobox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/fakemenubar.cpp b/src/ui/widgets/fakemenubar.cpp index 80794553a..b50dd0103 100644 --- a/src/ui/widgets/fakemenubar.cpp +++ b/src/ui/widgets/fakemenubar.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/fakemenubar.h b/src/ui/widgets/fakemenubar.h index 4387d17bc..9f0252f83 100644 --- a/src/ui/widgets/fakemenubar.h +++ b/src/ui/widgets/fakemenubar.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/fillstrokesettings.cpp b/src/ui/widgets/fillstrokesettings.cpp index a8a78d0ec..5042f802c 100644 --- a/src/ui/widgets/fillstrokesettings.cpp +++ b/src/ui/widgets/fillstrokesettings.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/fillstrokesettings.h b/src/ui/widgets/fillstrokesettings.h index a72e1e6f7..c0c8d1f27 100644 --- a/src/ui/widgets/fillstrokesettings.h +++ b/src/ui/widgets/fillstrokesettings.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/flowlayout.cpp b/src/ui/widgets/flowlayout.cpp index 7750c80ea..fa17a785c 100644 --- a/src/ui/widgets/flowlayout.cpp +++ b/src/ui/widgets/flowlayout.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/flowlayout.h b/src/ui/widgets/flowlayout.h index db08d58a2..edcfd8942 100644 --- a/src/ui/widgets/flowlayout.h +++ b/src/ui/widgets/flowlayout.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/fontswidget.cpp b/src/ui/widgets/fontswidget.cpp index a461b7815..c1a0b14ea 100644 --- a/src/ui/widgets/fontswidget.cpp +++ b/src/ui/widgets/fontswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/fontswidget.h b/src/ui/widgets/fontswidget.h index dca124df9..c10576a55 100644 --- a/src/ui/widgets/fontswidget.h +++ b/src/ui/widgets/fontswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/framescrollbar.cpp b/src/ui/widgets/framescrollbar.cpp index a9843858a..b45fde581 100644 --- a/src/ui/widgets/framescrollbar.cpp +++ b/src/ui/widgets/framescrollbar.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/framescrollbar.h b/src/ui/widgets/framescrollbar.h index 5ace8dbcc..4ce0376ea 100644 --- a/src/ui/widgets/framescrollbar.h +++ b/src/ui/widgets/framescrollbar.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/framespinbox.cpp b/src/ui/widgets/framespinbox.cpp index ab13d1a43..340db69a6 100644 --- a/src/ui/widgets/framespinbox.cpp +++ b/src/ui/widgets/framespinbox.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/framespinbox.h b/src/ui/widgets/framespinbox.h index 158c08df9..04221fe0f 100644 --- a/src/ui/widgets/framespinbox.h +++ b/src/ui/widgets/framespinbox.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/glwidget.cpp b/src/ui/widgets/glwidget.cpp index b07837de7..0d0d00621 100644 --- a/src/ui/widgets/glwidget.cpp +++ b/src/ui/widgets/glwidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/glwidget.h b/src/ui/widgets/glwidget.h index 5143ce611..5b72e5a2a 100644 --- a/src/ui/widgets/glwidget.h +++ b/src/ui/widgets/glwidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/glwindow.cpp b/src/ui/widgets/glwindow.cpp index 8b9da1bec..84731686c 100644 --- a/src/ui/widgets/glwindow.cpp +++ b/src/ui/widgets/glwindow.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/glwindow.h b/src/ui/widgets/glwindow.h index 4d1bd77ea..0469b208e 100644 --- a/src/ui/widgets/glwindow.h +++ b/src/ui/widgets/glwindow.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/labeledslider.cpp b/src/ui/widgets/labeledslider.cpp index fd08fbfe4..3a7e7b931 100644 --- a/src/ui/widgets/labeledslider.cpp +++ b/src/ui/widgets/labeledslider.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/labeledslider.h b/src/ui/widgets/labeledslider.h index 8c1f0f3ea..94bc088b8 100644 --- a/src/ui/widgets/labeledslider.h +++ b/src/ui/widgets/labeledslider.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/markereditor.cpp b/src/ui/widgets/markereditor.cpp index 107c0972b..e75e868b4 100644 --- a/src/ui/widgets/markereditor.cpp +++ b/src/ui/widgets/markereditor.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/markereditor.h b/src/ui/widgets/markereditor.h index 6bf8249fe..923071a3c 100644 --- a/src/ui/widgets/markereditor.h +++ b/src/ui/widgets/markereditor.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/performancesettingswidget.cpp b/src/ui/widgets/performancesettingswidget.cpp index aeb7b7323..0eb8683ae 100644 --- a/src/ui/widgets/performancesettingswidget.cpp +++ b/src/ui/widgets/performancesettingswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/performancesettingswidget.h b/src/ui/widgets/performancesettingswidget.h index 01e638383..08d29d4dc 100644 --- a/src/ui/widgets/performancesettingswidget.h +++ b/src/ui/widgets/performancesettingswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/presetsettingswidget.cpp b/src/ui/widgets/presetsettingswidget.cpp index 766585a5d..520624bf2 100644 --- a/src/ui/widgets/presetsettingswidget.cpp +++ b/src/ui/widgets/presetsettingswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/presetsettingswidget.h b/src/ui/widgets/presetsettingswidget.h index cd4a70c15..1fba399bf 100644 --- a/src/ui/widgets/presetsettingswidget.h +++ b/src/ui/widgets/presetsettingswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/qdoubleslider.cpp b/src/ui/widgets/qdoubleslider.cpp index 9097a7b3b..6370364df 100644 --- a/src/ui/widgets/qdoubleslider.cpp +++ b/src/ui/widgets/qdoubleslider.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/qdoubleslider.h b/src/ui/widgets/qdoubleslider.h index 737ee8ee4..d9132a71a 100644 --- a/src/ui/widgets/qdoubleslider.h +++ b/src/ui/widgets/qdoubleslider.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/qrealanimatorvalueslider.cpp b/src/ui/widgets/qrealanimatorvalueslider.cpp index 8c0e71603..0c612eac0 100644 --- a/src/ui/widgets/qrealanimatorvalueslider.cpp +++ b/src/ui/widgets/qrealanimatorvalueslider.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/qrealanimatorvalueslider.h b/src/ui/widgets/qrealanimatorvalueslider.h index 1f5d8e10d..342b585f0 100644 --- a/src/ui/widgets/qrealanimatorvalueslider.h +++ b/src/ui/widgets/qrealanimatorvalueslider.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/savedcolorbutton.cpp b/src/ui/widgets/savedcolorbutton.cpp index 65a297772..df684b146 100644 --- a/src/ui/widgets/savedcolorbutton.cpp +++ b/src/ui/widgets/savedcolorbutton.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/savedcolorbutton.h b/src/ui/widgets/savedcolorbutton.h index 96a1be12f..478f4a510 100644 --- a/src/ui/widgets/savedcolorbutton.h +++ b/src/ui/widgets/savedcolorbutton.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/savedcolorswidget.cpp b/src/ui/widgets/savedcolorswidget.cpp index 03f2340f5..d8112d259 100644 --- a/src/ui/widgets/savedcolorswidget.cpp +++ b/src/ui/widgets/savedcolorswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/savedcolorswidget.h b/src/ui/widgets/savedcolorswidget.h index a96417c58..6dba2d191 100644 --- a/src/ui/widgets/savedcolorswidget.h +++ b/src/ui/widgets/savedcolorswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/scenechooser.cpp b/src/ui/widgets/scenechooser.cpp index 3d34e6d22..094dcbad1 100644 --- a/src/ui/widgets/scenechooser.cpp +++ b/src/ui/widgets/scenechooser.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/scenechooser.h b/src/ui/widgets/scenechooser.h index d03e9dda4..71e7646b1 100644 --- a/src/ui/widgets/scenechooser.h +++ b/src/ui/widgets/scenechooser.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/settingswidget.cpp b/src/ui/widgets/settingswidget.cpp index e5f7ba0a3..20c760e4b 100644 --- a/src/ui/widgets/settingswidget.cpp +++ b/src/ui/widgets/settingswidget.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/settingswidget.h b/src/ui/widgets/settingswidget.h index 2586f2cba..dfd9f20b5 100644 --- a/src/ui/widgets/settingswidget.h +++ b/src/ui/widgets/settingswidget.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/toolbar.h b/src/ui/widgets/toolbar.h index 2fcdc7a43..2535d3320 100644 --- a/src/ui/widgets/toolbar.h +++ b/src/ui/widgets/toolbar.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/toolbutton.h b/src/ui/widgets/toolbutton.h index 980b55165..12ebd3a4d 100644 --- a/src/ui/widgets/toolbutton.h +++ b/src/ui/widgets/toolbutton.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/twocolumnlayout.cpp b/src/ui/widgets/twocolumnlayout.cpp index 0809616b8..c09a931b3 100644 --- a/src/ui/widgets/twocolumnlayout.cpp +++ b/src/ui/widgets/twocolumnlayout.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/twocolumnlayout.h b/src/ui/widgets/twocolumnlayout.h index 51f1ee88d..8e8f5f45a 100644 --- a/src/ui/widgets/twocolumnlayout.h +++ b/src/ui/widgets/twocolumnlayout.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/uilayout.cpp b/src/ui/widgets/uilayout.cpp index e676aba56..78ad13623 100644 --- a/src/ui/widgets/uilayout.cpp +++ b/src/ui/widgets/uilayout.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/uilayout.h b/src/ui/widgets/uilayout.h index bab84a5f6..a9db1b925 100644 --- a/src/ui/widgets/uilayout.h +++ b/src/ui/widgets/uilayout.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/vlabel.h b/src/ui/widgets/vlabel.h index f8ffc9cb4..65c8c5292 100644 --- a/src/ui/widgets/vlabel.h +++ b/src/ui/widgets/vlabel.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/welcomedialog.cpp b/src/ui/widgets/welcomedialog.cpp index 73cb2e35a..8a3b53d99 100644 --- a/src/ui/widgets/welcomedialog.cpp +++ b/src/ui/widgets/welcomedialog.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/welcomedialog.h b/src/ui/widgets/welcomedialog.h index 643cad11e..dd0fd327b 100644 --- a/src/ui/widgets/welcomedialog.h +++ b/src/ui/widgets/welcomedialog.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/widgetstack.cpp b/src/ui/widgets/widgetstack.cpp index fc345e97c..4a85e9141 100644 --- a/src/ui/widgets/widgetstack.cpp +++ b/src/ui/widgets/widgetstack.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/widgetstack.h b/src/ui/widgets/widgetstack.h index b4fccb052..d82047242 100644 --- a/src/ui/widgets/widgetstack.h +++ b/src/ui/widgets/widgetstack.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/widgetwrappernode.cpp b/src/ui/widgets/widgetwrappernode.cpp index 568c6a077..16f5b3fda 100644 --- a/src/ui/widgets/widgetwrappernode.cpp +++ b/src/ui/widgets/widgetwrappernode.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/widgetwrappernode.h b/src/ui/widgets/widgetwrappernode.h index be84d312e..cc8fa5d60 100644 --- a/src/ui/widgets/widgetwrappernode.h +++ b/src/ui/widgets/widgetwrappernode.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/wrappernode.cpp b/src/ui/widgets/wrappernode.cpp index 5fd61a585..97555b086 100644 --- a/src/ui/widgets/wrappernode.cpp +++ b/src/ui/widgets/wrappernode.cpp @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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 diff --git a/src/ui/widgets/wrappernode.h b/src/ui/widgets/wrappernode.h index 1502b6fd8..175018099 100644 --- a/src/ui/widgets/wrappernode.h +++ b/src/ui/widgets/wrappernode.h @@ -2,7 +2,7 @@ # # Friction - https://friction.graphics # -# Copyright (c) Friction contributors +# Copyright (c) Ole-André Rodlie and contributors # # 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