style: fix capitalization in shadPS4 name

This commit is contained in:
Vinicius Rangel
2025-05-31 10:13:24 -03:00
parent a3ff8852f4
commit 3b54005206
4 changed files with 7 additions and 7 deletions

View File

@@ -4,7 +4,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ShadPS4 Launcher</title> <title>shadPS4 Launcher</title>
</head> </head>
<body> <body>

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "shadps4-launcher" name = "shadps4-launcher"
version = "1.0.0" version = "1.0.0"
description = "ShadPS4 Launcher" description = "shadPS4 Launcher"
authors = ["Vinicius Rangel <me@viniciusrangel.dev>"] authors = ["Vinicius Rangel <me@viniciusrangel.dev>"]
edition = "2021" edition = "2021"

View File

@@ -1,6 +1,6 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "ShadPS4", "productName": "shadPS4",
"version": "0.0.1", "version": "0.0.1",
"identifier": "net.shadps4.launcher", "identifier": "net.shadps4.launcher",
"build": { "build": {
@@ -13,14 +13,14 @@
"windows": [ "windows": [
{ {
"label": "main", "label": "main",
"title": "ShadPS4 Launcher", "title": "shadPS4 Launcher",
"width": 930, "width": 930,
"height": 650, "height": 650,
"url": "/" "url": "/"
}, },
{ {
"label": "emu_config", "label": "emu_config",
"title": "ShadPS4 - Emulator Config", "title": "shadPS4 - Emulator Config",
"width": 1200, "width": 1200,
"height": 850, "height": 850,
"visible": false, "visible": false,

View File

@@ -290,12 +290,12 @@ function AddCustom({ reset }: { reset: Callback }) {
extensions.push("AppImage"); extensions.push("AppImage");
} }
openDialog({ openDialog({
title: "ShadPS4 emulator binary", title: "shadPS4 emulator binary",
filters: filters:
extensions.length > 0 extensions.length > 0
? [ ? [
{ {
name: "ShadPS4 binary", name: "shadPS4 binary",
extensions, extensions,
}, },
] ]