Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion applications/sam/sam_ls.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _printItem(self, item, args, level):
sequence = item.getSequence()
for frameRange in sequence.getFrameRanges():
# for each frame range, print a new item as sequence
subSequence = sequenceParser.Sequence(sequence.getPrefix(), sequence.getPadding(), sequence.getSuffix(), frameRange.first, frameRange.last, frameRange.step)
subSequence = sequenceParser.Sequence(sequence.getPrefix(), sequence.getFixedPadding(), sequence.getMaxPadding(), sequence.getSuffix(), frameRange.first, frameRange.last, frameRange.step)
if subSequence.__str__() not in self._sequenceExploded:
self._sequenceExploded.append(subSequence.__str__())
sequenceExploded = True
Expand Down
2 changes: 1 addition & 1 deletion libraries/tuttle/src/tuttle/host/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// This is more than the version of the host: this is the version of the 'tuttle bundle' (host + plugins + sam).
#define TUTTLE_HOST_VERSION_MAJOR 0
#define TUTTLE_HOST_VERSION_MINOR 13
#define TUTTLE_HOST_VERSION_MICRO 4
#define TUTTLE_HOST_VERSION_MICRO 5

#define TUTTLE_HOST_VERSION_STR \
BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MAJOR) "." BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MINOR) "." BOOST_PP_STRINGIZE(TUTTLE_HOST_VERSION_MICRO)
Expand Down