List of feature ideas
Quote from c17vfx on 26. February 2019, 4:34https://prism-pipeline.com/forum/topic/support-for-latest-blender-2-79-tactic-and-guerilla-render/
https://prism-pipeline.com/forum/topic/support-for-latest-blender-2-79-tactic-and-guerilla-render/
Quote from SciMunk on 22. March 2019, 11:57Hello,
maybe you could create a trello to keep track of all the current/inprogress/futur feature ?
Hello,
maybe you could create a trello to keep track of all the current/inprogress/futur feature ?
Quote from RichardF on 23. March 2019, 15:54Initially I put the list in the forum, to have one place for all feature discussions. But now I see that it might not be the best way to track things like that. The only disadvantage I see with Trello is that there would be three different places where users could request features: this forum, github and trello, which might be a bit confusing. Does Trello have some big advantages over github regarding task/issue tracking?
Initially I put the list in the forum, to have one place for all feature discussions. But now I see that it might not be the best way to track things like that. The only disadvantage I see with Trello is that there would be three different places where users could request features: this forum, github and trello, which might be a bit confusing. Does Trello have some big advantages over github regarding task/issue tracking?
Quote from SciMunk on 24. March 2019, 10:48well, have multiple place where user can request features is the exact reason why you would need a centralised place to put them !
it mostly help organising task by group, putting label (like priority) on each features.
I believe trello is compatible with github issues/commit tracking : https://blog.trello.com/github-and-trello-integrate-your-commits
here an exemple of the subnautica game's trello : https://trello.com/b/yxoJrFgP/subnautica-development
well, have multiple place where user can request features is the exact reason why you would need a centralised place to put them !
it mostly help organising task by group, putting label (like priority) on each features.
I believe trello is compatible with github issues/commit tracking : https://blog.trello.com/github-and-trello-integrate-your-commits
here an exemple of the subnautica game's trello : https://trello.com/b/yxoJrFgP/subnautica-development
Quote from Magnus on 24. March 2019, 10:57+1 for Trello 🙂 I think it's a good option to include non-programmers as well, as github can feel a bit alien to artists haha 😀
+1 for Trello 🙂 I think it's a good option to include non-programmers as well, as github can feel a bit alien to artists haha 😀
Quote from mooopstar on 24. March 2019, 11:53-1 for Trello . Looks nicer, that`s true. But I hate to have 50 different sources of news. Groups, Social Media, Forums, Discord, i m feeling dizzy 🙂 . Maybe a short Screenshot-Tut where to ask for features on github. it s good to know how to handle github anyway...
-1 for Trello . Looks nicer, that`s true. But I hate to have 50 different sources of news. Groups, Social Media, Forums, Discord, i m feeling dizzy 🙂 . Maybe a short Screenshot-Tut where to ask for features on github. it s good to know how to handle github anyway...
Quote from andreEk on 10. May 2019, 0:33Will be good feature integration with OCIO. When OCIO in enviroment initialise, and automatic render send to farm in rop output image path filename replace with prefix .acescg.exr / it will be good for starting render in rv . that prefix automate apply acescg colorspace for sequence
And in Houdini When outputpath replaced when farm submit, will be good filename collect from enviroments variables $JOB/.... its need for send project to third-party (outside) farm.
Will be good feature integration with OCIO. When OCIO in enviroment initialise, and automatic render send to farm in rop output image path filename replace with prefix .acescg.exr / it will be good for starting render in rv . that prefix automate apply acescg colorspace for sequence
And in Houdini When outputpath replaced when farm submit, will be good filename collect from enviroments variables $JOB/.... its need for send project to third-party (outside) farm.
Quote from andreEk on 11. May 2019, 0:56###CorrectPath
outputName, outputPath, hVersion = self.getOutputName(useVersion=useVersion)
if os.environ.get('OCIO')!= None and '.exr' in outputName:
outputName=outputName.replace('.exr','.acescg.exr')env = os.environ.get('JOB')
if env != None and env in outputName:
outputName=outputName.replace(env,'$JOB')
###End Correct pathi pasted that code in hou_ImageRender.py
and may be that need to implementation to other Apps scripts
###CorrectPath
outputName, outputPath, hVersion = self.getOutputName(useVersion=useVersion)
if os.environ.get('OCIO')!= None and '.exr' in outputName:
outputName=outputName.replace('.exr','.acescg.exr')
env = os.environ.get('JOB')
if env != None and env in outputName:
outputName=outputName.replace(env,'$JOB')
###End Correct path
i pasted that code in hou_ImageRender.py
and may be that need to implementation to other Apps scripts