From 95efeed8cf55612a76e2c7ae34c5d5f878ab7bfb Mon Sep 17 00:00:00 2001 From: Clement Champetier Date: Thu, 16 Mar 2017 15:35:38 +0100 Subject: [PATCH 1/2] sam ls: fix python error when using --explode-sequences option * We depend on SequenceParser-1.2.0: see the method signature here https://github.com/mikrosimage/sequenceparser/blob/v1.2.0/src/Sequence.hpp#L46 --- applications/sam/sam_ls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/sam/sam_ls.py b/applications/sam/sam_ls.py index 8bf4382eb..a74baa24d 100644 --- a/applications/sam/sam_ls.py +++ b/applications/sam/sam_ls.py @@ -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 From c6638425fc46951d203626b4994b4d9775861f4c Mon Sep 17 00:00:00 2001 From: Clement Champetier Date: Thu, 16 Mar 2017 15:37:11 +0100 Subject: [PATCH 2/2] Up to v0.13.5 --- libraries/tuttle/src/tuttle/host/version.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/tuttle/src/tuttle/host/version.hpp b/libraries/tuttle/src/tuttle/host/version.hpp index 5e7529aba..4f989faa9 100644 --- a/libraries/tuttle/src/tuttle/host/version.hpp +++ b/libraries/tuttle/src/tuttle/host/version.hpp @@ -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)