Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Natron command line rendering issue #644

Closed
Prabu-7 opened this issue Jun 26, 2021 · 7 comments
Closed

Natron command line rendering issue #644

Prabu-7 opened this issue Jun 26, 2021 · 7 comments

Comments

@Prabu-7
Copy link

Prabu-7 commented Jun 26, 2021

I'm trying to automate a few kinds of stuff in natron using python and natronrenderer.exe. I have a natron work file that will just apply text overlay to a video and render it and I'm trying to pass the text value as a subprocess argument to python script. "Get rid of LIVE and make it 79,607,544" is the text that I'm passing as argument. This makes the natronrenderer render to different frames instead of project frame range. In this case, it renders frame 607 and 544 instead of project range 1-30 frames.

Expected behavior: [natronrenderer.exe should render the frame range 1-30 with "Get rid of LIVE and make it 79,607,544" notes applied as text value of text node]

Actual behavior: [it renders random frames that was in notes argument 607 and 455]

This is the full command I tried,
Screenshot from 2021-06-26 16-43-43

Screenshot from 2021-06-26 17-47-39

Steps to Reproduce

  1. create natron file called 'notes.ntp'
    Screenshot from 2021-06-26 17-08-01

  2. create a python file called 'apply_notes.py' with content as in screenshot
    Screenshot from 2021-06-26 16-39-29

  3. Do natronrenderer.exe cmd rendering with sys arguments
    Screenshot from 2021-06-26 17-11-16

Versions

  • Natron 2.3.14, 2.3.15
  • OS Windows10
@rodlie
Copy link
Contributor

rodlie commented Jun 26, 2021

Unsure if passing arguments like that to the py script will work.

This works (tested on Mac/Win):
NatronRenderer test.ntp -l test.py -c "textValue=\"SOME TEXT\""

where test.ntp is a simple project with a text node Text1 and a write node Write1

and test.py contains:
app.Text1.text.set(textValue)

@Prabu-7
Copy link
Author

Prabu-7 commented Jun 30, 2021

Unsure if passing arguments like that to the py script will work.

This works (tested on Mac/Win):
NatronRenderer test.ntp -l test.py -c "textValue=\"SOME TEXT\""

where test.ntp is a simple project with a text node Text1 and a write node Write1

and test.py contains:
app.Text1.text.set(textValue)

Yeah, this will work for a single. but my real workflow has more than 10 text overlay nodes which will do some text manipulation in a python script and set the text during the script execution. So I'm passing the notes as string arguments to python script. This issue only there is ',' separated numbers in notes string like "Get rid of LIVE and make it 79,607,544". But the issue does not occur if I enclose the number inside quotes like "Get rid of LIVE and make it '79','607','544' ". I'm not sure this is a natron arguments issue or is there a fix for it.

@rodlie
Copy link
Contributor

rodlie commented Jun 30, 2021

Yeah, this will work for a single. but my real workflow has more than 10 text overlay nodes which will do some text manipulation in a python script and set the text during the script execution

That was an example on how to pass vars from the command line to a Python script, isn't that what you are trying to do?

@Prabu-7
Copy link
Author

Prabu-7 commented Jun 30, 2021

Yeah, this will work for a single. but my real workflow has more than 10 text overlay nodes which will do some text manipulation in a python script and set the text during the script execution

That was an example on how to pass vars from the command line to a Python script, isn't that what you are trying to do?

yes. is there any option to pass args without -c command flags like I was trying previously as shown in the screenshot? Btw I also tried the method you suggested but it did not work for the notes string I have "Get rid of LIVE and make it 79,607,544"

Screenshot from 2021-06-30 13-11-51

Is there anything I missed in the above screenshot?

devernay added a commit that referenced this issue Jul 5, 2021
…art of it may look like a frame range

see #644 (partially fixes it)
@devernay
Copy link
Member

devernay commented Jul 5, 2021

I fixed in 9d1b500 the fact that the argument in the original post was partially parsed as a list of frame ranges

@devernay devernay reopened this Jul 5, 2021
@devernay
Copy link
Member

devernay commented Jul 5, 2021

This should be fixed in the next build/beta, but I'm keeping this open until @Prabu-7 confirms it's fixed

devernay added a commit that referenced this issue Oct 24, 2021
commit 30f2da6
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Oct 24 12:17:47 2021 -0700

    AboutWindow: better macOS version info

