From c8c718abddf1cc0f55da26b0cc55e337d4e2f6e1 Mon Sep 17 00:00:00 2001 From: Filipi Nascimento Silva Date: Sun, 20 Jun 2021 02:50:33 -0400 Subject: [PATCH 1/2] Fix for windows Sleep function --- helios-core/Source/CVCommons.h | 1 + 1 file changed, 1 insertion(+) diff --git a/helios-core/Source/CVCommons.h b/helios-core/Source/CVCommons.h index 3dfe141..6820a03 100644 --- a/helios-core/Source/CVCommons.h +++ b/helios-core/Source/CVCommons.h @@ -1067,6 +1067,7 @@ if((capacity)<(count)+1){\ //sleep functions #if __WIN32__ #include +#define CVSleepMillisecond(x) Sleep((x)) #else #include #define CVSleepMillisecond(x) usleep((x)*1000) From 699a26f3e69d24ef434fad3c7f31217fa84454e8 Mon Sep 17 00:00:00 2001 From: Filipi Nascimento Silva Date: Sun, 20 Jun 2021 02:53:45 -0400 Subject: [PATCH 2/2] Updated version to 0.3.1 --- helios-core/Python/PyCXVersion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helios-core/Python/PyCXVersion.h b/helios-core/Python/PyCXVersion.h index 345ced0..c216c97 100644 --- a/helios-core/Python/PyCXVersion.h +++ b/helios-core/Python/PyCXVersion.h @@ -1 +1 @@ -#define k_PYCXVersion 0.3.0 +#define k_PYCXVersion 0.3.1