From e0241eebf713f11a78259bfb2448b4234f8ea0ee Mon Sep 17 00:00:00 2001 From: David Medine Date: Tue, 7 Jun 2022 09:55:59 +1000 Subject: [PATCH] update lsl version in lsl_get_dll --- lsl_get_dll.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lsl_get_dll.m b/lsl_get_dll.m index bf47107..ae50258 100644 --- a/lsl_get_dll.m +++ b/lsl_get_dll.m @@ -65,8 +65,8 @@ % manually. On PC and Mac, this will be extracted then cleaned up. if ~exist(lsl_fname,'file') || ~exist(lsl_include_dir, 'dir') disp(['Could not locate the file "' so_fname '" on your computer. Attempting to download...']); - LIBLSL_TAG = 'v1.14.0'; - LIBLSL_VER = '1.14.0'; + LIBLSL_TAG = 'v1.16.0'; + LIBLSL_VER = '1.16.0'; liblsl_url = ['https://github.com/sccn/liblsl/releases/download/' LIBLSL_TAG '/']; if ispc && contains(computer,'64') liblsl_url_fname = ['liblsl-' LIBLSL_VER '-Win_amd64.zip'];