diff --git a/docs/platforms/nintendo-switch/index.mdx b/docs/platforms/nintendo-switch/index.mdx index 8f82aec6642df6..b1cfa835ae538b 100644 --- a/docs/platforms/nintendo-switch/index.mdx +++ b/docs/platforms/nintendo-switch/index.mdx @@ -1,6 +1,6 @@ --- title: Nintendo Switch -caseStyle: PascalCase +caseStyle: snake_case supportLevel: production sdk: sentry.nintendo-switch categories: diff --git a/docs/platforms/playstation/index.mdx b/docs/platforms/playstation/index.mdx new file mode 100644 index 00000000000000..0246b6e3080a34 --- /dev/null +++ b/docs/platforms/playstation/index.mdx @@ -0,0 +1,21 @@ +--- +title: PlayStation +caseStyle: snake_case +supportLevel: production +sdk: sentry.playstation +categories: + - console + - gaming +--- + + + +To start using Sentry in your PS5 games, you can +- head over to [PlayStation Partners](https://partners.playstation.net/) - *Tools & Middleware*. +- confirm your developer status after locating *Sentry* in the *Network* category. + +We'll receive your request and get back to you with the next steps. + +---- + +"PlayStation", "PS5" are registered trademarks or trademarks of Sony Interactive Entertainment Inc. diff --git a/src/components/platformIcon.tsx b/src/components/platformIcon.tsx index a3ee88db7af844..127055e5ef3788 100644 --- a/src/components/platformIcon.tsx +++ b/src/components/platformIcon.tsx @@ -94,6 +94,7 @@ import NuxtSVG from 'platformicons/svg/nuxt.svg'; import OpenaiSVG from 'platformicons/svg/openai.svg'; import PerlSVG from 'platformicons/svg/perl.svg'; import PhpSVG from 'platformicons/svg/php.svg'; +import PlaystationSVG from 'platformicons/svg/playstation.svg'; import PostgresqlSVG from 'platformicons/svg/postgresql.svg'; import PowershellSVG from 'platformicons/svg/powershell.svg'; import PyramidSVG from 'platformicons/svg/pyramid.svg'; @@ -234,6 +235,7 @@ import NuxtSVGLarge from 'platformicons/svg_80x80/nuxt.svg'; import OpenaiSVGLarge from 'platformicons/svg_80x80/openai.svg'; import PerlSVGLarge from 'platformicons/svg_80x80/perl.svg'; import PhpSVGLarge from 'platformicons/svg_80x80/php.svg'; +import PlaystationSVGLarge from 'platformicons/svg_80x80/playstation.svg'; import PostgresqlSVGLarge from 'platformicons/svg_80x80/postgresql.svg'; import PowershellSVGLarge from 'platformicons/svg_80x80/powershell.svg'; import PyramidSVGLarge from 'platformicons/svg_80x80/pyramid.svg'; @@ -666,6 +668,10 @@ const formatToSVG = { sm: PhpSVG, lg: PhpSVGLarge, }, + playstation: { + sm: PlaystationSVG, + lg: PlaystationSVGLarge, + }, postgresql: { sm: PostgresqlSVG, lg: PostgresqlSVGLarge, @@ -963,6 +969,7 @@ export const PLATFORM_TO_ICON = { 'php-monolog': 'php', 'php-symfony2': 'symfony', 'php-symfony': 'symfony', + playstation: 'playstation', python: 'python', 'python-aiohttp': 'aiohttp', 'python-airflow': 'apache-airflow', diff --git a/src/data/platforms.yml b/src/data/platforms.yml index 57d838b3a05c61..4ea7cdf3f7dbd4 100644 --- a/src/data/platforms.yml +++ b/src/data/platforms.yml @@ -132,4 +132,6 @@ - slug: nintendo-switch type: language name: Nintendo Switch - case_style: PascalCase # Where is this used? +- slug: playstation + type: language + name: PlayStation