Skip to content

Commit

Permalink
remove mentions of natron.fr
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Jul 30, 2018
1 parent 5bbf5ed commit a0979fe
Show file tree
Hide file tree
Showing 635 changed files with 642 additions and 644 deletions.
2 changes: 1 addition & 1 deletion App/App.pro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ***** BEGIN LICENSE BLOCK *****
# This file is part of Natron <http://www.natron.fr/>,
# This file is part of Natron <http://natrongithub.github.io/>,
# Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
#
# Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion App/NatronApp_main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ You may contribute to this user guide, follow (these)[http://natron.readthedocs.
- Fixed issues on Windows where file paths with non ASCII characters would not be read/written correctly
- Fixed issues on Windows where reading from/writing to a network share would not work correctly
- Value parameters can now have Python expressions written directly in their spinbox and can be used as calculators
- A new demo project from Francois Grassard is available at [downloads.natron.fr](http://downloads.natron.fr/Examples/Natron2_BayMaxProject.zip).
- A new demo project from Francois Grassard is available at [sourceforge.net/projects/natron](https://sourceforge.net/projects/natron/files/Examples/).
It contains a fully-featured project demonstrating the use of a complex node-graph including usage of PyPlugs.


Expand Down
4 changes: 2 additions & 2 deletions Documentation/source/guide/getstarted-installation-linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The basic requirements are:
Download
--------

Navigate to http://natron.fr/download and download the latest version. This documentation will assume that you downloaded the installer (our default and recommended choice).
Navigate to https://natrongithub.github.io/1#download and download the latest version. This documentation will assume that you downloaded the installer (our default and recommended choice).

.. image:: _images/linux_install_01.png
:width: 30%
Expand Down Expand Up @@ -115,4 +115,4 @@ The application also include a basic settings category, where you can configure
Advanced installation
---------------------

Natron also has RPM and DEB packages, these are recommended for multi-user installations or for deployment on more than one machine. You can find more information on our website at http://natron.fr/download .
Natron also has RPM and DEB packages, these are recommended for multi-user installations or for deployment on more than one machine. You can find more information on our website at https://natrongithub.github.io/ .
2 changes: 1 addition & 1 deletion Documentation/source/guide/getstarted-installation-mac.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Requirements
Download
--------

Navigate to http://natron.fr/download and download the latest version.
Navigate to https://natrongithub.github.io/#download and download the latest version.

.. image:: _images/mac_install_01.png
:width: 40%
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ If you don't have the minimum required OpenGL extensions we provide a Software O
Download
--------

Navigate to http://natron.fr/download and download the latest version. This documentation will assume that you downloaded the installer (our default and recommended choice).
Navigate to https://natrongithub.github.io/#download and download the latest version. This documentation will assume that you downloaded the installer (our default and recommended choice).

.. image:: _images/win_install_01.png
:width: 40%
Expand Down
2 changes: 1 addition & 1 deletion Engine/AbortableRenderInfo.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/AbortableRenderInfo.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/AfterQuitProcessingI.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
8 changes: 4 additions & 4 deletions Engine/AppInstance.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -265,7 +265,7 @@ AppInstance::setIsCreatingNodeTree(bool b)
void
AppInstance::checkForNewVersion() const
{
FileDownloader* downloader = new FileDownloader( QUrl( QString::fromUtf8(NATRON_LAST_VERSION_URL) ), false );
FileDownloader* downloader = new FileDownloader( QUrl( QString::fromUtf8(NATRON_LATEST_VERSION_URL) ), false );
QObject::connect( downloader, SIGNAL(downloaded()), this, SLOT(newVersionCheckDownloaded()) );
QObject::connect( downloader, SIGNAL(error()), this, SLOT(newVersionCheckError()) );

Expand Down Expand Up @@ -433,8 +433,8 @@ AppInstance::newVersionCheckDownloaded()
+ pclose
+ popen
+ tr("You can download it from %1.")
.arg( QString::fromUtf8("<a href=\"https://natron.fr/download\">"
"www.natron.fr</a>") )
.arg( QString::fromUtf8("<a href=\"https://natrongithub.github.io/#download\">"
"natrongithub.github.io</a>") )
+ pclose;
Dialogs::informationDialog( tr("New version").toStdString(), text.toStdString(), true );
}
Expand Down
2 changes: 1 addition & 1 deletion Engine/AppInstance.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/AppManager.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/AppManager.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/AppManagerPrivate.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/AppManagerPrivate.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Backdrop.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Backdrop.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Bezier.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Bezier.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/BezierCP.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/BezierCP.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/BezierCPPrivate.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/BezierCPSerialization.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/BezierSerialization.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/BlockingBackgroundRender.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/BlockingBackgroundRender.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/BufferableObject.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CLArgs.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CLArgs.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Cache.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Cache.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CacheEntry.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CacheEntryHolder.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CacheSerialization.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/ChoiceOption.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CoonsRegularization.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CoonsRegularization.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CreateNodeArgs.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CreateNodeArgs.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Curve.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Curve.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CurvePrivate.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CurveSerialization.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/CurveSerialization.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/DefaultShaders.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/DefaultShaders.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/DiskCacheNode.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/DiskCacheNode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/DockablePanelI.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Dot.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/Dot.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Engine/EffectInstance.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <http://www.natron.fr/>,
* This file is part of Natron <http://natrongithub.github.io/>,
* Copyright (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
Expand Down
Loading

0 comments on commit a0979fe

Please sign in to comment.