From 9e6091e2d6add5dcaa45287476c0730895c4df41 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 25 Sep 2021 12:33:51 -0400 Subject: [PATCH] Add SD cards --- media/attribution.js | 10 ++++++ media/objects/sd-cards/Micro.svg | 47 ++++++++++++++++++++++++ media/objects/sd-cards/Regular.svg | 57 ++++++++++++++++++++++++++++++ presets/objects.js | 8 +++++ 4 files changed, 122 insertions(+) create mode 100644 media/objects/sd-cards/Micro.svg create mode 100644 media/objects/sd-cards/Regular.svg diff --git a/media/attribution.js b/media/attribution.js index 52b8967a..80f65393 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -17897,6 +17897,16 @@ const attributionData = { "https://capsuline.com/pages/empty-capsule-size-chart" ] }, + { + prefix: "./media/objects/sd-cards/", + files: [ + { name: "Regular.svg", source: null }, + { name: "Micro.svg", source: null }, + ], + authors: [ + "chemicalcrux" + ] + }, { prefix: "./media/objects/shipping-containers/", files: [ diff --git a/media/objects/sd-cards/Micro.svg b/media/objects/sd-cards/Micro.svg new file mode 100644 index 00000000..db9bcea6 --- /dev/null +++ b/media/objects/sd-cards/Micro.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/objects/sd-cards/Regular.svg b/media/objects/sd-cards/Regular.svg new file mode 100644 index 00000000..0b37139f --- /dev/null +++ b/media/objects/sd-cards/Regular.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/objects.js b/presets/objects.js index 7d8686f7..0bbb815a 100644 --- a/presets/objects.js +++ b/presets/objects.js @@ -817,5 +817,13 @@ function makeObjects() { "" )); + results.push(makeHeight( + [ + ["Regular", 32, "mm"], + ["Micro", 15, "mm"] + ], + "SD Cards", + "" + )) return results; }