1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-11-06 09:59:02 -06:00

Revert "Merge branch 'master' into 'dev'"

This reverts merge request !17
This commit is contained in:
Crimson Hawk
2024-03-06 05:26:38 +00:00
parent fdadc50fff
commit cdbdf63ebe
2887 changed files with 18295 additions and 18366 deletions

View File

@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2018 suyu Emulator Project
# SPDX-FileCopyrightText: 2018 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
add_library(web_service STATIC
@@ -19,6 +19,6 @@ add_library(web_service STATIC
create_target_directory_groups(web_service)
target_link_libraries(web_service PRIVATE common network nlohmann_json::nlohmann_json httplib::httplib cpp-jwt::cpp-jwt)
if (suyu_USE_PRECOMPILED_HEADERS)
if (YUZU_USE_PRECOMPILED_HEADERS)
target_precompile_headers(web_service PRIVATE precompiled_headers.h)
endif()

View File

@@ -12,7 +12,7 @@ namespace WebService {
/**
* Implementation of AnnounceMultiplayerRoom::Backend that (de)serializes room information into/from
* JSON, and submits/gets it to/from the suyu web service
* JSON, and submits/gets it to/from the yuzu web service
*/
class RoomJson : public AnnounceMultiplayerRoom::Backend {
public:

View File

@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2022 suyu Emulator Project
// SPDX-FileCopyrightText: 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once

View File

@@ -11,7 +11,7 @@ namespace WebService {
/**
* Implementation of VisitorInterface that serialized telemetry into JSON, and submits it to the
* suyu web service
* yuzu web service
*/
class TelemetryJson : public Common::Telemetry::VisitorInterface {
public:

View File

@@ -10,8 +10,8 @@ namespace WebService {
/**
* Checks if username and token is valid
* @param host the web API URL
* @param username suyu username to use for authentication.
* @param token suyu token to use for authentication.
* @param username yuzu username to use for authentication.
* @param token yuzu token to use for authentication.
* @returns a bool indicating whether the verification succeeded
*/
bool VerifyLogin(const std::string& host, const std::string& username, const std::string& token);

View File

@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: Copyright 2018 suyu Emulator Project
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once