Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions public/img/logos/comaps.app.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/data/signatures.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
url: "codeberg.org"
poc: "Gusted <contact@codeberg.org>"
region: "DE"
- organization: "CoMaps"
url: "comaps.app"
poc: "hello@comaps.app"
- organization: "Cryptee"
url: "crypt.ee"
poc: "John Ozbay <hello@johnozbay.com>"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/open-letter.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function regionFlag(code?: string): string {
}

// Logos stored as SVG for these domains; all others are PNG
const svgLogos = new Set(["appfair.org", "auroraoss.com", "guardianproject.info", "fastmail.com", "jmp.chat", "kde.org", "osmfoundation.org", "molly.im"]);
const svgLogos = new Set(["appfair.org", "auroraoss.com", "comaps.app", "guardianproject.info", "fastmail.com", "jmp.chat", "kde.org", "osmfoundation.org", "molly.im"]);
function logoPath(url: string): string {
const ext = svgLogos.has(url) ? "svg" : "png";
return `/img/logos/${url}.${ext}`;
Expand Down