| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-08-21 | core/file_sys: fix alignment of BuildId | Liam | |
| 2022-08-20 | Merge pull request #8790 from liamwhite/too-many-ways-to-name-a-byte-string | bunnei | |
| core/file_sys: fix BuildId padding in patch loading | |||
| 2022-08-20 | core: implement clkrst service | vonchenplus | |
| 2022-08-19 | code: dodge PAGE_SIZE #define | Kyle Kienapfel | |
| Some header files, specifically for OSX and Musl libc define PAGE_SIZE to be a number This is great except in yuzu we're using PAGE_SIZE as a variable Specific example `static constexpr u64 PAGE_SIZE = u64(1) << PAGE_BITS;` PAGE_SIZE PAGE_BITS PAGE_MASK are all similar variables. Simply deleted the underscores, and then added YUZU_ prefix Might be worth noting that there are multiple uses in different classes/namespaces This list may not be exhaustive Core::Memory 12 bits (4096) QueryCacheBase 12 bits ShaderCache 14 bits (16384) TextureCache 20 bits (1048576, or 1MB) Fixes #8779 | |||
| 2022-08-19 | core/file_sys: fix BuildId padding | Liam | |
| 2022-08-15 | core/socket_proxy: Final nits | FearlessTobi | |
| 2022-08-15 | core: network: Address review comments | german77 | |
| 2022-08-15 | internal_network: Fix mingw compilation | FearlessTobi | |
| Apparently, "interface" is a reserved keyword on this compiler. | |||
| 2022-08-15 | core, yuzu: Address first part of review comments | FearlessTobi | |
| 2022-08-15 | core/socket_proxy: Fix compilation | FearlessTobi | |
| 2022-08-15 | Make copyright headers SPDX-compliant | FearlessTobi | |
| 2022-08-15 | core, network: Add ability to proxy socket packets | FearlessTobi | |
| 2022-08-12 | Merge pull request #8755 from Morph1984/delimit-ips | bunnei | |
| ips_layer: Delimit parsed hex value string | |||
| 2022-08-12 | Merge pull request #8745 from merryhime/null-fastmem-arena | liamwhite | |
| arm_dynarmic: Fix nullptr fastmem arenas | |||
| 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-08-12 | Merge pull request #8731 from FearlessTobi/better-ldn | liamwhite | |
| ldn: Add better stubs and more data types | |||
| 2022-08-11 | core: ldn: Address review comments part 2 | german77 | |
| 2022-08-09 | Merge pull request #8722 from german77/ds4_goes_brrr | bunnei | |
| hid: core: Delay the stop vibration command when testing | |||
| 2022-08-09 | Merge pull request #8724 from german77/no_alpha | bunnei | |
| hid: core: Properly emulate controller color and battery level | |||
| 2022-08-09 | Merge pull request #8729 from merryhime/cp15-barriers | bunnei | |
| arm_dynarmic_cp15: Implement CP15DMB/CP15DSB/CP15ISB | |||
| 2022-08-09 | arm_dynarmic: Fix nullptr fastmem arenas | Merry | |
| Unable to enable fastmem of exclusive access without a valid fastmem arena. | |||
| 2022-08-08 | hid: core: Properly emulate controller color and battery level | Narr the Reg | |
| 2022-08-08 | core: ldn: Address review comments | Narr the Reg | |
| 2022-08-07 | core/arm: fix build error | Liam | |
| 2022-08-07 | Merge pull request #8637 from liamwhite/bad-interrupts | bunnei | |
| kernel: unlayer CPU interrupt handling | |||
| 2022-08-07 | Merge pull request #8240 from liamwhite/count-cycles | Morph | |
| core/arm: re-enable cycle counting | |||
| 2022-08-07 | ldn: Add better stubs and more data types | FearlessTobi | |
| Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com> Co-Authored-By: Morph <39850852+Morph1984@users.noreply.github.com> | |||
| 2022-08-07 | arm_dynarmic_cp15: Implement CP15DMB/CP15DSB/CP15ISB | Merry | |
| 2022-08-05 | hid: core: Delay the stop vibration command when testing | Narr the Reg | |
| 2022-08-02 | core_timing: Sleep in discrete intervals, yield during spin | Morph | |
| 2022-08-02 | Add missing looping event schedule signal | Kelebek1 | |
| 2022-08-02 | Make coretiming waiting more accurate | Kelebek1 | |
| 2022-08-01 | Rework multi-core vsync | Kelebek1 | |
| 2022-08-01 | core/loader: remove ELF loader | Liam | |
| 2022-08-01 | build(externals): rename Findopus to FindOpus | Andrea Pappacoda | |
| This better matches upstream's FindOpus.cmake file, and it will make using upstream's FindOpus.cmake file easier. | |||
| 2022-07-31 | Properly write out the command buffer when serving close request | Nikita Strygin | |
| 2022-07-27 | Revert Coretiming PRs 8531 and 7454 (#8591) | Maide | |
| 2022-07-27 | Merge pull request #8636 from german77/irs_cluster_release | liamwhite | |
| service: irs: Implement clustering processor | |||
| 2022-07-27 | Merge pull request #8633 from Morph1984/optional-keys | liamwhite | |
| applet/swkbd: Implement optional symbol keys | |||
| 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-07-25 | network, yuzu: Make copyright headers SPDX-compliant | FearlessTobi | |
| 2022-07-25 | network: Move global state into a seperate class | FearlessTobi | |
| Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com> | |||
| 2022-07-25 | common: multiplayer: Use GameInfo type | german77 | |
| 2022-07-25 | Address second part of review comments | FearlessTobi | |
| 2022-07-25 | Address first part of review comments | FearlessTobi | |
| 2022-07-25 | core: Fix -Wunused-variable | FearlessTobi | |
| 2022-07-25 | common, core: fix -Wmissing-field-initializers | FearlessTobi | |
| 2022-07-25 | yuzu: Add ui files for multiplayer rooms | FearlessTobi | |
| 2022-07-25 | Address comments | Narr the Reg | |
| 2022-07-25 | kernel: unlayer CPU interrupt handling | Liam | |
