Skip to content
Open
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
14 changes: 14 additions & 0 deletions src/data/clients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,20 @@ export const CLIENTS: Client[] = [
links: {
website: 'https://inhive.ru'
}
},
{
id: 'tenebra',
name: 'Tenebra',
core: 'singbox',
platforms: ['windows'],
description: 'Open-source VPN client for Windows built on sing-box.',
githubRepo: 'Divaaaan/tenebra',
downloadLinks: {
windows: 'https://github.com/Divaaaan/tenebra/releases/latest'
},
links: {
github: 'https://github.com/Divaaaan/tenebra'
}
}
Comment on lines +670 to 682

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Missing logo field

Every other entry in CLIENTS supplies a logo path. Tenebra is the only entry that omits it. While the field is optional in the interface, its absence will cause the card to render without an icon, making it visually inconsistent with the rest of the list. A logo asset (e.g. /clients/logo/tenebra-dark.svg) should be added alongside this entry.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!


]
Expand Down