mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-06-23 04:52:12 -05:00
When we added the RetroAchievements integration, we had a discussion about whether sending version information in the user agent was fine from a privacy standpoint. We reached the conclusion that it was okay, but it was conditional on the website having a privacy policy. Neither incarnation of Redump has that, and Redump also never asked us to send version information like RetroAchievements did, so let's use a user agent that just says "Dolphin" when connecting to Redump.
21 lines
548 B
C++
21 lines
548 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Common
|
|
{
|
|
const std::string& GetEmulatorName();
|
|
const std::string& GetScmDescStr();
|
|
const std::string& GetScmBranchStr();
|
|
const std::string& GetScmRevStr();
|
|
const std::string& GetScmRevGitStr();
|
|
const std::string& GetUserAgentStr();
|
|
const std::string& GetScmDistributorStr();
|
|
const std::string& GetScmUpdateTrackStr();
|
|
const std::string& GetNetplayDolphinVer();
|
|
int GetScmCommitsAheadMaster();
|
|
} // namespace Common
|