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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ShadPS4 Launcher</title>
<title>shadPS4 Launcher</title>
</head>
<body>

View File

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

View File

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

View File

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