summaryrefslogtreecommitdiffstats
path: root/src/core/telemetry_session.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* file_util: Use an enum class for GetUserPath()Lioncash2018-07-211-2/+4
| | | | | | | | | | | | | Instead of using an unsigned int as a parameter and expecting a user to always pass in the correct values, we can just convert the enum into an enum class and use that type as the parameter type instead, which makes the interface more type safe. We also get rid of the bookkeeping "NUM_" element in the enum by just using an unordered map. This function is generally low-frequency in terms of calls (and I'd hope so, considering otherwise would mean we're slamming the disk with IO all the time) so I'd consider this acceptable in this case.
* Rename logging macro back to LOG_*James Rowe2018-07-031-3/+3
|
* settings: Add a configuration for use_accurate_framebuffers.bunnei2018-06-271-0/+2
|
* core: Add a configuration setting for use_multi_core.bunnei2018-05-111-0/+2
|
* core: Replace remaining old non-generic logger usages with fmt-capable equivalentsLioncash2018-04-261-3/+3
| | | | | | LOG_GENERIC usages will be amended in a follow-up to keep API changes separate from interface changes, as it will require removing a parameter from the relevant function in the VMManager class.
* Merge pull request #276 from N00byKing/acctoyuzubunnei2018-04-031-2/+2
|\ | | | | Change Telemetry Names to yuzu and remove links to citra
| * Change Telemetry Names to yuzuN00byKing2018-03-271-2/+2
| |
* | config: Use simplified checkbox (from Citra) for CPU JIT.bunnei2018-03-271-2/+3
|/
* Port citra #3352 to yuzu (#103)River City Ransomware2018-01-201-1/+9
| | | | | | | | | | * Port citra #3352 to yuzu This change allows non x86_64 architectures to compile yuzu by skipping the building of dynarmic * Fixed clang-format errors * fixes more clang-format errors
* Removing unused settings and yuzu rebrandingJames Rowe2018-01-131-9/+0
|
* Remove gpu debugger and get yuzu qt to compileJames Rowe2018-01-131-5/+0
|
* core: Gut out cryptop, since it doesn't compile with C++17.bunnei2018-01-131-3/+0
|
* configuration: Add cpu_core configuration optionMerryMage2018-01-121-1/+2
|
* WebService: Verify username and token (#2930)B3n302017-09-191-0/+12
| | | | | | | | | | * WebService: Verify username and token; Log errors in PostJson * Fixup: added docstrings to the functions * Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits * fixup: fmt warning
* web_services: Refactor to remove dependency on Core.bunnei2017-08-261-1/+7
|
* qt: Add an option to view/regenerate telemetry ID.bunnei2017-08-261-3/+16
|
* telemetry_session: Log telemetry ID.bunnei2017-08-261-0/+36
|
* telemetry: Add field for OsPlatform.bunnei2017-08-041-0/+9
|
* telemetry: Add field for BuildName.bunnei2017-08-041-0/+1
|
* telemetry_session: Log BuildDate and ProgramName fields.bunnei2017-08-041-0/+7
|
* telemetry: Log performance, configuration, and system data.bunnei2017-07-181-10/+66
|
* web_service: Add CMake flag to enable.bunnei2017-07-121-2/+8
|
* telemetry_session: Use TelemetryJson to submit real telemetry.bunnei2017-07-121-2/+2
|
* telemetry: Log a few simple data fields throughout core.bunnei2017-05-251-0/+18
|
* core: Keep track of telemetry for the current emulation session.bunnei2017-05-251-0/+24