List of feature ideas
Zitat von c17vfx am 26. Februar 2019, 4:34 Uhrhttps://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/
Zitat von SciMunk am 22. März 2019, 11:57 UhrHello,
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 ?
Zitat von RichardF am 23. März 2019, 15:54 UhrInitially 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?
Zitat von SciMunk am 24. März 2019, 10:48 Uhrwell, 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
Zitat von Magnus am 24. März 2019, 10:57 Uhr+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 😀
Zitat von mooopstar am 24. März 2019, 11:53 Uhr-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...
Zitat von andreEk am 10. Mai 2019, 0:33 UhrWill 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.
Zitat von andreEk am 11. Mai 2019, 0:56 Uhr###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