commit 2a8e5aa
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Sun Oct 24 21:09:41 2021 +0200

    tools/MINGW-packages: update

    fix hooks in glib2 and add two patches for qt4

commit e5f051e
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Oct 24 11:34:52 2021 -0700

    update pri files

commit 9a4aef4
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Oct 24 10:49:13 2021 -0700

    Update SequenceParsing

commit ad9d563
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Oct 24 10:30:06 2021 -0700

    MacPorts update

commit bdc8cca
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Oct 23 14:28:33 2021 -0700

    linux sdk fixes

commit 38d3e8b
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Oct 23 12:31:48 2021 -0700

    docker: compress (rather than delete) the build logs

commit 2511470
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Oct 23 12:20:56 2021 -0700

    fix whitespace

commit d46c86c
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Oct 23 12:11:41 2021 -0700

    Linux SDK: add full Python 3 support

commit 9819ec5
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Oct 22 15:22:17 2021 -0700

    Update openimageio.sh

    potential fix for #685

commit 9213a20
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Oct 22 12:55:37 2021 -0700

    Linux SDK: update qtwebkit + bison

    found a patch in Fedora to compile qtwebkit with bison 3.7

commit c59d12e
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Oct 22 10:17:20 2021 -0700

    Linux SDK: update Qt4 from latest Fedora patches

    Qt 4.8.7 is still being maintained by Fedora

commit caa6c74
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Wed Oct 20 22:01:30 2021 +0200

    tools/jenkins: fix genDllVersions.sh

    libaom is now shared.

commit f04d76e
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Oct 20 12:49:35 2021 -0700

    Update build-Linux-sdk.sh

commit 637fa02
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Oct 20 12:44:06 2021 -0700

    linux sdk: update python

commit 027b255
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Mon Oct 18 09:41:36 2021 -0700

    Update CHANGELOG.md

commit 77b61c3
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Oct 17 16:50:05 2021 -0700

    update macOS configs

commit b379f0e
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Oct 16 11:58:34 2021 -0700

    linux sdk update

commit a7b12cf
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Oct 16 11:51:55 2021 -0700

    Update NodeGraph10.cpp

commit 9f7d420
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Oct 16 11:51:09 2021 -0700

    qmake: remove spurious includes

commit 10cbaa6
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Sun Oct 17 00:56:29 2021 +0200

    tools/MINGW-packages: update

commit f144b2a
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Sat Oct 16 20:46:16 2021 +0200

    tools/MINGW-packages: rebuild librsvg

    fixes GNUVolador failed unit test

commit 615ea88
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Oct 15 17:23:44 2021 -0700

    MacPorts update

commit 5e51622
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Fri Oct 15 23:25:39 2021 +0200

    tools/MINGW-packages: update harfbuzz/pango

    also rebuild all packages that depends on freetype, since some might use
    static libs.

commit 60676e5
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Tue Oct 12 23:31:19 2021 +0200

    tools/MINGW-packages: update glib

    update glib and rebuild, might need some more updates.

