Merge pull request #4 from NMD03/icon

Add [tidal] icons
pull/941/head
Niclas Dauster 2024-03-01 10:45:49 +01:00 committed by GitHub
commit 917a01920a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 13 additions and 6 deletions

View File

@ -4,7 +4,8 @@
"namespace": "tidal", "namespace": "tidal",
"description": "Tidal Campaigns Galaxy", "description": "Tidal Campaigns Galaxy",
"type": "campaigns", "type": "campaigns",
"uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48",
"icon": "bullhorn"
}, },
"cluster": { "cluster": {
"authors": "Tidal", "authors": "Tidal",

View File

@ -4,7 +4,8 @@
"namespace": "tidal", "namespace": "tidal",
"description": "Tidal Groups Galaxy", "description": "Tidal Groups Galaxy",
"type": "groups", "type": "groups",
"uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6" "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6",
"icon": "user-secret"
}, },
"cluster": { "cluster": {
"authors": "Tidal", "authors": "Tidal",

View File

@ -4,7 +4,8 @@
"namespace": "tidal", "namespace": "tidal",
"description": "Tidal References Galaxy", "description": "Tidal References Galaxy",
"type": "references", "type": "references",
"uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48",
"icon": "list"
}, },
"cluster": { "cluster": {
"authors": "Tidal", "authors": "Tidal",

View File

@ -4,7 +4,8 @@
"namespace": "tidal", "namespace": "tidal",
"description": "Tidal Software Galaxy", "description": "Tidal Software Galaxy",
"type": "software", "type": "software",
"uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7" "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7",
"icon": "file-code"
}, },
"cluster": { "cluster": {
"authors": "Tidal", "authors": "Tidal",

View File

@ -4,7 +4,8 @@
"namespace": "tidal", "namespace": "tidal",
"description": "Tidal Tactic Galaxy", "description": "Tidal Tactic Galaxy",
"type": "tactic", "type": "tactic",
"uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48",
"icon": "map"
}, },
"cluster": { "cluster": {
"authors": "Tidal", "authors": "Tidal",

View File

@ -4,7 +4,8 @@
"namespace": "tidal", "namespace": "tidal",
"description": "Tidal Technique Galaxy", "description": "Tidal Technique Galaxy",
"type": "technique", "type": "technique",
"uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48",
"icon": "user-ninja"
}, },
"cluster": { "cluster": {
"authors": "Tidal", "authors": "Tidal",

View File

@ -4,6 +4,7 @@ from dataclasses import dataclass, asdict
@dataclass @dataclass
class Galaxy(): class Galaxy():
description: str description: str
icon: str
name: str name: str
namespace: str namespace: str
type: str type: str