ynput / ayon-core

Apache License 2.0
27 stars 32 forks source link

Houdini: Support collect frames for files with dot in filename (and other special characters) #701

Closed BigRoy closed 3 months ago

BigRoy commented 3 months ago

Changelog Description

Fixes detection of output sequences where the filename had an extra dot in it, like e.g. $HIP/vdbcache.fixed.1001.vdb.

Additional info

The previous regex match of \w in the filename disallowed matching . or other special characters - it now allows any character before the expected end.

Also adds some small debug logs to make debugging easier in the future.

Testing notes:

  1. A publish should work with a vdbcache publish with e.g. output path set to $HIP/vdbcache.fixed.1001.vdb
MustafaJafar commented 3 months ago

I was going to suggest using clique like in https://github.com/ynput/ayon-core/pull/9 But, then I found out that it was already implemented there.

BigRoy commented 3 months ago

Closing this in favor of changes in #9