Skip to content

Commit 9331b9a

Browse files
authored
Fix emtpy string samples (#166)
* Fix emtpy string samples * Add changelog entry * Remove line
1 parent 6d61ac0 commit 9331b9a

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### 🔧 Fixed
66
- Fix multi-channel string/marker stream parsing ([#164](https://github.com/cbrnr/sigviewer/pull/164) by [Clemens Brunner](https://github.com/cbrnr))
77
- Fix crash when loading XDF files containing a stream with only one sample ([#164](https://github.com/cbrnr/sigviewer/pull/164) by [Clemens Brunner](https://github.com/cbrnr))
8+
- Update libxdf to 1.0.1, which skips empty marker samples in regular-rate string streams instead of turning each one into an event ([#166](https://github.com/cbrnr/sigviewer/pull/166) by [Clemens Brunner](https://github.com/cbrnr))
89

910
## [0.7.1] · 2026-04-06
1011
### ✨ Added

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ project(sigviewer
88
# -- Pinned versions of external dependencies --------------------------------
99
# These are the ONLY accepted versions. Change them here (and rebuild the
1010
# pre-built artifacts) when upgrading a dependency.
11-
set(LIBXDF_VERSION "1.0.0")
11+
set(LIBXDF_VERSION "1.0.1")
1212
set(LIBBIOSIG_VERSION "3.9.5")
1313

1414
# -- Language standards ------------------------------------------------------

external/build_deps.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
cmake_minimum_required(VERSION 3.21)
4040

4141
# -- Pinned versions (must match CMakeLists.txt) -----------------------------
42-
set(LIBXDF_VERSION "1.0.0")
42+
set(LIBXDF_VERSION "1.0.1")
4343
set(LIBBIOSIG_VERSION "3.9.5")
4444

4545
# -- Resolve the destination directory ---------------------------------------

0 commit comments

Comments
 (0)