From b3b09097d360b64b06cfd024eb8d2a778711bbcd Mon Sep 17 00:00:00 2001 From: b5 Date: Mon, 2 Jun 2025 14:55:46 -0400 Subject: [PATCH] add iroh-roq protocol --- src/app/proto/protocols.js | 15 ++++++++++++--- src/components/ProtocolHeroList.jsx | 4 ++-- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/app/proto/protocols.js b/src/app/proto/protocols.js index 4a6176f5..48954141 100644 --- a/src/app/proto/protocols.js +++ b/src/app/proto/protocols.js @@ -7,7 +7,7 @@ export const protocols = [ "slug": "iroh-blobs", "repository": "https://github.com/n0-computer/iroh-blobs", "documentation": "https://docs.rs/iroh-blobs/latest/iroh_blobs/", - "version": "v0.33.0" // TODO - pull version from github + "version": "v0.35.0" // TODO - pull version from github }, { "featured": 2, @@ -17,7 +17,7 @@ export const protocols = [ "slug": "iroh-gossip", "repository": "https://github.com/n0-computer/iroh-gossip", "documentation": "https://docs.rs/iroh-gossip/latest/iroh_gossip/", - "version": "v0.33.0" // TODO - pull version from github + "version": "v0.35.0" // TODO - pull version from github }, { "featured": 3, @@ -27,6 +27,15 @@ export const protocols = [ "slug": "iroh-docs", "documentation": "https://docs.rs/iroh-docs/latest/iroh_docs/", "repository": "https://github.com/n0-computer/iroh-docs", - "version": "v0.33.0" // TODO - pull version from github + "version": "v0.35.0" // TODO - pull version from github + }, + { + "icon": "", + "title": "iroh-roq", + "tagline": "RTP over QUIC implemented as iroh protocol", + "slug": "iroh-roq", + "documentation": "https://docs.rs/iroh-roq/latest/iroh_roq/", + "repository": "https://github.com/n0-computer/iroh-roq", + "version": "v0.1.0" } ] diff --git a/src/components/ProtocolHeroList.jsx b/src/components/ProtocolHeroList.jsx index b7a2b880..acb0feda 100644 --- a/src/components/ProtocolHeroList.jsx +++ b/src/components/ProtocolHeroList.jsx @@ -20,7 +20,7 @@ const icons = { export const ProtocolHeroList = function ProtocolHeroList() { return (
- {protocols.map((proto, i) => ( + {protocols.filter((p) => !!p.featured).map((proto, i) => (
) -} \ No newline at end of file +}