diff --git a/README.md b/README.md index 6648e75..b84b73d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/c81ogebvsmo43dd3?svg=true)](https://ci.appveyor.com/project/thestr4ng3r/chiaki) [![builds.sr.ht Status](https://builds.sr.ht/~thestr4ng3r/chiaki.svg)](https://builds.sr.ht/~thestr4ng3r/chiaki?) -Chiaki is a Free and Open Source Software Client for PlayStation 4 Remote Play +Chiaki is a Free and Open Source Software Client for PlayStation 4 and PlayStation 5 Remote Play for Linux, FreeBSD, OpenBSD, Android, macOS, Windows, Nintendo Switch and potentially even more platforms. ![Screenshot](assets/screenshot.png) @@ -51,11 +51,11 @@ For more detailed platform-specific instructions, see [doc/platform-build.md](do in ## Usage -If your PS4 is on your local network, is turned on or in standby mode and does not have Discovery explicitly disabled, Chiaki should find it. +If your Console is on your local network, is turned on or in standby mode and does not have Discovery explicitly disabled, Chiaki should find it. Otherwise, you can add it manually. -To do so, click the "+" icon in the top right, and enter your PS4's IP address. +To do so, click the "+" icon in the top right, and enter your Console's IP address. -You will then need to register your PS4 with Chiaki. You will need two more pieces of information to do this. +You will then need to register your Console with Chiaki. You will need two more pieces of information to do this. ### Obtaining your PSN AccountID @@ -66,10 +66,10 @@ Simply run it in a terminal and follow the instructions. Once you know your ID, ### Obtaining a Registration PIN -To register a PS4 with a PIN, it must be put into registration mode. To do this, on your PS4, simply go to: -Settings -> Remote Play (ensure this is ticked) -> Add Device +To register a Console with a PIN, it must be put into registration mode. To do this on a PS4, simply go to: +Settings -> Remote Play -> Add Device, or on a PS5: Settings -> System -> Remote Play -> Link Device. -You can now double-click your PS4 in Chiaki's main window to start Remote Play. +You can now double-click your Console in Chiaki's main window to start Remote Play. ## Joining the Community or Getting Help diff --git a/cli/src/main.c b/cli/src/main.c index 41c157e..3f7747a 100644 --- a/cli/src/main.c +++ b/cli/src/main.c @@ -9,7 +9,7 @@ #include static const char doc[] = - "CLI for Chiaki (PS4 Remote Play Client)" + "CLI for Chiaki (PlayStation Remote Play Client)" "\v" "Supported commands are:\n" " discover Discover Consoles.\n" diff --git a/gui/chiaki.desktop b/gui/chiaki.desktop index 80ee51b..53f3be2 100644 --- a/gui/chiaki.desktop +++ b/gui/chiaki.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Type=Application Name=Chiaki -Comment=PlayStation 4 Remote Play Client +Comment=PlayStation Remote Play Client Exec=chiaki Icon=chiaki Categories=Game; diff --git a/gui/re.chiaki.Chiaki.appdata.xml b/gui/re.chiaki.Chiaki.appdata.xml index ba494cc..adb10ba 100644 --- a/gui/re.chiaki.Chiaki.appdata.xml +++ b/gui/re.chiaki.Chiaki.appdata.xml @@ -4,7 +4,7 @@ re.chiaki.Chiaki chiaki.desktop Chiaki - Free and Open Source Client for PlayStation 4 Remote Play + Free and Open Source Client for PlayStation Remote Play CC0-1.0 AGPL-3.0-only Florian Märkl @@ -12,7 +12,7 @@ https://git.sr.ht/~thestr4ng3r/chiaki/tree/master/item/README.md#usage

- Chiaki is a Free and Open Source Client for PlayStation 4 Remote Play. It can be used to play in real time on a PlayStation 4 as long as there is a network connection. + Chiaki is a Free and Open Source Client for PlayStation 4 and PlayStation 5 Remote Play. It can be used to play in real time on a PlayStation as long as there is a network connection.

diff --git a/gui/src/streamwindow.cpp b/gui/src/streamwindow.cpp index 58f7392..feff758 100644 --- a/gui/src/streamwindow.cpp +++ b/gui/src/streamwindow.cpp @@ -113,7 +113,7 @@ void StreamWindow::closeEvent(QCloseEvent *event) switch(connect_info.settings->GetDisconnectAction()) { case DisconnectAction::Ask: { - auto res = QMessageBox::question(this, tr("Disconnect Session"), tr("Do you want the PS4 to go into sleep mode?"), + auto res = QMessageBox::question(this, tr("Disconnect Session"), tr("Do you want the Console to go into sleep mode?"), QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel); switch(res) {