Update PS4 References

This commit is contained in:
Florian Märkl 2020-12-29 10:23:27 +01:00
commit 308d6043f4
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
5 changed files with 12 additions and 12 deletions

View file

@ -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

View file

@ -9,7 +9,7 @@
#include <string.h>
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"

View file

@ -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;

View file

@ -4,7 +4,7 @@
<id>re.chiaki.Chiaki</id>
<launchable type="desktop-id">chiaki.desktop</launchable>
<name>Chiaki</name>
<summary>Free and Open Source Client for PlayStation 4 Remote Play</summary>
<summary>Free and Open Source Client for PlayStation Remote Play</summary>
<metadata_license>CC0-1.0</metadata_license>
<project_license>AGPL-3.0-only</project_license>
<developer_name>Florian Märkl</developer_name>
@ -12,7 +12,7 @@
<url type="help">https://git.sr.ht/~thestr4ng3r/chiaki/tree/master/item/README.md#usage</url>
<description>
<p>
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.
</p>
</description>
<screenshots>

View file

@ -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)
{