List of feature ideas
引用于 c17vfx 在 26. 2 月 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/
引用于 SciMunk 在 22. 3 月 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 ?
引用于 RichardF 在 23. 3 月 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?
引用于 SciMunk 在 24. 3 月 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
引用于 Magnus 在 24. 3 月 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 😀
引用于 mooopstar 在 24. 3 月 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...
引用于 andreEk 在 10. 5 月 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.
引用于 andreEk 在 11. 5 月 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