diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 00000000..dacbda7e
Binary files /dev/null and b/.DS_Store differ
diff --git a/build/index.html b/build/index.html
index 1a439c1b..75b06f8f 100644
--- a/build/index.html
+++ b/build/index.html
@@ -373,7 +373,7 @@
All done.
- Last updated on May 18, 2023
+ Last updated on August 25, 2023
diff --git a/index.html b/index.html
index ba6e8b78..e22e01e9 100644
--- a/index.html
+++ b/index.html
@@ -509,7 +509,7 @@ Acknowledgments and thanks.
- Last updated on May 18, 2023
+ Last updated on August 25, 2023
diff --git a/settings/index.html b/settings/index.html
index d8d458d4..44ef0bf6 100644
--- a/settings/index.html
+++ b/settings/index.html
@@ -463,7 +463,7 @@
Edit this page on GitHub.
- Last updated on May 18, 2023
+ Last updated on August 25, 2023
diff --git a/sitemap.xml b/sitemap.xml
index d05b8f2f..a70a1d55 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,17 +2,17 @@
https://gemini.wntr.dev/
- 2023-05-18
+ 2023-08-25
daily
https://gemini.wntr.dev/build/
- 2023-05-18
+ 2023-08-25
daily
https://gemini.wntr.dev/settings/
- 2023-05-18
+ 2023-08-25
daily
\ No newline at end of file
diff --git a/sitemap.xml.gz b/sitemap.xml.gz
index 5f0fdd62..e3986508 100644
Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ
diff --git a/winterjs/midi.js b/winterjs/midi.js
index f8c80880..62365281 100644
--- a/winterjs/midi.js
+++ b/winterjs/midi.js
@@ -6,19 +6,19 @@
export default class MIDI {
constructor(port_name) {
- this.port_name = port_name;
+ this.port_name = port_name.toLowerCase();
}
async connect() {
let access = await navigator.requestMIDIAccess({ sysex: true });
for (const port of access.inputs.values()) {
- if (port.name === this.port_name) {
+ if (port.name.toLowerCase().includes(this.port_name)) {
this.input = port;
}
}
for (const port of access.outputs.values()) {
- if (port.name === this.port_name) {
+ if (port.name.toLowerCase().includes(this.port_name)) {
this.output = port;
}
}