| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-09-06 | file_sys/nca_patch: Amend constructor initializer list order | Lioncash | |
| Orders the elements in the initializer list in the order they're specified in the class. This prevents compiler warnings about initialization order. | |||
| 2018-09-06 | file_sys/nca_patch: Remove unnecessary includes | Lioncash | |
| romfs.h doesn't need to be included in the header, the only real dependency here is common's swap.h that needs to be included. | |||
| 2018-09-06 | file_sys/patch_manager: Add missing includes | Lioncash | |
| These includes were previously being satisfied indirectly. | |||
| 2018-09-05 | Merge pull request #1242 from lioncash/file-sys | bunnei | |
| file_sys/submission_package: Replace includes with forward declarations where applicable | |||
| 2018-09-05 | file_sys/submission_package: Correct constructor initialization list order | Lioncash | |
| Orders the elements in the sequence to match the order in which they'll actually be initialized in. | |||
| 2018-09-05 | file_sys/submission_package: Replace includes with forward declarations ↵ | Lioncash | |
| where applicable | |||
| 2018-09-04 | bktr: Fix bucket overlap error | Zach Hilman | |
| 2018-09-04 | patch_manager: Centralize Control-type NCA parsing | Zach Hilman | |
| 2018-09-04 | nsp: Fix error masking issue with XCI files | Zach Hilman | |
| Now display correct error instead of catch-all MissingProgramNCA | |||
| 2018-09-04 | game_list: Fix version display on non-NAND titles | Zach Hilman | |
| 2018-09-04 | bktr: Add logging on successful patch | Zach Hilman | |
| 2018-09-04 | bktr: Implement IVFC offset shifting | Zach Hilman | |
| Fixes base game read errors | |||
| 2018-09-04 | bktr: Fix missing includes and optimize style | Zach Hilman | |
| 2018-09-04 | patch_manager: Add usages of patches to ExeFS | Zach Hilman | |
| 2018-09-04 | file_sys: Add class to manage game patches | Zach Hilman | |
| Right now only includes Updates, but should eventually contain all of the other patches we need. | |||
| 2018-09-04 | file_sys: Add BKTR patching mechanism | Zach Hilman | |
| 2018-09-04 | content_archive: Add BKTR header parsing to NCA | Zach Hilman | |
| 2018-09-04 | registration: Add RegisteredCacheUnion | Zach Hilman | |
| Aggregates multiple caches into one interface | |||
| 2018-09-04 | main: Only show DRD deprecation warning once | Zach Hilman | |
| 2018-09-04 | control_metadata: Use alternate language names if AmericanEnglish isn't ↵ | Zach Hilman | |
| available | |||
| 2018-09-04 | card_image: Add program title ID getter | Zach Hilman | |
| 2018-09-04 | nsp: Comply with style and performance guidelines | Zach Hilman | |
| 2018-09-04 | registration: Add support for installing NSP files | Zach Hilman | |
| 2018-09-04 | card_image: Parse XCI secure partition with NSP | Zach Hilman | |
| Eliminated duplicate code and adds support for Rev1+ carts | |||
| 2018-09-04 | file_sys: Add Nintendo Submission Package (NSP) | Zach Hilman | |
| 2018-09-03 | file_sys: Replace includes with forward declarations where applicable | Lioncash | |
| Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed. | |||
| 2018-09-02 | vfs_real: Forward declare IOFile | Lioncash | |
| Eliminates the need to rebuild some source files if the file_util header ever changes. This also uncovered some indirect inclusions, which have also been fixed. | |||
| 2018-08-31 | core/core: Replace includes with forward declarations where applicable | Lioncash | |
| The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which replaces most of the includes in the core header with forward declarations. This makes it so that if any of the headers the core header was previously including change, then no one will need to rebuild the bulk of the core, due to core.h being quite a prevalent inclusion. This should make turnaround for changes much faster for developers. | |||
| 2018-08-27 | Merge pull request #1188 from lioncash/unused | bunnei | |
| vfs_real: Remove unused variable in CreateDirectoryRelative() | |||
| 2018-08-27 | vfs_real: Remove unused variable in CreateDirectoryRelative() | Lioncash | |
| 2018-08-27 | registered_cache: Get rid of variable shadowing in ProcessFiles() | Lioncash | |
| Prevents compiler warnings. | |||
| 2018-08-24 | file_sys/crypto: Fix missing/unnecessary includes | Zach Hilman | |
| 2018-08-23 | xci: Ignore NCA files with updates in secure | Zach Hilman | |
| 2018-08-23 | content_archive: Add update title detection | Zach Hilman | |
| This is needed because the title IDs of update NCAs will not use the update title ID. The only sure way to tell is to look for a partition with BKTR crypto. | |||
| 2018-08-23 | key_manager: Create keys dir if it dosen't exist | Zach Hilman | |
| On call to WriteKeyToFile, so that the autogenerated file can be written. | |||
| 2018-08-23 | file_sys: Cut down on includes and copies | Zach Hilman | |
| 2018-08-23 | crypto: Eliminate magic constants | Zach Hilman | |
| 2018-08-23 | file_sys: Implement NAX containers | Zach Hilman | |
| 2018-08-23 | registration: Add GetEntryUnparsed methods | Zach Hilman | |
| Returns the file before calling parser on it. | |||
| 2018-08-23 | sdmc_factory: Add SDMC RegisteredCache getter | Zach Hilman | |
| 2018-08-23 | vfs: Add GetOrCreateDirectoryRelative method | Zach Hilman | |
| 2018-08-23 | xts_encryption_layer: Implement XTSEncryptionLayer | Zach Hilman | |
| 2018-08-23 | xci: Fix error masking issue | Zach Hilman | |
| Prevents NCA-related errors from being masked into MissingProgramNCA or MissingKeyFile | |||
| 2018-08-22 | Merge pull request #1136 from tech4me/master | bunnei | |
| qt/main: Port part of citra(#3411), open savedata works | |||
| 2018-08-21 | vfs: Replace mode.h include with forward declarations where applicable | Lioncash | |
| Avoids the need to rebuild these source files if the mode header changes. | |||
| 2018-08-21 | sdmc_factory: Remove unnecessary core include | Lioncash | |
| This doesn't require the central core header to be included, it just needs the vfs headers. | |||
| 2018-08-21 | qt/main: Port part of citra(#3411), open savedata works | tech4me | |
| 2018-08-20 | service/filesystem: Use forward declarations where applicable | Lioncash | |
| Avoids the need to rebuild multiple source files if the filesystem code headers change. This also gets rid of a few instances of indirect inclusions being relied upon | |||
| 2018-08-20 | romfs_factory: Remove unnecessary includes and use forward declarations ↵ | Lioncash | |
| where applicable Avoids the need to rebuild whatever includes the romfs factory header if the loader header ever changes. We also don't need to include the main core header. We can instead include the headers we specifically need. | |||
| 2018-08-20 | registration: Add Data_Unknown5 NCAContentType | Zach Hilman | |
