summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/backend (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bcat: Take std::function instance by value in NullBackend's constructorLioncash2019-10-062-2/+2
| | | | | Without this, the std::move within the constructor initializer list won't be able to actually perform a move.
* bcat: In-class initialize ProgressServiceBackend's impl memberLioncash2019-10-062-2/+2
| | | | Allows us to remove a constructor initializer list.
* bcat: Make ProgressServiceBackend's constructor take a std::string_viewLioncash2019-10-062-3/+7
| | | | | Given the string is appended to another, we can make it a view so a redundant full copy of the string isn't made.
* bcat: Make ProgressServiceBackend's GetEvent() constLioncash2019-10-062-2/+2
| | | | | This member function doesn't modify internal member state, so it can be marked const.
* boxcat: Silence an unused variable warningLioncash2019-10-061-1/+2
| | | | | | On parse errors, we can log out the explanatory string indicating what the parsing error was, rather than just ignoring the variable and returning an overly broad error code.
* service/bcat: Silence -Wreorder and -WunusedReinUsesLisp2019-10-051-1/+1
|
* qt: Add service dialogZach Hilman2019-10-021-6/+5
|
* boxcat: Use updated game-asset API URL and tagsZach Hilman2019-10-011-6/+6
|
* bcat: Add FSC accessors for BCAT dataZach Hilman2019-10-012-10/+11
| | | Ports BCAT to use FSC interface
* boxcat: Implement events global fieldZach Hilman2019-09-302-8/+10
|
* bcat: Implement DeliveryCacheProgressImpl structureZach Hilman2019-09-304-39/+299
| | | Huge thanks to lioncash for re-ing this for me.
* boxcat: Use Etag header names for file digestZach Hilman2019-09-301-10/+11
|
* boxcat: Add downloading and client for launch parameter dataZach Hilman2019-09-302-16/+77
|
* bcat: Add backend function for BCAT Indirect (launch parameter)Zach Hilman2019-09-302-0/+11
| | | | Returns the data that should be returned by PopLaunchParameter kind=ApplicationSpecific.
* bcat: Expose CreateBackendFromSettings helper functionZach Hilman2019-09-301-0/+2
|
* bcat: Add BCAT backend for Boxcat serviceZach Hilman2019-09-302-0/+407
| | | | Downloads content from yuzu servers and unpacks it into the temporary directory provided. Fully supports all Backend features except passphrase.
* bcat: Add backend class to generify the functions of BCATZach Hilman2019-09-302-0/+100
Provides the most abstract simplified functions of BCAT as functions. Also includes a NullBackend class which is just a no-op.