commit b68ed08
Author: Ole-André <ole.andre.rodlie@gmail.com>
Date:   Mon Oct 11 22:50:39 2021 +0200

    Engine/Project: reset auto save timestamp on knob changes (#679)

    Reset the auto save timestamp on project knob changes. This marks the project as modified and will prompt users to save when closing the project.

commit ba2e346
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Sun Oct 10 02:06:27 2021 +0200

    tools/MINGW-packages: update openexr/openimageio

commit 8e75fd9
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Sat Oct 9 20:39:25 2021 +0200

    tools/MINGW-packages: openssl fix for DST Root CA X3 Expiry

    This works for anything that links against mingw64-openssl (Natron), but not for
    msys2-openssl, so we need to add a workaround in .curlrc for pacman to
    work.

commit 55d1b10
Author: Ole-André <ole.andre.rodlie@gmail.com>
Date:   Fri Oct 8 19:19:49 2021 +0200

    Gui/Resources/Images: groupbox/treeview black => gray (#678)

commit 49bb561
Author: Alexandre Bon <61953166+bonalex01dev@users.noreply.github.com>
Date:   Fri Oct 8 02:18:11 2021 +0200

    Cleanup links, Nuke Transition guide (early) , Install community scri… (#669)

    * Cleanup links, Nuke Transition guide (early) , Install community scripts and plugins recomend , bugs and workaround updated

    Co-authored-by: Frédéric Devernay <devernay@users.noreply.github.com>

commit 7551cc3
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Oct 7 15:32:47 2021 -0700

    update plugin docs

commit a1cbb64
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Oct 5 17:27:43 2021 -0700

    GuiApp: doc

commit cdbeae1
Author: Alexandre Bon <61953166+bonalex01dev@users.noreply.github.com>
Date:   Wed Oct 6 02:18:05 2021 +0200

    create guiApp.pasteNodes(optional group) python function (#674)

    * create GuiApp.pasteNodes() python function

    This function paste the nodes in the clipboard.
    It will be used to reconnect the pasted nodes to the previously selected node as Nuke does. (good time saver)

    Known limitation: the nodes are pasted in a very random place probably related to cursor position.

    Improvements to be done: ability to paste inside a group

commit d31abad
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Oct 5 17:10:11 2021 -0700

    Update PyGuiApp.cpp

commit 7629a47
Author: Alexandre Bon <61953166+bonalex01dev@users.noreply.github.com>
Date:   Wed Oct 6 02:05:18 2021 +0200

    GuiApp: create guiapp.copySelectedNodes( optional group) python function (#675)

    * create guiapp.copySelectedNodes( optional group) python function

    This function allows to copy nodes even when multiple node graphs are opened. App1 should be passed as argument to make sure the copy is made from  the top level of the comp and not from the last active window

commit 0277bee
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Oct 5 14:59:15 2021 -0700

    Update INSTALL_MACOS.md

commit 12f6e38
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Oct 5 14:59:01 2021 -0700

    Update CHANGELOG.md

    see NatronGitHub/openfx-io@b127c6d

commit ff041e4
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Oct 1 19:20:28 2021 -0700

    MacPorts: downgrade libomp

    fixes #672

commit 08bb412
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Oct 1 11:04:26 2021 -0700

    better names for the installers

commit 3ac7b02
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Sep 30 16:33:34 2021 -0700

    Glow: disable masking if not connected

    Related to #671 (which was already fixed by previous commit NatronGitHub/openfx-misc@82f5f5d )
    see also https://benmcewan.com/blog/2019/10/21/back-to-basics-common-errors-when-creating-a-gizmo/

commit 07cd222
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Sep 28 18:30:39 2021 -0700

    Update CHANGELOG.md

commit b52506d
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Sep 28 18:27:09 2021 -0700

    update MacPorts

commit 7eabdc1
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Sep 24 19:11:30 2021 -0700

    doc update

commit 72ad3d1
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Sep 23 17:29:19 2021 -0700

    Update yaml-cpp.sh

commit 3246839
Author: Frédéric Devernay <frederic.devernay@m4x.org>
Date:   Thu Sep 23 16:50:59 2021 -0700

    MacPorts update

commit b8703c6
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Sep 23 16:50:37 2021 -0700

    Update CHANGELOG.md

commit 4700eb6
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Sep 23 16:50:34 2021 -0700

    Update INSTALL_MACOS.md

commit 5b032be
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Sep 23 16:50:26 2021 -0700

    linux sdk update

commit ad903fc
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Sun Sep 19 16:49:58 2021 +0200

    tools/MINGW-packages: update dav1d

commit 1f7ee32
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Fri Sep 17 18:38:04 2021 +0200

    Docs: fix warnings

    Still 3 left:

    * guide/file_browser.rst: WARNING: document isn't included in any toctree
    * guide/fromNuke_01.rst: WARNING: document isn't included in any toctree
    * guide/thenodes-merge.rst: WARNING: document isn't included in any toctree

commit 00f58a9
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Sep 15 18:51:15 2021 -0700

    build-OSX-installer.sh: fix window size

commit ac542e6
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Sep 15 18:50:55 2021 -0700

    update linux DSK

commit 41ace3a
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Sep 14 07:47:41 2021 -0700

    update MacPorts

commit cd1ff55
Author: Frédéric Devernay <frederic.devernay@m4x.org>
Date:   Mon Sep 13 14:20:17 2021 -0700

    macports update

commit a8b40b4
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Sep 10 16:12:53 2021 -0700

    fix OpenGL font issues on HiDPI displays

commit 157cf66
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Fri Sep 10 14:35:00 2021 -0700

    Fix histogram smoothing (was 5 times too strong)

commit 763cbb6
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Sep 5 23:11:15 2021 -0700

    add a few homebrew formulas

commit b246ad1
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Sep 5 11:05:43 2021 -0700

    sdk update

commit c72ac10
Author: Frédéric Devernay <frederic.devernay@m4x.org>
Date:   Sat Aug 28 10:57:02 2021 -0700

    MacPorts update

commit ee433e4
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Jul 22 15:14:08 2021 -0700

    ColorSelector: add support for RGB knobs (no A)

    See #210 @rodlie

commit 42b8a84
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Jul 22 09:23:33 2021 -0700

    linux SDK update

commit a49ecef
Author: Henry Wilkinson <henry@wilkinson.graphics>
Date:   Tue Jul 20 02:23:43 2021 -0400

    Update bug.yml (#658)

    * Update bug.yml

    Removes line with brackets

    * Update bug.yml

    Adds quotes to special characters

commit 50c808c
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Mon Jul 19 20:10:08 2021 -0700

    fix a few bugs when drawing Beziers

    - points were not smoothed
    - firs CP was missing tangent handles
    - CP being moved, drawn in cyan, was not reverted to its original color if no mouse motion
    - Issue #653 is still to be fixed (see comment "continue editing the tangent")

commit b7d8a02
Author: Ole-André <ole.andre.rodlie@gmail.com>
Date:   Tue Jul 20 03:19:19 2021 +0200

    KnobGuiColor: replace QColorDialog with ColorSelector (#657)

    * Gui: Added QtColorTriangle from Qt Solutions

    Maintained in Natron under the GNU Lesser General Public 2.1 license.

    Updated to work in Qt4 and Qt5.

    * Gui/ScaleSliderQWidget: support custom slider color

    * Gui: added ColorSelectorWidget

    * Gui/KnobGuiColor: replace QColorDialog with ColorSelectorWidget

    * Gui/ColorSelectorWidget: added tooltips

    * Gui/ColorSelectorWidget: added hsv sliders

    * Gui/ColorSelectorWidget: minor ui

    * Gui/ColorSelectorWidget: ui changes

    * Gui/ColorSelectorWidget: hsv slider fix

    forgot to set slider value when spinbox changed.

commit f064207
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Mon Jul 19 18:16:08 2021 -0700

    ASCII curve export: better defaults

    see #656

commit 41a3a50
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Mon Jul 19 17:40:44 2021 -0700

    Fix ASCII curve import

    fixes #656

commit 4b3e108
Author: Jacky Song <61605733+Songtech-0912@users.noreply.github.com>
Date:   Wed Jul 14 18:57:01 2021 -0400

    Update contributor templates [2] (#652)

    * Update pull request template

    * Add issue tracker dashboard

    * Update issue templates as 2 separate templates

    * Wording fixes in feature.yml

    * Content fixes in bug.yml

    * Added placeholder to system info section of form

    * Removed unnecessary units and duplicate information in sysinfo placeholder

commit 1f6fe3d
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Tue Jul 13 20:29:45 2021 +0200

    Tests: win build fix

commit 8cce05d
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Mon Jul 12 16:22:20 2021 -0700

    fix unit test

commit 5f21870
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Jul 11 19:33:34 2021 -0700

    Update wmain.cpp

commit c37664e
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sun Jul 11 10:10:50 2021 -0700

    CLArgs: fix TestCMD

commit b2cd4e2
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Jul 10 19:26:04 2021 -0700

    Python: expand variables in app.saveProject and app.saveProjectAs

commit 20f56dc
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Jul 10 19:24:04 2021 -0700

    Settings: do not save settings if a CLI arg instructed to use defaults

commit 43d7930
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Jul 10 18:55:45 2021 -0700

    AppManager: add open to clear OFX Plugin cache at launch

commit 5f25abe
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Jul 10 18:54:28 2021 -0700

    OfxHost: do not use Natron and Nuke plugins if useStdOFXPluginsLocation=false

commit a13b1ac
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Sat Jul 10 18:53:18 2021 -0700

    CLArgs: finally fixed

    The problem was that the command-line option "-w" optionally takes TWO arguments!
    Left it for backward compat, but I had to do a hack to avoid taking positional arguments (which have to be parsed last).

commit 95fdcac
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Jul 8 20:27:48 2021 -0700

    macOS: use the proper LLVM version

commit ee60fd5
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Thu Jul 8 15:15:39 2021 -0700

    Update CLArgs.cpp

commit b901a3c
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Jul 7 20:50:19 2021 -0700

    Update CHANGELOG.md

commit ab12fc2
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Jul 7 20:23:58 2021 -0700

    fix macOS build

commit 61bb44e
Author: Frédéric Devernay <devernay@users.noreply.github.com>
Date:   Wed Jul 7 15:55:34 2021 -0700

    Settings: use a reasonable thread count value for multi-core systems (#651)

    * Settings: use a reasonable thread count value for multi-core systems

    Closes #554

    * Update CHANGELOG.md

commit a9610ab
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Jul 7 15:44:30 2021 -0700

    MacPorts update

commit c0e4f3c
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Jul 7 12:43:43 2021 -0700

    Linux SDK docker: add Rocky Linux support

commit e940684
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Wed Jul 7 12:21:52 2021 -0700

    Linux SDK update

commit e2557c8
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Jul 6 16:47:57 2021 -0700

    AppManager: fix Python interpreter

    - GIL must be acquired before calling Py_Main
    - Py_Main releases it for us
    - Py_Main calls Py_Finalize for us

commit 66c12a0
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Jul 6 16:26:19 2021 -0700

    AppManager: Python interpreter needs the Python GIL

    fixes segfault

commit f93038f
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Tue Jul 6 16:25:56 2021 -0700

    CLArgs: better handling of arguments

    - "--" marks the end of positional arguments
    - Do not use the executable name (argv[0]) as a potential argument
    - Parse positional arguments after all other options
    - Error when some arguments are not parsed

commit f530695
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Mon Jul 5 14:52:48 2021 -0700

    CLArgs: Parse frame ranges last, clarify doc

    frameRanges is a positional argument, and should thus be parsed last.
    Should fix #644

commit 9d1b500
Author: Frederic Devernay <frederic.devernay@m4x.org>
Date:   Mon Jul 5 14:26:10 2021 -0700

    CLArgs: avoid mistaking an argument for a list of frame ranges when part of it may look like a frame range

    see #644 (partially fixes it)

commit 2e71f8f
Author: Frédéric Devernay <devernay@users.noreply.github.com>
Date:   Mon Jul 5 14:04:59 2021 -0700

    Update CHANGELOG.md

    #647

commit 3b779be
Author: Alexandre Bon <61953166+bonalex01dev@users.noreply.github.com>
Date:   Thu Jul 1 04:46:33 2021 +0200

    Doc update 2.4 Documentation Draw Nodes  (#645)

    * Read Node doc to DocUpdate-2.4 (3rd attempt)

    * Documentation Write node

    * Documentation Nodes NodeGraph

    * FileBrowser improved ( Project relative path) + links corrections

    * Update getstarted-environment-fileselect.rst

    * Update getstarted-environment-fileselect.rst

    * Documentation: Checkerboard-Colorwheel-Ramp-Common Properrties - Draw nodes

    * nodes - draw -Lightwrap node

    * Draw Nodes documentation

    Co-authored-by: Frédéric Devernay <devernay@users.noreply.github.com>

commit c4c06b6
Author: Jacky Song <61605733+Songtech-0912@users.noreply.github.com>
Date:   Wed Jun 30 19:46:07 2021 -0700

    Refactor README and Arch Linux Install Instructions [2] (#643)

    * Added emacs and vim artifacts to gitignore

    * Modified Arch Linux build instructions for custom tested config.pri

    * Removed unneccesary instructions for gitignore and added source comments

    * Added template Arch Linux build instructions

    * Added mention of template archlinux config in install instructions

commit cf38f48
Author: Ole-André Rodlie <ole.andre.rodlie@gmail.com>
Date:   Sat Jun 26 19:25:58 2021 +0200

    tools/MINGW-packages: fixes

    https://discuss.pixls.us/t/wrong-resolution-when-reading-dng-file-from-still-camera/25557/5

    also downgraded OIIO due to unit test issues.
@devernay
Copy link
Member

@Prabu-7 is this fixed in 2.4.1?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants