| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-07-22 | core: implement GetGaiStringErrorRequest, IContextRegistrar | Liam | |
| 2023-07-22 | Merge pull request #11094 from liamwhite/get | liamwhite | |
| kernel: misc cleanup of page table accessors | |||
| 2023-07-21 | Merge pull request #11113 from liamwhite/nsd1 | bunnei | |
| nsd: add GetApplicationServerEnvironmentType | |||
| 2023-07-21 | core: remove remaining uses of dynamic_cast | Liam | |
| 2023-07-21 | general: reduce use of dynamic_cast | Liam | |
| 2023-07-21 | Merge pull request #11096 from german77/amiibooo | liamwhite | |
| service: nfc: Update Implementation to match with latest RE | |||
| 2023-07-19 | Merge pull request #11116 from lat9nq/clang-shadowing | liamwhite | |
| general: Silence -Wshadow{,-uncaptured-local} warnings | |||
| 2023-07-19 | Merge pull request #11114 from Kelebek1/warnings | liamwhite | |
| Mark SetIdleTimeDetectionExtension logging as debug | |||
| 2023-07-18 | general: Silence -Wshadow{,-uncaptured-local} warnings | lat9nq | |
| These occur in the latest commits in LLVM Clang. | |||
| 2023-07-18 | Debug SetIdleTimeDetectionExtension | Kelebek1 | |
| 2023-07-17 | nsd: add GetApplicationServerEnvironmentType | Liam | |
| 2023-07-17 | ssl: Link with crypt32 for secure channel backend | Morph | |
| 2023-07-17 | ssl: Reorder inclusions | Morph | |
| 2023-07-17 | network: Forward declarations | Morph | |
| 2023-07-17 | service: nfc: Update Implementation to match with latest RE | Narr the Reg | |
| 2023-07-16 | Merge pull request #10912 from comex/ssl | liamwhite | |
| Implement SSL service | |||
| 2023-07-14 | kernel: reduce page table region checking | Liam | |
| 2023-07-14 | k_process: PageTable -> GetPageTable | Liam | |
| 2023-07-12 | file_sys/content_archive: Detect compressed NCAs (#11047) | Tobias | |
| 2023-07-11 | Merge pull request #10985 from liamwhite/handle-translate | bunnei | |
| k_server_session: translate special header for non-HLE requests | |||
| 2023-07-10 | Merge pull request #10996 from Kelebek1/readblock_optimisation | bunnei | |
| Use spans over guest memory where possible instead of copying data | |||
| 2023-07-09 | arm_interface: correct breakpoint rewind condition | Liam | |
| 2023-07-08 | k_server_session: translate special header for non-HLE requests | Liam | |
| 2023-07-06 | vfs_real: use open file size for getting size (#11016) | liamwhite | |
| 2023-07-02 | service: nfc: Ensure controller is in the correct mode | german77 | |
| 2023-07-02 | Use spans over guest memory where possible instead of copying data. | Kelebek1 | |
| 2023-07-02 | Merge pull request #10998 from Morph1984/qt-stop-messing-with-me | liamwhite | |
| core_timing: Remove GetCurrentTimerResolution in CoreTiming loop | |||
| 2023-07-02 | Merge pull request #10969 from Morph1984/k-synchronize | liamwhite | |
| kernel: Synchronize | |||
| 2023-07-02 | core_timing: Remove GetCurrentTimerResolution in CoreTiming loop | Morph | |
| Other programs may change this value, but if thousands of syscalls in this loop is undesirable, then we can just set this once. | |||
| 2023-07-02 | Merge pull request #10942 from FernandoS27/android-is-a-pain-in-the-a-- | liamwhite | |
| Memory Tracking: Add mechanism to register small writes when gpu page is contested by GPU | |||
| 2023-07-02 | Merge pull request #10710 from liamwhite/romfs2 | liamwhite | |
| fsmitm_romfsbuild: avoid full path lookups | |||
| 2023-07-01 | Rename variables to avoid -Wshadow warnings under GCC | comex | |
| 2023-07-01 | ...actually add the SecureTransport backend to Git. | comex | |
| 2023-07-01 | Updates: | comex | |
| - Address PR feedback. - Add SecureTransport backend for macOS. | |||
| 2023-07-01 | Merge remote-tracking branch 'origin/master' into ssl | comex | |
| 2023-07-01 | kernel: Synchronize | Morph | |
| 2023-06-30 | parcel: Optimize small_vector sizes | Morph | |
| 2023-06-30 | general: Use ScratchBuffer where possible | Morph | |
| 2023-06-29 | Memory Tracker: Use 64 bit atomics instead of 128 bits | Fernando Sahmkow | |
| 2023-06-28 | Memory Tracking: Optimize tracking to only use atomic writes when contested ↵ | Fernando Sahmkow | |
| with the host GPU | |||
| 2023-06-28 | MemoryTracking: Initial setup of atomic writes. | Fernando Sahmkow | |
| 2023-06-27 | fsmitm_romfsbuild: avoid full path lookups | Liam | |
| 2023-06-27 | arm_dynarmic_32: Remove disabling of block linking on arm64 | Merry | |
| 2023-06-25 | PR feedback + constification | comex | |
| 2023-06-25 | network.cpp: include expected.h | comex | |
| 2023-06-25 | re-format | comex | |
| 2023-06-25 | Fix more Windows build errors | comex | |
| I did test this beforehand, but not on MinGW, and the error that showed up on the msvc builder didn't happen for me... | |||
| 2023-06-25 | ssl: fix compatibility with OpenSSL 1.1.1 | comex | |
| Turns out changes were needed after all. | |||
| 2023-06-25 | Fixes: | comex | |
| - Add missing virtual destructor on `SSLBackend`. - On Windows, filter out `POLLWRBAND` (one of the new flags added) when calling `WSAPoll`, because despite the constant being defined on Windows, passing it calls `WSAPoll` to yield `EINVAL`. - Reduce OpenSSL version requirement to satisfy CI; I haven't tested whether it actually builds (or runs) against 1.1.1, but if not, I'll figure it out. - Change an instance of memcpy to memmove, even though the arguments cannot overlap, to avoid a [strange GCC error](https://github.com/yuzu-emu/yuzu/pull/10912#issuecomment-1606283351). | |||
| 2023-06-25 | ssl: rename argument to avoid false positive codespell warning | comex | |
| The original name `larg` was copied from the OpenSSL documentation and is not a typo of 'large' but rather an abbreviation of '`long` argument'. But whatever, no harm in adding an underscore. | |||
