From b18c74c7a35bb98d26c3ef424329f313f7eddf86 Mon Sep 17 00:00:00 2001 From: Laurent Bartholdi Date: Mon, 11 Sep 2023 22:22:26 +0200 Subject: [PATCH 1/4] Added .sms to registry --- src/registry.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/registry.jl b/src/registry.jl index ebeef1c..18db5c8 100644 --- a/src/registry.jl +++ b/src/registry.jl @@ -531,3 +531,6 @@ add_format(format"QOI", "qoif", ".qoi", [:QOI => UUID("4b34888f-f399-49d4-9bb3-4 # Bibliography files. add_format(format"BIB", (), [".bib"], [:Bibliography => UUID("f1be7e48-bf82-45af-a471-ae754a193061")]) + +# sparse matrices +add_format(format"SMS", (), ".sms", [:Spasm => UUID("017bf598-072c-475c-a75e-c3e68736ce70")]) From 35726f70d36806e17c9ab5c70ad553859200129e Mon Sep 17 00:00:00 2001 From: laurentbartholdi Date: Wed, 6 Nov 2024 09:00:46 +0100 Subject: [PATCH 2/4] Update registry.jl -- new capitalisation for SpaSM --- src/registry.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registry.jl b/src/registry.jl index 3060729..846beaf 100644 --- a/src/registry.jl +++ b/src/registry.jl @@ -548,4 +548,4 @@ add_format(format"QOI", "qoif", ".qoi", [:QOI => UUID("4b34888f-f399-49d4-9bb3-4 add_format(format"BIB", (), [".bib"], [:Bibliography => UUID("f1be7e48-bf82-45af-a471-ae754a193061")]) # sparse matrices -add_format(format"SMS", (), ".sms", [:Spasm => UUID("017bf598-072c-475c-a75e-c3e68736ce70")]) +add_format(format"SMS", (), ".sms", [:SpaSM => UUID("017bf598-072c-475c-a75e-c3e68736ce70")]) From 2a8febf5c64d114d9099512fa10b4193f8435101 Mon Sep 17 00:00:00 2001 From: laurentbartholdi Date: Wed, 6 Nov 2024 09:08:14 +0100 Subject: [PATCH 3/4] Update registry.md with .sms entry --- docs/registry.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/registry.md b/docs/registry.md index 1e8f713..a2c12f3 100644 --- a/docs/registry.md +++ b/docs/registry.md @@ -47,3 +47,4 @@ format binary_little_endian 1.0 | | STL_BINARY | .stl, .STL | loads and saves on **all** platforms with [MeshIO](http:///github.com/JuliaIO/MeshIO.jl.git) | has detection function | | NPY | .npy | loads and saves on **all** platforms with [NPZ](https://github.com/fhs/NPZ.jl) | "\x93NUMPY" | | NPZ | .npz | loads and saves on **all** platforms with [NPZ](https://github.com/fhs/NPZ.jl) | "PK\x03\x04" | +| SMS | .sms | loads and saves on **non-Windows** platforms with [SpaSM](https://github.com/laurentbartholdi/SpaSM.jl) | only extension | From c15c9d052fb5e65e19e26a20fa982a79cc5e27df Mon Sep 17 00:00:00 2001 From: laurentbartholdi Date: Fri, 8 Nov 2024 17:37:44 +0100 Subject: [PATCH 4/4] Update registry.md -- revert addition --- docs/registry.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/registry.md b/docs/registry.md index a2c12f3..1e8f713 100644 --- a/docs/registry.md +++ b/docs/registry.md @@ -47,4 +47,3 @@ format binary_little_endian 1.0 | | STL_BINARY | .stl, .STL | loads and saves on **all** platforms with [MeshIO](http:///github.com/JuliaIO/MeshIO.jl.git) | has detection function | | NPY | .npy | loads and saves on **all** platforms with [NPZ](https://github.com/fhs/NPZ.jl) | "\x93NUMPY" | | NPZ | .npz | loads and saves on **all** platforms with [NPZ](https://github.com/fhs/NPZ.jl) | "PK\x03\x04" | -| SMS | .sms | loads and saves on **non-Windows** platforms with [SpaSM](https://github.com/laurentbartholdi/SpaSM.jl) | only extension |