Skip to content
Merged
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
21 changes: 19 additions & 2 deletions src/data/apps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export type TagType =
| 'product'
| 'kotlin'
| 'java'
| 'typescript'
| 'webhook'

// Add apps to this list
Expand All @@ -38,12 +39,19 @@ const Apps: App[] = [
tags: ['kotlin'],
},
{
title: 'Callback and Standalone Code Examples',
description: 'Example code snippets demonstrating how to use the Wire SDK across various scenarios.',
title: 'Callback and Standalone Code Examples (Java)',
description: 'Example code snippets demonstrating how to use the Wire JVM SDK across various scenarios.',
icon: null,
source: 'https://github.com/wireapp/wire-apps-jvm-sdk/tree/main/sample/sample-java/src/main/java/com/wire/sdk/sample/examples',
tags: ['java'],
},
{
title: 'Callback and Standalone Code Examples (Typescript)',
description: 'Example code snippets demonstrating how to use the Wire Typescript SDK across various scenarios.',
icon: null,
source: 'https://github.com/wireapp/wire-apps-js-sdk/tree/main/sample/src/examples',
tags: ['typescript'],
},
{
title: 'GitHub App',
description: 'Get GitHub notifications directly in Wire',
Expand Down Expand Up @@ -124,6 +132,15 @@ export const Tags: { [type in TagType]: Tag } = {
color: '#2a66d0',
},

typescript: {
label: translate({ message: 'Typescript' }),
description: translate({
message: 'Apps written in Typescript programming language',
id: 'showcase.tag.typescript.description',
}),
color: '#3178C6',
},

webhook: {
label: translate({ message: 'Webhook' }),
description: translate({
Expand Down