Skip to content

Commit 9f72072

Browse files
committed
Remove decky users hint, since no one seems to care
(after outcries for it on reddit...)
1 parent 3f177af commit 9f72072

1 file changed

Lines changed: 18 additions & 33 deletions

File tree

  • frontend/src/routes/(buddy-app)/buddy-app/install

frontend/src/routes/(buddy-app)/buddy-app/install/+page.svelte

Lines changed: 18 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ import '../../../../css/md.pcss';
77
import AboutBuddy from './about-buddy.svx';
88
99
import { browser } from '$app/environment';
10-
import IcoAlert from '~icons/mdi/alert';
1110
import IcoGitHub from '~icons/mdi/github';
1211
import IcoLinux from '~icons/mdi/linux';
1312
import IcoWindows from '~icons/mdi/windows';
14-
import IcoSteamDeck from '~icons/simple-icons/steamdeck';
1513
1614
interface GitHubRelease {
1715
tag_name: string;
@@ -60,20 +58,24 @@ const fetchReleases = async () => {
6058
<title>SteamInputDB | Buddy App Downloads and Installation</title>
6159
<meta
6260
name="description"
63-
content="Community-driven database of Steam Input configurations using the Steam API." />
61+
content="Community-driven database of Steam Input configurations using the Steam API."
62+
/>
6463
<meta
6564
name="keywords"
66-
content="Steam Input DB, Buddy, Buddy-App, Buddy App, Steam DB, DB, Steam Deck, Steam Input, Steam controller configs, controller layouts, community database, Steam API, gamepad configurations, controller presets" />
65+
content="Steam Input DB, Buddy, Buddy-App, Buddy App, Steam DB, DB, Steam Deck, Steam Input, Steam controller configs, controller layouts, community database, Steam API, gamepad configurations, controller presets"
66+
/>
6767
<meta
6868
name="robots"
69-
content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
69+
content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"
70+
/>
7071

7172
<meta property="og:site_name" content="SteamInputDB - BuddyApp" />
7273
<meta property="og:type" content="website" />
7374
<meta property="og:title" content="SteamInputDB - BuddyApp" />
7475
<meta
7576
property="og:description"
76-
content="SteamInputDB-Buddy is an official buddy-app for SteamInputDB that provides direct integration into the Steam client " />
77+
content="SteamInputDB-Buddy is an official buddy-app for SteamInputDB that provides direct integration into the Steam client "
78+
/>
7779
<meta property="og:url" content="https://www.steaminputdb.com/buddy-app/install" />
7880
<meta property="og:image" content="https://www.steaminputdb.com/ogimage.png" />
7981
<meta property="og:image:alt" content="SteamInputDB preview image" />
@@ -82,7 +84,8 @@ const fetchReleases = async () => {
8284
<meta name="twitter:title" content="SteamInputDB - BuddyApp" />
8385
<meta
8486
name="twitter:description"
85-
content="SteamInputDB-Buddy is an official buddy-app for SteamInputDB that provides direct integration into the Steam client " />
87+
content="SteamInputDB-Buddy is an official buddy-app for SteamInputDB that provides direct integration into the Steam client "
88+
/>
8689
<meta name="twitter:image" content="https://www.steaminputdb.com/ogimage.png" />
8790
<meta name="twitter:image:alt" content="SteamInputDB preview image" />
8891
</svelte:head>
@@ -95,28 +98,6 @@ const fetchReleases = async () => {
9598

9699
<section id="install">
97100
<h2>Downloads | Installation</h2>
98-
<div class="box alert card glass">
99-
<strong class="card glass"><IcoSteamDeck /> Decky users <IcoAlert /> </strong>
100-
<div style="display: grid; gap: 0.5em;">
101-
<span>
102-
If you are using a Steam Deck, we offer a Decky-Plugin as alternative installation method.</span>
103-
<span>
104-
The Decky-Plugin is not currently available in the Decky store, <strong>you</strong> can
105-
speed up the review-process by commenting
106-
<a
107-
href="https://github.com/SteamDeckHomebrew/decky-plugin-database/pull/1023"
108-
target="_blank"
109-
rel="external">here</a
110-
></span>
111-
<span>
112-
In the meantime, <a
113-
href="https://github.com/Alia5/steaminputdb.com/releases"
114-
target="_blank"
115-
rel="external">GitHub releases</a>
116-
include the Decky-Loader plugin <code style="padding: 0.1em 0.33em">.zip</code>-File for
117-
manual installation.</span>
118-
</div>
119-
</div>
120101
{#if !isMobile}
121102
<h3>Automatic installation</h3>
122103
<p>
@@ -141,7 +122,8 @@ const fetchReleases = async () => {
141122
</strong>
142123
<code
143124
{@attach selectAllHandler()}
144-
style="border: none; box-shadow: none; outline: none; user-select: all; background: transparent; width: 100%; display: block; font-size: 1.2em; padding: 0.5em 1em;">
125+
style="border: none; box-shadow: none; outline: none; user-select: all; background: transparent; width: 100%; display: block; font-size: 1.2em; padding: 0.5em 1em;"
126+
>
145127
{#if isWindows}
146128
irm https://www.steaminputdb.com/buddy-app/install.ps1 | iex
147129
{/if}
@@ -170,7 +152,8 @@ const fetchReleases = async () => {
170152
target="_blank"
171153
rel="external"
172154
style="background-color: color(from var(--color-primary) srgb r g b / 0.7);"
173-
class="button">
155+
class="button"
156+
>
174157
{#if isWindows}
175158
<IcoWindows />
176159
{:else if isLinux}
@@ -191,7 +174,8 @@ const fetchReleases = async () => {
191174
target="_blank"
192175
rel="external"
193176
style="background-color: color(from var(--highlight-color) srgb r g b / 0.33); font-size: 1.2em;"
194-
class="button">
177+
class="button"
178+
>
195179
{#if isWindows}
196180
<IcoWindows />
197181
{:else if isLinux}
@@ -234,7 +218,8 @@ const fetchReleases = async () => {
234218
target="_blank"
235219
rel="external"
236220
style="font-size: 1.1em; font-weight: normal; margin-top: 1em;"
237-
class="button"><IcoGitHub /> View all releases on GitHub</a>
221+
class="button"><IcoGitHub /> View all releases on GitHub</a
222+
>
238223
</div>
239224
{/snippet}
240225

0 commit comments

Comments
 (0)