Skip to content

Commit

Permalink
Deployed ebd8f80 with MkDocs version: 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
theacodes committed Aug 25, 2023
1 parent fe3c7e1 commit 8490e20
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ <h2 id="all-done">All done<a class="headerlink" href="#all-done" referrerpolicy=
<a href="https://github.com/wntrblm/Castor_and_Pollux/edit/main/user_guide/docs/build.md">Edit this page on GitHub</a>.
</p>
<p class="updated">
Last updated on May 18, 2023
Last updated on August 25, 2023
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ <h2 id="acknowledgments-and-thanks">Acknowledgments and thanks<a class="headerli
<a href="https://github.com/wntrblm/Castor_and_Pollux/edit/main/user_guide/docs/index.md">Edit this page on GitHub</a>.
</p>
<p class="updated">
Last updated on May 18, 2023
Last updated on August 25, 2023
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion settings/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@
<a href="https://github.com/wntrblm/Castor_and_Pollux/edit/main/user_guide/docs/settings.md">Edit this page on GitHub</a>.
</p>
<p class="updated">
Last updated on May 18, 2023
Last updated on August 25, 2023
</p>
</div>
</footer>
Expand Down
6 changes: 3 additions & 3 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://gemini.wntr.dev/</loc>
<lastmod>2023-05-18</lastmod>
<lastmod>2023-08-25</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://gemini.wntr.dev/build/</loc>
<lastmod>2023-05-18</lastmod>
<lastmod>2023-08-25</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://gemini.wntr.dev/settings/</loc>
<lastmod>2023-05-18</lastmod>
<lastmod>2023-08-25</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified sitemap.xml.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions winterjs/midi.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 8490e20

Please sign in to comment.