Skip to content

Commit 32b5698

Browse files
committed
the main development branch is now master
1 parent 7f0fa6a commit 32b5698

38 files changed

+74
-74
lines changed

.github/ISSUE_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Please ask questions ("how do I...?") on the [forum](http://forum.natron.fr), not by filing issues.
22

33
Make concrete suggestions for fixing the code ("here is a patch") by filing
4-
a [pull request](https://github.com/MrKepzie/Natron/pull/new/workshop), not an issue.
4+
a [pull request](https://github.com/MrKepzie/Natron/pull/new/master), not an issue.
55

66

77
### Problem
@@ -21,7 +21,7 @@ Describe the problem or suggestion here.
2121
* If your problem is a crash in a custom build, please create a [gist](https://gist.github.com)
2222
that contains a _full_ backtrace.
2323

24-
* If you are reporting a problem about a release branch, have you tried the current head of `workshop`
24+
* If you are reporting a problem about a release branch, have you tried the current head of `master`
2525
to see if the problem has been fixed?
2626

2727
### Steps to Reproduce

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Please read the [contribution guidelines](https://github.com/MrKepzie/Natron/blob/workshop/CONTRIBUTING.md), and be sure we have a [Contributor License Agreement](http://natron.fr/cla) on record with the project.
1+
Please read the [contribution guidelines](https://github.com/MrKepzie/Natron/blob/master/CONTRIBUTING.md), and be sure we have a [Contributor License Agreement](http://natron.fr/cla) on record with the project.
22

33
## Description
44

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ All code must be formally reviewed before being merged into the official reposit
5454
3. Push your changes to your fork (each unrelated pull request to a separate
5555
"topic branch", please).
5656

57-
4. Make a "pull request" on GitHub for your patch, use the workshop branch.
57+
4. Make a "pull request" on GitHub for your patch, use the "master" branch.
5858

5959
5. If your patch will induce a major compatibility break, or has a design
6060
component that deserves extended discussion or debate among the wider Natron
@@ -66,7 +66,7 @@ or discuss in email/forum. Reviewers may ask for changes, explain problems they
6666
found, congratulate the author on a clever solution, etc. Please don't take it hard if your
6767
first try is not accepted. It happens to all of us.
6868

69-
7. After approval, one of the senior developers (with commit approval to the official main repository) will merge your fixes into the workshop branch.
69+
7. After approval, one of the senior developers (with commit approval to the official main repository) will merge your fixes into the "master" branch.
7070

7171

7272
Coding Style

Documentation/source/PythonReference/NatronEngine/Natron.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ that are more complicated than a simple boolean value.
146146

147147
.. attribute:: NatronEngine.Natron.PixmapEnum
148148

149-
See `here <https://github.com/MrKepzie/Natron/blob/workshop/Global/Enums.h>`_ for
149+
See `here <https://github.com/MrKepzie/Natron/blob/master/Global/Enums.h>`_ for
150150
potential values of this enumeration.
151151

152152
.. attribute:: NatronEngine.Natron.ViewerColorSpaceEnum

Documentation/source/PythonReference/NatronEngine/PathParam.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ are escaped as per the XML specification:
4242
* *'* becomes &apos;
4343

4444
Some more characters are escaped, you can see the full function in the source code of Natron
45-
`here <https://github.com/MrKepzie/Natron/blob/workshop/Engine/ProjectPrivate.cpp>`_
45+
`here <https://github.com/MrKepzie/Natron/blob/master/Engine/ProjectPrivate.cpp>`_
4646

4747

4848

Engine/NodeGroup.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2699,7 +2699,7 @@ NodeCollection::exportGroupToPython(const QString& pluginID,
26992699
WRITE_STATIC_LINE();
27002700
QString handWrittenStr = QString::fromUtf8("# Hand-written code should be added in a separate file named %1.py").arg(extModule);
27012701
WRITE_STRING(handWrittenStr);
2702-
WRITE_STATIC_LINE("# See http://natron.readthedocs.org/en/workshop/groups.html#adding-hand-written-code-callbacks-etc");
2702+
WRITE_STATIC_LINE("# See http://natron.readthedocs.org/en/master/groups.html#adding-hand-written-code-callbacks-etc");
27032703
WRITE_STATIC_LINE("# Note that Viewers are never exported");
27042704
WRITE_STATIC_LINE();
27052705
WRITE_STATIC_LINE("import " NATRON_ENGINE_PYTHON_MODULE_NAME);

Global/GitVersion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef NATRON_GITVERSION_H_
22
#define NATRON_GITVERSION_H_
3-
#define GIT_BRANCH "workshop"
3+
#define GIT_BRANCH "master"
44
#define GIT_COMMIT "d9dcaf1cf836b8f4cd15b2ed13e01b82c834dbe2"
55
#define IO_GIT_COMMIT ""
66
#define MISC_GIT_COMMIT ""

Global/Macros.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ namespace NATRON_NAMESPACE { }
6060
#define NATRON_APPLICATION_NAME "Natron"
6161
#define NATRON_WEBSITE_URL "http://www.natron.fr"
6262
#define NATRON_FORUM_URL "https://forum.natron.fr"
63-
#define NATRON_PYTHON_URL "https://natron.readthedocs.org/en/workshop/"
63+
#define NATRON_PYTHON_URL "https://natron.readthedocs.org/en/master/"
6464
#define NATRON_WIKI_URL "https://github.com/MrKepzie/Natron/wiki"
6565
#define NATRON_ISSUE_TRACKER_URL "https://github.com/MrKepzie/Natron/issues"
6666
// The MIME types for Natron documents are:
@@ -107,7 +107,7 @@ namespace NATRON_NAMESPACE { }
107107
#define NATRON_VERSION_REVISION 0
108108

109109

110-
#define NATRON_LAST_VERSION_URL "https://raw.githubusercontent.com/MrKepzie/Natron/workshop/LATEST_VERSION.txt"
110+
#define NATRON_LAST_VERSION_URL "https://raw.githubusercontent.com/MrKepzie/Natron/master/LATEST_VERSION.txt"
111111
#define NATRON_LAST_VERSION_FILE_VERSION 1
112112

113113
// homemade builds should always show "Devel"

Gui/Resources/PyPlugs/AngleBlur.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file was automatically generated by Natron PyPlug exporter version 3.
44

55
# Hand-written code should be added in a separate file named AngleBlurExt.py
6-
# See http://natron.readthedocs.org/en/workshop/groups.html#adding-hand-written-code-callbacks-etc
6+
# See http://natron.readthedocs.org/en/master/groups.html#adding-hand-written-code-callbacks-etc
77
# Note that Viewers are never exported
88

99
import NatronEngine

Gui/Resources/PyPlugs/DropShadow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file was automatically generated by Natron PyPlug exporter version 3.
44

55
# Hand-written code should be added in a separate file named DropShadowExt.py
6-
# See http://natron.readthedocs.org/en/workshop/groups.html#adding-hand-written-code-callbacks-etc
6+
# See http://natron.readthedocs.org/en/master/groups.html#adding-hand-written-code-callbacks-etc
77
# Note that Viewers are never exported
88

99
import NatronEngine

Gui/Resources/PyPlugs/Fill.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file was automatically generated by Natron PyPlug exporter version 3.
44

55
# Hand-written code should be added in a separate file named FillExt.py
6-
# See http://natron.readthedocs.org/en/workshop/groups.html#adding-hand-written-code-callbacks-etc
6+
# See http://natron.readthedocs.org/en/master/groups.html#adding-hand-written-code-callbacks-etc
77
# Note that Viewers are never exported
88

99
import NatronEngine

Gui/Resources/PyPlugs/Glow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file was automatically generated by Natron PyPlug exporter version 7.
44

55
# Hand-written code should be added in a separate file named GlowExt.py
6-
# See http://natron.readthedocs.org/en/workshop/groups.html#adding-hand-written-code-callbacks-etc
6+
# See http://natron.readthedocs.org/en/master/groups.html#adding-hand-written-code-callbacks-etc
77
# Note that Viewers are never exported
88

99
import NatronEngine

Gui/Resources/PyPlugs/LightWrap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file was automatically generated by Natron PyPlug exporter version 5.
44

55
# Hand-written code should be added in a separate file named LightWrapExt.py
6-
# See http://natron.readthedocs.org/en/workshop/groups.html#adding-hand-written-code-callbacks-etc
6+
# See http://natron.readthedocs.org/en/master/groups.html#adding-hand-written-code-callbacks-etc
77
# Note that Viewers are never exported
88

99
import NatronEngine

Gui/Resources/PyPlugs/ZMask.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file was automatically generated by Natron PyPlug exporter version 3.
44

55
# Hand-written code should be added in a separate file named ZMaskExt.py
6-
# See http://natron.readthedocs.org/en/workshop/groups.html#adding-hand-written-code-callbacks-etc
6+
# See http://natron.readthedocs.org/en/master/groups.html#adding-hand-written-code-callbacks-etc
77
# Note that Viewers are never exported
88

99
import NatronEngine

Gui/Resources/PyPlugs/ZRemap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file was automatically generated by Natron PyPlug exporter version 3.
44

55
# Hand-written code should be added in a separate file named ZRemapExt.py
6-
# See http://natron.readthedocs.org/en/workshop/groups.html#adding-hand-written-code-callbacks-etc
6+
# See http://natron.readthedocs.org/en/master/groups.html#adding-hand-written-code-callbacks-etc
77
# Note that Viewers are never exported
88

99
import NatronEngine

INSTALL_LINUX.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ export PYTHON_PATH=$INSTALL_PATH/lib/python2.7
322322
export PYTHON_INCLUDE=$INSTALL_PATH/include/python2.7
323323
324324
cd Natron
325-
wget https://raw.githubusercontent.com/MrKepzie/Natron/workshop/tools/linux/include/natron/config.pri
325+
wget https://raw.githubusercontent.com/MrKepzie/Natron/master/tools/linux/include/natron/config.pri
326326
mkdir build && cd build
327327
$INSTALL_PATH/bin/qmake -r CONFIG+=release ../Project.pro
328328
make || exit 1

INSTALL_OSX.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ This file is supposed to guide you step by step to have working (compiling) vers
88
git clone https://github.com/MrKepzie/Natron.git
99
cd Natron
1010

11-
If you want to compile the bleeding edge version, use the workshop
11+
If you want to compile the bleeding edge version, use the master
1212
branch:
1313

14-
git checkout workshop
14+
git checkout master
1515

1616
Update the submodules:
1717

@@ -310,7 +310,7 @@ Shiboken has a few glitches which needs fixing with some sed commands, run tools
310310

311311
## OpenFX plugins
312312

313-
Instructions to build the [openfx-io](https://github.com/MrKepzie/openfx-io) and [openfx-misc](https://github.com/devernay/openfx-misc) sets of plugins can also be found in the [tools/packageOSX.sh](https://github.com/MrKepzie/Natron/blob/workshop/tools/packageOSX.sh) script if you are using MacPorts, or in the .travis.yml file in their respective github repositories if you are using homebrew ([openfx-misc/.travis.yml](https://github.com/devernay/openfx-misc/blob/master/.travis.yml), [openfx-io/.travis.yml](https://github.com/MrKepzie/openfx-io/blob/master/.travis.yml).
313+
Instructions to build the [openfx-io](https://github.com/MrKepzie/openfx-io) and [openfx-misc](https://github.com/devernay/openfx-misc) sets of plugins can also be found in the [tools/packageOSX.sh](https://github.com/MrKepzie/Natron/blob/master/tools/packageOSX.sh) script if you are using MacPorts, or in the .travis.yml file in their respective github repositories if you are using homebrew ([openfx-misc/.travis.yml](https://github.com/devernay/openfx-misc/blob/master/.travis.yml), [openfx-io/.travis.yml](https://github.com/MrKepzie/openfx-io/blob/master/.travis.yml).
314314

315315

316316
You can install [TuttleOFX](http://www.tuttleofx.org/) using homebrew:

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Natron [![Build Status](https://api.travis-ci.org/MrKepzie/Natron.png?branch=workshop)](https://travis-ci.org/MrKepzie/Natron) [![Coverage Status](https://coveralls.io/repos/MrKepzie/Natron/badge.png?branch=workshop)](https://coveralls.io/r/MrKepzie/Natron?branch=workshop) [![Coverity Scan Build Status](https://scan.coverity.com/projects/2940/badge.svg)](https://scan.coverity.com/projects/2940 "Coverity Badge") [![Documentation Status](https://readthedocs.org/projects/natron/badge/?version=workshop)](https://readthedocs.org/projects/natron/?badge=workshop)
1+
Natron [![Build Status](https://api.travis-ci.org/MrKepzie/Natron.png?branch=master)](https://travis-ci.org/MrKepzie/Natron) [![Coverage Status](https://coveralls.io/repos/MrKepzie/Natron/badge.png?branch=master)](https://coveralls.io/r/MrKepzie/Natron?branch=master) [![Coverity Scan Build Status](https://scan.coverity.com/projects/2940/badge.svg)](https://scan.coverity.com/projects/2940 "Coverity Badge") [![Documentation Status](https://readthedocs.org/projects/natron/badge/?version=master)](https://readthedocs.org/projects/natron/?badge=master)
22

33
======
44

@@ -169,8 +169,8 @@ We coordinate development through the [GitHub issue
169169
tracker](https://github.com/MrKepzie/Natron/issues).
170170

171171
The main development branch is called
172-
["workshop"](https://github.com/MrKepzie/Natron/tree/workshop).
173-
The master branch contains the last known stable version.
172+
["master"](https://github.com/MrKepzie/Natron/tree/master).
173+
The stable version is on branch RB-2.0.
174174

175175
Additionally each stable release supported has a branch on its own.
176176
For example the stable release of the v1.0. and all its bug fixes should go into that
@@ -182,8 +182,8 @@ You can check out the easy tasks left to do [here](https://natron.fr/easy-task-l
182182

183183
Feel free to report bugs, discuss tasks, or pick up work there. If you want to make
184184
changes, please fork, edit, and [send us a pull
185-
request](https://github.com/MrKepzie/Natron/pull/new/workshop),
186-
preferably on the ["workshop"](https://github.com/MrKepzie/Natron/tree/workshop)
185+
request](https://github.com/MrKepzie/Natron/pull/new/master),
186+
preferably on the ["master"](https://github.com/MrKepzie/Natron/tree/master)
187187
branch.
188188

189189
There's a `.git-hooks` directory in the root. This contains a `pre-commit`

tools/MacOSX/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ cd Natron/tools/MacOSX
153153
env BUILD_CONFIG=STABLE BUILD_NUMBER=1 CONFIG=relwithdebinfo BRANCH=tag MKJOBS=4 UPLOAD=1 ./build.sh
154154
```
155155

156-
The server will now auto build from the workshop branch on changes.
156+
The server will now auto build from the master branch on changes.
157157

158158
## Google-breakpad
159159

tools/MacOSX/build-natron.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# MKJOBS: Number of threads
2424
# CONFIG=(debug,release,relwithdebinfo): the build type
2525
# DISABLE_BREAKPAD=1: When set, automatic crash reporting (google-breakpad support) will be disabled
26-
#Usage MKJOBS=4 BUILD_CONFIG=SNAPSHOT CONFIG=relwithdebinfo BRANCH=workshop PLUGINDIR="..." ./build-natron.sh
26+
#Usage MKJOBS=4 BUILD_CONFIG=SNAPSHOT CONFIG=relwithdebinfo BRANCH=master PLUGINDIR="..." ./build-natron.sh
2727

2828
source `pwd`/common.sh || exit 1
2929
MACPORTS="/opt/local"
@@ -32,7 +32,7 @@ QTDIR="${MACPORTS}/libexec/qt4"
3232
cd "$CWD/build" || exit 1
3333

3434

35-
if [ "$BRANCH" = "workshop" ]; then
35+
if [ "$BRANCH" = "master" ]; then
3636
NATRON_BRANCH=$BRANCH
3737
IO_BRANCH=master
3838
MISC_BRANCH=master
@@ -51,7 +51,7 @@ git checkout $NATRON_BRANCH || exit 1
5151
git pull origin $NATRON_BRANCH
5252
git submodule update -i --recursive || exit 1
5353

54-
if [ "$BRANCH" = "workshop" ]; then
54+
if [ "$BRANCH" = "master" ]; then
5555
# the snapshots are always built with the latest version of submodules
5656
git submodule foreach git pull origin master
5757
fi

tools/MacOSX/build-plugins.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
# CONFIG=(debug,release,relwithdebinfo): the build type
2222
# DISABLE_BREAKPAD=1: When set, automatic crash reporting (google-breakpad support) will be disabled
2323
# PLUGINDIR: The path to the plug-ins in the final bundle, e.g: "$CWD/build/Natron/App/Natron.app/Contents/Plugins"
24-
#Usage PLUGINDIR="..." MKJOBS=4 CONFIG=relwithdebinfo BRANCH=workshop ./build-plugins.sh
24+
#Usage PLUGINDIR="..." MKJOBS=4 CONFIG=relwithdebinfo BRANCH=master ./build-plugins.sh
2525

2626
source `pwd`/common.sh || exit 1
2727

2828
cd $CWD/build || exit 1
2929

30-
#If "workshop" is passed, use master branch for all plug-ins otherwise use the git tags in common.sh
31-
if [ "$BRANCH" = "workshop" ]; then
30+
#If "master" is passed, use master branch for all plug-ins otherwise use the git tags in common.sh
31+
if [ "$BRANCH" = "master" ]; then
3232
IO_BRANCH=master
3333
MISC_BRANCH=master
3434
ARENA_BRANCH=master

tools/MacOSX/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919

2020
# Options:
2121
# CONFIG=(debug,release,relwithdebinfo): the build type
22-
# BRANCH=(workhop,tag): If workshop, builds dev branch, otherwise uses tags from common.sh
22+
# BRANCH=(workhop,tag): If master, builds dev branch, otherwise uses tags from common.sh
2323
# MKJOBS=N: number of threads
2424
# NO_CLEAN=1: Do not remove build dir before building, useful for debugging and avoiding the cloning etc...
2525
# BUILD_CONFIG=(SNAPSHOT,ALPHA,BETA,RC,STABLE,CUSTOM)
2626
# CUSTOM_BUILD_USER_NAME="Toto" : to be set if BUILD_CONFIG=CUSTOM
2727
# BUILD_NUMBER=X: To be set to indicate the revision number of the build. For example RC1,RC2, RC3 etc...
2828
# DISABLE_BREAKPAD=1: When set, automatic crash reporting (google-breakpad support) will be disabled
2929

30-
#Usage: BUILD_CONFIG=STABLE BUILD_NUMBER=1 CONFIG=release BRANCH=workshop MKJOBS=4 UPLOAD=1 ./build.sh
30+
#Usage: BUILD_CONFIG=STABLE BUILD_NUMBER=1 CONFIG=release BRANCH=master MKJOBS=4 UPLOAD=1 ./build.sh
3131

3232
source `pwd`/common.sh || exit 1
3333
(cd ports; portindex)

tools/MacOSX/snapshot.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ if [ ! -d $TMP ];then
2828
mkdir -p $TMP || exit 1
2929
fi
3030

31-
#clone repos to get git version to check against NATRON_WORKSHOP
31+
#clone repos to get git version to check against NATRON_MASTER
3232
if [ ! -d $TMP/Natron ];then
3333
cd $TMP || exit 1
3434
git clone $GIT_NATRON || exit 1
3535
cd Natron || exit 1
36-
git checkout workshop || exit 1
36+
git checkout master || exit 1
3737
fi
3838

3939
if [ ! -d $TMP/openfx-io ];then
@@ -73,7 +73,7 @@ while true; do
7373
source $CWD/commits-hash.sh || exit 1
7474

7575
#Sync all scripts except snapshot.sh in case modifs were made
76-
git pull origin workshop
76+
git pull origin master
7777

7878
FAIL=0
7979

@@ -83,7 +83,7 @@ while true; do
8383

8484
cd $TMP/Natron
8585
git fetch || FAIL=1
86-
git merge origin/workshop || FAIL=1
86+
git merge origin/master || FAIL=1
8787
GITV_NATRON=`git log|head -1|awk '{print $2}'`
8888
ORIG_NATRON=$NATRON_DEVEL_GIT
8989
echo "Natron $GITV_NATRON vs. $ORIG_NATRON"
@@ -141,7 +141,7 @@ while true; do
141141
cd $CWD || FAIL=1
142142
if [ "$FAIL" != 1 ]; then
143143
if [ "$BUILD_NATRON" = "1" -o "$BUILD_IO" = "1" -o "$BUILD_MISC" = "1" -o "$BUILD_ARENA" = "1" ]; then
144-
env CONFIG=relwithdebinfo BRANCH=workshop BUILD_CONFIG=SNAPSHOT MKJOBS=$MKJOBS UPLOAD=1 NO_CLEAN=$NO_CLEAN ./build.sh || FAIL=1
144+
env CONFIG=relwithdebinfo BRANCH=master BUILD_CONFIG=SNAPSHOT MKJOBS=$MKJOBS UPLOAD=1 NO_CLEAN=$NO_CLEAN ./build.sh || FAIL=1
145145
echo $FAIL
146146
fi
147147
fi

tools/Windows/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ else
5353
INSTALL_PATH=$INSTALL64_PATH
5454
fi
5555

56-
if [ "$2" = "workshop" ]; then
56+
if [ "$2" = "master" ]; then
5757
BRANCH=$2
5858
REPO_SUFFIX=snapshot
5959
NO_ZIP=1
@@ -172,7 +172,7 @@ $KILLSCRIPT $PID &
172172
KILLBOT=$!
173173

174174
if [ "$SYNC" = "1" ]; then
175-
if [ "$BRANCH" = "workshop" ]; then
175+
if [ "$BRANCH" = "master" ]; then
176176
ONLINE_REPO_BRANCH=snapshots
177177
else
178178
ONLINE_REPO_BRANCH=releases

tools/Windows/common.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ FFMPEG_MXE_BIN_32_GPL_TAR=ffmpeg-2.8.3-windows-i686-shared-GPLv2.tar.xz
141141
FFMPEG_MXE_BIN_64_LGPL_TAR=ffmpeg-2.8.3-windows-x86_64-shared-LGPL.tar.xz
142142
FFMPEG_MXE_BIN_32_LGPL_TAR=ffmpeg-2.8.3-windows-i686-shared-LGPL.tar.xz
143143

144-
NATRON_API_DOC=https://media.readthedocs.org/pdf/natron/workshop/natron.pdf # TODO generate own
144+
NATRON_API_DOC=https://media.readthedocs.org/pdf/natron/master/natron.pdf # TODO generate own
145145

146146
# Threads
147147
#

tools/Windows/include/scripts/build-installer.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# OFFLINE=1 : Make the offline installer too
1313
# NO_INSTALLER: Do not make any installer, only zip if NO_ZIP!=1
1414
# Usage:
15-
# NO_ZIP=1 NATRON_LICENSE=GPL OFFLINE=1 BUILD_CONFIG=BETA BUILD_NUMBER=1 sh build-installer 64 workshop
15+
# NO_ZIP=1 NATRON_LICENSE=GPL OFFLINE=1 BUILD_CONFIG=BETA BUILD_NUMBER=1 sh build-installer 64 master
1616

1717
source `pwd`/common.sh || exit 1
1818
source `pwd`/commits-hash.sh || exit 1

tools/Windows/include/scripts/build-natron.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ cd Natron || exit 1
8484
git checkout $NATRON_BRANCH || exit 1
8585
git pull origin $NATRON_BRANCH
8686
git submodule update -i --recursive || exit 1
87-
if [ "$NATRON_BRANCH" = "workshop" ]; then
87+
if [ "$NATRON_BRANCH" = "master" ]; then
8888
# the snapshots are always built with the latest version of submodules
8989
git submodule foreach git pull origin master
9090
fi

tools/Windows/include/scripts/build-plugins.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ fi
3939
EOF
4040
chmod +x $KILLSCRIPT
4141

42-
#If "workshop" is passed, use master branch for all plug-ins otherwise use the git tags in common.sh
42+
#If "master" is passed, use master branch for all plug-ins otherwise use the git tags in common.sh
4343
IO_BRANCH=master
4444
MISC_BRANCH=master
4545
ARENA_BRANCH=master
4646
CV_BRANCH=master
4747

48-
if [ "$2" != "workshop" ]; then
48+
if [ "$2" != "master" ]; then
4949
IO_BRANCH=$IOPLUG_GIT_TAG
5050
MISC_BRANCH=$MISCPLUG_GIT_TAG
5151
ARENA_V=$ARENAPLUG_GIT_TAG

0 commit comments

Comments
 (0)