| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Merge pull request #857 from lioncash/wlan | 2018-07-30 | 2 | -0/+2 | ||
| |\ | | | | | service: Add wlan services | |||||
| | * | service: Add wlan services | 2018-07-28 | 2 | -0/+2 | ||
| | | | | | | | | | | | Adds the basic skeleton for the wlan services based off the information on Switch Brew. | |||||
| * | | service: Add btm services | 2018-07-28 | 2 | -0/+2 | ||
| |/ | | | | | Adds the skeleton for the btm services based off the information on Switch Brew. | |||||
| * | Merge pull request #847 from lioncash/ncm | 2018-07-28 | 2 | -0/+2 | ||
| |\ | | | | | service: Add ncm services | |||||
| | * | service: Add ncm services | 2018-07-27 | 2 | -0/+2 | ||
| | | | | | | | | | | | Adds the basic skeleton for the ncm services based off information on Switch Brew. | |||||
| * | | Merge pull request #846 from lioncash/mii | 2018-07-28 | 2 | -0/+2 | ||
| |\ \ | |/ |/| | service: Add mii services | |||||
| | * | service: Add mii services | 2018-07-27 | 2 | -0/+2 | ||
| | | | | | | | | | | | Adds the skeleton for the mii services based off information provided by Switch Brew | |||||
| * | | Merge pull request #845 from lioncash/nfc | 2018-07-27 | 2 | -0/+2 | ||
| |\ \ | | | | | | | service: Add nfc services | |||||
| | * | | service: Add nfc services | 2018-07-27 | 2 | -0/+2 | ||
| | |/ | | | | | | | | | Adds the skeleton of the nfc service based off the information provided on Switch Brew. | |||||
| * / | service/lbl: Implement EnableVrMode, DisableVrMode and GetVrMode | 2018-07-27 | 2 | -0/+2 | ||
| |/ | | | | | Implements these functions according to the information available on Switch Brew. | |||||
| * | service: Add ldn services | 2018-07-26 | 2 | -0/+2 | ||
| | | | | | Adds ldn services based off information provided by Switch Brew. | |||||
| * | logging/filter: Use std::string_view in ParseFilterString() | 2018-07-20 | 2 | -41/+40 | ||
| | | | | | | | | | Allows avoiding constructing std::string instances, since this only reads an arbitrary sequence of characters. We can also make ParseFilterRule() internal, since it doesn't depend on any private instance state of Filter | |||||
| * | logging/backend: Add missing standard includes | 2018-07-20 | 2 | -4/+3 | ||
| | | | | | | A few inclusions were being satisfied indirectly. To prevent breakages in the future, include these directly. | |||||
| * | logging/backend: Use std::string_view in RemoveBackend() and GetBackend() | 2018-07-20 | 2 | -12/+13 | ||
| | | | | | | | These can just use a view to a string since its only comparing against two names in both cases for matches. This avoids constructing std::string instances where they aren't necessary. | |||||
| * | externals: update fmt to version 5.1.0 | 2018-07-18 | 1 | -1/+1 | ||
| | | | | | Previously, we were on 4.1.0, which was a major version behind. | |||||
| * | Logging: Dump all logs in the queue on close in debug mode | 2018-07-15 | 3 | -1/+12 | ||
| | | ||||||
| * | Logging: Don't lock the queue for the duration of the write | 2018-07-14 | 1 | -3/+5 | ||
| | | ||||||
| * | Fix build and address review feedback | 2018-07-02 | 1 | -4/+4 | ||
| | | ||||||
| * | Add configurable logging backends | 2018-07-02 | 2 | -11/+233 | ||
| | | ||||||
| * | Update clang format | 2018-07-02 | 1 | -1/+1 | ||
| | | ||||||
| * | Rename logging macro back to LOG_* | 2018-07-02 | 2 | -10/+10 | ||
| | | ||||||
| * | Service/MM: add service and stub some functions | 2018-06-05 | 2 | -0/+2 | ||
| | | ||||||
| * | Service/BCAT: add module and services | 2018-05-28 | 2 | -0/+2 | ||
| | | ||||||
| * | log: Remove old logging macros and functions | 2018-04-27 | 2 | -54/+1 | ||
| | | | | | Now that the old macros are no longer used, we can remove all functionality related to them. | |||||
| * | Switched to NGLOG_WARNING | 2018-04-26 | 1 | -1/+1 | ||
| | | ||||||
| * | Added PREPO to logging backend, Removed comments from SaveReportWithUser | 2018-04-26 | 1 | -0/+1 | ||
| | | ||||||
| * | GetIUserInterface->CreateUserInterface, Added todos and stub logs. ↵ | 2018-04-22 | 1 | -0/+1 | ||
| | | | | | Playreport->PlayReport. | |||||
| * | Update fmtlib to fix msvc warnings | 2018-04-05 | 2 | -5/+8 | ||
| | | | | | | | Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different | |||||
| * | logging: Change FmtLogMessage to use variadic template instead of FMT_VARIADIC | 2018-04-03 | 2 | -5/+11 | ||
| | | | | | Due to premature merging of #262 I think the build may be failing right now. Should merge this ASAP to fix it. | |||||
| * | Merge pull request #262 from daniellimws/fmtlib-macros | 2018-04-02 | 7 | -66/+74 | ||
| |\ | | | | | Logging: Add fmtlib-based macros | |||||
| | * | Remove dependency chrono | 2018-03-22 | 1 | -1/+0 | ||
| | | | | | | | | | | | | | Earlier chrono was included but after some code changed it was no longer needed Forgot to remove it so I'm removing it now | |||||
| | * | Logging: Create logging macros based on fmtlib | 2018-03-22 | 7 | -66/+75 | ||
| | | | | | | | | | | | | | | | | | | | Add a new set of logging macros based on fmtlib Similar but not exactly the same as https://github.com/citra-emu/citra/pull/3533 Citra currently uses a different version of fmt, which does not support FMT_VARIADIC so make_args is used instead. On the other hand, yuzu uses fmt 4.1.0 which doesn't have make_args yet so FMT_VARIADIC is used. | |||||
| * | | service: Add NFP module interface. | 2018-03-29 | 2 | -0/+2 | ||
| | | | | | | | | | | | | | service: Initialize NFP service. Log: Add NFP service as a log subtype. | |||||
| * | | log.h: Change comment from citra to yuzu | 2018-03-26 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Service/SSL: add ssl service | 2018-03-23 | 2 | -0/+2 | ||
| | | | ||||||
| * | | Service/spl: add module and services | 2018-03-22 | 2 | -0/+2 | ||
| | | | ||||||
| * | | Service: add fatal:u, fatal:p services | 2018-03-20 | 2 | -0/+2 | ||
| |/ | ||||||
| * | Merge pull request #206 from mailwl/aoc-listaddoncontent | 2018-02-20 | 2 | -0/+2 | ||
| |\ | | | | | Service/AOC: stub ListAddOnContent function | |||||
| | * | Service/AOC: stub ListAddOnContent function | 2018-02-20 | 2 | -0/+2 | ||
| | | | ||||||
| * | | logging: Add category for Friend service. | 2018-02-19 | 2 | -0/+2 | ||
| |/ | ||||||
| * | log: Add logging category for NS services. | 2018-02-14 | 2 | -0/+2 | ||
| | | ||||||
| * | logger: Add Time service logging category. | 2018-02-04 | 2 | -0/+2 | ||
| | | ||||||
| * | logger: Add SET service logging category. | 2018-02-04 | 2 | -15/+11 | ||
| | | ||||||
| * | logger: Add PCTL service logging category. | 2018-02-04 | 2 | -0/+2 | ||
| | | ||||||
| * | logger: Add LM service logging category. | 2018-02-04 | 2 | -0/+2 | ||
| | | ||||||
| * | logger: Add APM service logging category. | 2018-02-04 | 2 | -0/+2 | ||
| | | ||||||
| * | logger: Add NIFM service logging category. | 2018-02-04 | 2 | -0/+2 | ||
| | | ||||||
| * | logger: Add VI service logging category. | 2018-02-04 | 2 | -0/+2 | ||
| | | ||||||
| * | logger: Add AM service logging category. | 2018-02-04 | 2 | -0/+2 | ||
| | | ||||||
| * | logger: Add "account" service logging category. | 2018-02-04 | 2 | -0/+2 | ||
| | | ||||||