diff --git a/cspell.json b/cspell.json index f7c147f4..8440acdc 100644 --- a/cspell.json +++ b/cspell.json @@ -25,5 +25,5 @@ // flagWords - list of words to be always considered incorrect // This is useful for offensive words and common spelling errors. // cSpell:disable (don't complain about the words we listed here) - "flagWords": ["hte"] + "flagWords": ["hte", "comunity"] } diff --git a/src/gql/mods/versions.graphql b/src/gql/mods/versions.graphql index 8c5a0518..38114285 100644 --- a/src/gql/mods/versions.graphql +++ b/src/gql/mods/versions.graphql @@ -19,6 +19,15 @@ query GetModVersions($mod: ModID!, $limit: Int!, $offset: Int!) { hash size } + virustotal_results { + created_at + file_name + hash + id + safe + updated_at + version_id + } } } } diff --git a/src/gql/versions/mod_version.graphql b/src/gql/versions/mod_version.graphql index 5b8853bb..231c5673 100644 --- a/src/gql/versions/mod_version.graphql +++ b/src/gql/versions/mod_version.graphql @@ -31,5 +31,14 @@ query GetModVersion($version: VersionID!) { optional condition } + virustotal_results { + created_at + file_name + hash + id + safe + updated_at + version_id + } } } diff --git a/src/lib/components/general/FicsitCard.svelte b/src/lib/components/general/FicsitCard.svelte index d6037924..967ad4cf 100644 --- a/src/lib/components/general/FicsitCard.svelte +++ b/src/lib/components/general/FicsitCard.svelte @@ -87,7 +87,7 @@
{:else} = { en: { name: 'English', flag: '🇺🇳' }, de: { name: 'Deutsch', - flag: '🇩🇪' + flag: '🇩🇪', + style: 'text-black' // Bug in something? text color affects the top stripe of the DE flag + }, + es: { + name: 'Español', + flag: '🇪🇸' }, fr: { name: 'Français', flag: '🇫🇷' }, + hu: { + name: 'Magyar', + flag: 'ðŸ‡ðŸ‡º' + }, it: { name: 'Italiano', flag: '🇮🇹' }, + ko: { + name: 'í•œêµì–´', + flag: '🇰🇷' + }, lv: { name: 'LatvieÅ¡u', flag: '🇱🇻' @@ -37,6 +59,10 @@ name: 'Nederlands', flag: '🇳🇱' }, + 'pt-BR': { + name: 'Português (Brasil)', + flag: '🇧🇷' + }, pl: { name: 'Polski', flag: '🇵🇱' @@ -54,6 +80,7 @@ flag: '🇹🇼' } } as const; + // cspell:enable const lang = writable