| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-28 | Make copying directory string more concise | lat9nq | |
| 2020-05-28 | Address requested changes | lat9nq | |
| 2020-05-27 | *nix systems can read any-case patch directories | lat9nq | |
| Changes many patch_manager functions to use a case-less variant of GetSubdirectory. Fixes patches not showing up on *nix systems when patch directories are named with odd cases, i.e. `exeFS'. | |||
| 2020-05-20 | Merge pull request #3946 from ogniK5377/sysverdat-10-0-2 | bunnei | |
| file_sys: Update SystemVersion archive to version 10.0.2 | |||
| 2020-05-16 | file_sys: Update SystemVersion archive to version 10.0.2 | David Marcec | |
| 2020-05-11 | file_sys: savefata_factory: Update to support DeviceSaveData. | bunnei | |
| 2020-05-11 | file_sys: control_metadata: Expose device_save_data_size. | bunnei | |
| 2020-04-20 | file_sys: program_metadata: Add a helper function for generating reasonable ↵ | bunnei | |
| default metadata. - We need this for homebrew process initialization. | |||
| 2020-04-17 | core: memory: Move to Core::Memory namespace. | bunnei | |
| - helpful to disambiguate Kernel::Memory namespace. | |||
| 2020-04-15 | CMakeLists: Specify -Wextra on linux builds | Lioncash | |
| Allows reporting more cases where logic errors may exist, such as implicit fallthrough cases, etc. We currently ignore unused parameters, since we currently have many cases where this is intentional (virtual interfaces). While we're at it, we can also tidy up any existing code that causes warnings. This also uncovered a few bugs as well. | |||
| 2020-04-14 | file_sys: patch_manager: Return early when there are no layers to apply. | bunnei | |
| 2020-04-07 | file_sys: fix LayeredFS error when loading some games made with… (#3602) | enler | |
| * fix LayeredFS error when loading some games made with the Unity | |||
| 2020-01-30 | Revert "system_archive: Fix Korean and Chinese fonts" | bunnei | |
| 2020-01-30 | Merge pull request #3151 from FearlessTobi/fix-korean | bunnei | |
| system_archive: Fix Korean and Chinese fonts | |||
| 2020-01-24 | Disable clang-format for font files | FearlessTobi | |
| 2020-01-19 | system_archive: Fix Chinese font | FearlessTobi | |
| Adds the proper OSS font for the Chinese language. | |||
| 2020-01-19 | system_archive: Fix Korean font | FearlessTobi | |
| Fixes Korean fonts when using Open-source system archives. | |||
| 2020-01-04 | system_archive: Add a basic HLE implementation for time zone binary. | bunnei | |
| 2019-11-28 | Merge pull request #3171 from lioncash/internal-link | bunnei | |
| filesys/romfs: Make ProcessFile and ProcessDirectory internally linked | |||
| 2019-11-28 | patch_manager: Adds check for disabled cheats to prevent them from being ↵ | Morph | |
| enabled (#3178) * Adds check for disabled cheats to prevent them from being added to the CheatList * Address feedback | |||
| 2019-11-27 | filesys/romfs: Remove unused includes | Lioncash | |
| These inclusions aren't used at all within the public interface, so they can be removed. | |||
| 2019-11-27 | filesys/romfs: Make ProcessFile and ProcessDirectory internally linked | Lioncash | |
| These functions aren't used outside of this file, so we can place them within an anonymous namespace. | |||
| 2019-11-27 | file_sys/directory: Make EntryType an enum class | Lioncash | |
| This can trivially be an enum class rather than a regular enum, making it more strongly typed. | |||
| 2019-11-15 | Merge pull request #3091 from lioncash/core-conversion | bunnei | |
| core: Make most implicit type conversion warnings errors on MSVC | |||
| 2019-11-14 | Merge pull request #3093 from lioncash/mbedtls | bunnei | |
| core: Migrate off deprecated mbedtls functions | |||
| 2019-11-13 | xts_archive: Remove redundant std::string constructor | Lioncash | |
| We can just call the .data() member of path instead of constructing a completely new string. | |||
| 2019-11-12 | core: Migrate off deprecated mbedtls functions | Lioncash | |
| These functions are marked for deprecation and it's recommended that the *_ret variants be used instead. | |||
| 2019-11-12 | loader; Resolve sign conversion/truncation errors | Lioncash | |
| 2019-11-12 | file_sys: Resolve sign conversion warnings | Lioncash | |
| Resolves a few trivial sign conversion/mismatch errors. | |||
| 2019-11-03 | common_func: Use std::array for INSERT_PADDING_* macros. | bunnei | |
| - Zero initialization here is useful for determinism. | |||
| 2019-10-22 | savedata_factory: Automatically create certain savedata | Zach Hilman | |
| After further hardware investigation, it appears that some games, perhaps those more lazily coded, will not call EnsureSaveData, meaning that they expect the normal (current) save to be automatically made. Additionally, some games do not create a cache or temporary save before use. In these 3 specific instances, the save is created automatically for the game if it doesn't exist. | |||
| 2019-10-14 | Merge pull request #2897 from DarkLordZach/oss-ext-fonts-1 | bunnei | |
| pl_u: Move open source font archives and fix NAND error | |||
| 2019-10-14 | Merge pull request #2930 from DarkLordZach/gamecard-partitions | bunnei | |
| file_sys: Add code to access raw gamecard partitions and lazily load them | |||
| 2019-10-13 | card_image: Implement system update commands in XCI | Zach Hilman | |
| 2019-10-13 | pl_u: Fix mismatched rebase size error in font encryption | Zach Hilman | |
| 2019-10-13 | pl_u: Use kernel physical memory | Zach Hilman | |
| 2019-10-13 | pl_u: Use OSS system archives if real archives don't exist | Zach Hilman | |
| 2019-10-13 | system_archive: Synthesize shared fonts system archives | Zach Hilman | |
| 2019-10-13 | externals: Move OSS font data to file_sys in core | Zach Hilman | |
| 2019-10-06 | core: Remove Core::CurrentProcess() | Lioncash | |
| This only encourages the use of the global system instance (which will be phased out long-term). Instead, we use the direct system function call directly to remove the appealing but discouraged short-hand. | |||
| 2019-10-06 | hle/service: Replace global system instance calls with instance-based ones | Lioncash | |
| Migrates the HLE service code off the use of directly accessing the global system instance where trivially able to do so. This removes all usages of Core::CurrentProcess from the service code, only 8 occurrences of this function exist elsewhere. There's still quite a bit of "System::GetInstance()" being used, however this was able to replace a few instances. | |||
| 2019-09-30 | bcat: Implement DeliveryCacheProgressImpl structure | Zach Hilman | |
| Huge thanks to lioncash for re-ing this for me. | |||
| 2019-09-30 | boxcat: Use Etag header names for file digest | Zach Hilman | |
| 2019-09-30 | filesystem: Add getter for BCAT temporary directory | Zach Hilman | |
| 2019-09-30 | vfs: Add function to extract ZIP file into virtual filesystem | Zach Hilman | |
| 2019-09-22 | card_image: Add accessors for raw partitions in XCI | Zach Hilman | |
| 2019-09-22 | card_image: Lazily load partitions in XCI | Zach Hilman | |
| 2019-09-22 | pfs: Provide accessors for file sizes and offsets | Zach Hilman | |
| 2019-09-22 | Revert "Merge pull request #2709 from DarkLordZach/oss-ext-fonts-1" | David Marcec | |
| This reverts commit fa1c60c33ef88c6cd0b72da46842dc9098db712d, reversing changes made to e34899067b60a69bca02761bd1290c6824bb559a. | |||
| 2019-09-22 | Merge pull request #2535 from DarkLordZach/cheat-v2 | David | |
| cheat_engine: Use Atmosphere's Cheat VM and fix cheat crash | |||
