From 335291622a4aa9f8f8a0b508fde29481a5729bef Mon Sep 17 00:00:00 2001 From: Roman Ziske Date: Mon, 19 Aug 2024 19:21:37 +0200 Subject: [PATCH 1/3] updated wording an annotations array --- sigmf-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sigmf-schema.json b/sigmf-schema.json index 86f451b..0b7903f 100644 --- a/sigmf-schema.json +++ b/sigmf-schema.json @@ -209,7 +209,7 @@ }, "annotations": { "default": [], - "description": "The `annotations` value is an array of annotation segment objects that describe anything regarding the signal data not part of the Captures and Global objects. It MUST be sorted by the value of each Annotation Segment's `core:sample_start` key, ascending. Annotation segment Objects contain key/value pairs and MUST contain a `core:sample_start` key/value pair, which indicates the first index at which the rest of the Segment's key/value pairs apply. There is no limit to the number of annotations that can apply to the same group of samples. If two annotations have the same `sample_start`, there is no defined ordering between them. If `sample_count` is not provided, it SHOULD be assumed that the annotation applies from `sample_start` through the end of the Dataset, in all other cases `sample_count` MUST be provided. ", + "description": "The `annotations` value is an array of annotation segment objects that describe anything regarding the signal data not part of the Captures and Global objects. It MUST be sorted by the value of each Annotation Segment's `core:sample_start` key, ascending. Annotation segment Objects contain key/value pairs and MUST contain a `core:sample_start` key/value pair, which indicates the first index at which the rest of the Segment's key/value pairs apply. There is no limit to the number of annotations that can apply to the same group of samples. If two annotations have the same `sample_start`, there is no defined ordering between them. If two annotations have the same `sample_start`, there is no defined ordering between them. If `sample_count` is not provided, it SHOULD be assumed that the annotation applies from `sample_start` through the end of the corresponding capture, in all other cases `sample_count` MUST be provided. ", "type": "array", "additionalItems": true, "items": { From 926e326f44f6fde957fdb359eaa1cb434d8817e3 Mon Sep 17 00:00:00 2001 From: Roman Ziske Date: Mon, 19 Aug 2024 19:22:56 +0200 Subject: [PATCH 2/3] Add new latex build artefacts to .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 7bcf43d..74aa7ea 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ sigmf-spec.pdf sigmf-spec.out sigmf-spec.log sigmf-spec.aux +sigmf-spec.fls +sigmf-spec.fdb_latexmk svg-inkscape/ sigmf-spec.html main.css \ No newline at end of file From 7d22240f24bd4db8a35aa86dc17b178710e28510 Mon Sep 17 00:00:00 2001 From: Roman Ziske Date: Mon, 19 Aug 2024 19:23:27 +0200 Subject: [PATCH 3/3] Remove unused import in docs-generator.py --- docs-generator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docs-generator.py b/docs-generator.py index 9957195..46f7e24 100644 --- a/docs-generator.py +++ b/docs-generator.py @@ -1,6 +1,5 @@ import json import subprocess -import time from pylatex import (Command, Document, Figure, Package, Section, Subsection, Subsubsection, Tabular)