| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-07-21 | configure_system: Implement with for loop | lat9nq | |
| 2023-07-12 | file_sys/content_archive: Detect compressed NCAs (#11047) | Tobias | |
| 2023-07-06 | vfs_real: use open file size for getting size (#11016) | liamwhite | |
| 2023-06-27 | fsmitm_romfsbuild: avoid full path lookups | Liam | |
| 2023-06-23 | vfs_real: lock concurrent accesses | Liam | |
| 2023-06-22 | Merge pull request #10806 from liamwhite/worst-fs-implementation-ever | bunnei | |
| vfs_real: misc optimizations | |||
| 2023-06-19 | vfs_concat: verify short read | Liam | |
| 2023-06-18 | vfs_concat: fix offset calculation when not aligned to file boundary | Liam | |
| 2023-06-16 | vfs_real: ensure size cache is reset on write | Liam | |
| 2023-06-16 | patch_manager: remove unnecessary GetSize calls | Liam | |
| 2023-06-16 | vfs_real: misc optimizations | Liam | |
| 2023-06-15 | nx_tzdb: Correct Antarctica spelling | lat9nq | |
| 2023-06-14 | Merge pull request #10729 from liamwhite/windows-is-a-meme | bunnei | |
| vfs_real: add file LRU cache for open file limits | |||
| 2023-06-13 | vfs_real: require file existence on open | Liam | |
| 2023-06-13 | vfs_real: add simplified open file cache | Liam | |
| 2023-06-13 | Merge pull request #10603 from lat9nq/tz-more-complete | bunnei | |
| core,common: Implement missing time zone data/computations | |||
| 2023-06-13 | vfs_real: lazily open files | Liam | |
| 2023-06-13 | vfs_real: add file LRU cache for open file limits | Liam | |
| 2023-06-11 | android: Add update support | Narr the Reg | |
| 2023-06-07 | Merge pull request #10591 from keve1227/localized-game-icons | liamwhite | |
| Localize game icons | |||
| 2023-06-05 | time_zone_binary: Add zoneinfo data | lat9nq | |
| Adds the basic time zone data for the system archive. time_zone_binary: Implement full system archive time_zone_binary: Remove unneeded template tz_binary: Make GenerateFiles static | |||
| 2023-06-03 | Fix typo | Kevin Sundqvist Norlén | |
| Co-authored-by: liamwhite <liamwhite@users.noreply.github.com> | |||
| 2023-06-03 | Update Chinese NX language names | Keve1227 | |
| ... as per the TLoZ: TotK icon files. Would this conflict with older games? | |||
| 2023-06-03 | Pick game icon based on the configured system language | Keve1227 | |
| 2023-06-03 | romfs: use vfs_cached for romfs output | Liam | |
| 2023-06-03 | vfs: add vfs_cached for romfs build | Liam | |
| 2023-05-26 | vfs_concat: fix time complexity of read | Liam | |
| 2023-05-11 | fs: adjust future save path | Liam | |
| 2023-05-07 | vfs_layered: avoid n^2 lookup in layeredfs building | Liam | |
| 2023-05-07 | vfs_vector: avoid n^2 lookup in layeredfs building | Liam | |
| 2023-03-12 | general: fix spelling mistakes | Liam | |
| 2023-02-15 | Merge pull request #9796 from liamwhite/current | liamwhite | |
| general: rename CurrentProcess to ApplicationProcess | |||
| 2023-02-14 | remove static from pointer sized or smaller types for aesthetics, change ↵ | arades79 | |
| constexpr static to static constexpr for consistency Signed-off-by: arades79 <scravers@protonmail.com> | |||
| 2023-02-14 | add static lifetime to constexpr values to force compile time evaluation ↵ | arades79 | |
| where possible Signed-off-by: arades79 <scravers@protonmail.com> | |||
| 2023-02-13 | general: rename CurrentProcess to ApplicationProcess | Liam | |
| 2023-01-01 | vfs: Replace cstr concat with char concat | Merry | |
| 2022-11-22 | general: fix compile for Apple Clang | Liam | |
| 2022-10-27 | Merge pull request #9115 from vonchenplus/game_name_by_language | bunnei | |
| file_sys: Priority display of game titles in the current language | |||
| 2022-10-24 | file_sys: Priority display of game titles in the current language | FengChen | |
| 2022-10-22 | general: Resolve -Wunused-lambda-capture and C5233 | Morph | |
| 2022-10-22 | general: Enforce C4800 everywhere except in video_core | Morph | |
| 2022-10-16 | savedata_factory: Detect future save data paths | Morph | |
| Enable compatibility for new account/device save paths planned on a future implementation. | |||
| 2022-10-06 | Merge pull request #6142 from lat9nq/prog_meta_ref_bind_address | bunnei | |
| program_metadata: Avoid reference binding to misaligned address | |||
| 2022-09-03 | core: ns: Implement pl:s service | Narr the Reg | |
| 2022-08-21 | core/file_sys: fix alignment of BuildId | Liam | |
| 2022-08-19 | core/file_sys: fix BuildId padding | Liam | |
| 2022-08-12 | ips_layer: Delimit parsed hex value string | Morph | |
| Delimits the hex value string on spaces, slashes, carriage returns or newlines, allowing for comments to be added in-line. | |||
| 2022-07-27 | chore: make yuzu REUSE compliant | Andrea Pappacoda | |
| [REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254 | |||
| 2022-06-26 | core: Replace all instances of ResultCode with Result | german77 | |
| 2022-06-13 | general: fix compilation on GCC 12 | Liam | |
