We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65f577a + c6d78d2 commit 6bfa343Copy full SHA for 6bfa343
1 file changed
pupil_capture/pupil_capture_lsl_relay.py
@@ -18,6 +18,7 @@
18
from plugin import Plugin
19
from pyglui import ui
20
21
+VERSION = '2.0'
22
23
logger = logging.getLogger(__name__)
24
logger.setLevel(logging.DEBUG)
@@ -98,6 +99,7 @@ def construct_streaminfo(self):
98
99
channel_format=lsl.cf_double64,
100
source_id=self.outlet_uuid,
101
)
102
+ stream_info.desc().append_child_value("pupil_lsl_relay_version", VERSION)
103
xml_channels = stream_info.desc().append_child("channels")
104
for chan in self.channels:
105
chan.append_to(xml_channels)
0 commit comments