This commit is contained in:
tree 2023-06-28 09:16:16 +02:00
rodič 8b951d0b5b
revize ebb6ebce1b
5 změnil soubory, kde provedl 56 přidání a 1 odebrání

Zobrazit soubor

@ -1,3 +1,16 @@
name: Bluesky
platforms:
- web
- ios
- android
apps:
- platform: web
url: https://bsky.app/
- platform: web
url: https://app.bsky-sandbox.dev/
- platform: ios
url: https://apps.apple.com/us/app/bluesky-social/id6444370199
- platform: android
url: https://play.google.com/store/apps/details?id=xyz.blueskyweb.app&hl=en&gl=US
links:
web: https://blueskyweb.xyz/

Zobrazit soubor

@ -1 +1,8 @@
name: Klearsky
name: Klearsky
platforms:
- web
apps:
- platform: web
url: https://klearsky.pages.dev/
links:
git: https://github.com/mimonelu/klearsky

Zobrazit soubor

@ -0,0 +1,3 @@
name: atproto
links:
git: https://github.com/bluesky-social/atproto

Zobrazit soubor

@ -0,0 +1,3 @@
name: indigo
links:
git: https://github.com/bluesky-social/indigo

Zobrazit soubor

@ -1,10 +1,39 @@
type: object
additionalProperties: false
definitions:
platform:
type: string
enum:
- web
- android
- ios
- linux
- macos
properties:
id:
type: string
pattern: '^[a-z0-9-]+$'
name:
type: string
platforms:
type: array
items:
$ref: '#/definitions/platform'
apps:
type: array
items:
type: object
additionalProperties: false
properties:
platform:
$ref: '#/definitions/platform'
url:
type: string
format: url
links:
type: object
additionalProperties: false
patternProperties:
'^[a-z]+$':
type: string
format: url