| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-08-05 | Merge pull request #11210 from german77/settings | liamwhite | |
| service: set: Implement system settings for Qlaunch | |||
| 2023-08-04 | service: set: Add more system settings and address comments | Narr the Reg | |
| 2023-08-02 | service: set: Implement system settings for Qlaunch | Narr the Reg | |
| 2023-08-02 | service: am: Fix wrong interface | Narr the Reg | |
| 2023-08-02 | Merge pull request #10839 from lat9nq/pgc-plus | liamwhite | |
| general: Reimplement per-game configurations | |||
| 2023-07-31 | audren_u: Fix parameter alignment | Morph | |
| The reduction in size from 0x38 to 0x34 caused the parameter to be misaligned. Skipping 1 word fixes this. | |||
| 2023-07-30 | tz_content_man: Generate the time zone binary once | lat9nq | |
| Fixes a memory leak with time zone binaries accumulating on theirselves. | |||
| 2023-07-26 | Merge pull request #10990 from comex/ubsan | liamwhite | |
| Fixes and workarounds to make UBSan happier on macOS | |||
| 2023-07-24 | Merge pull request #11095 from liamwhite/memory2 | liamwhite | |
| memory: cleanup | |||
| 2023-07-22 | core: implement GetGaiStringErrorRequest, IContextRegistrar | Liam | |
| 2023-07-22 | core: reduce TOCTTOU memory access | 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 | k_system_control: Always return some memory size | lat9nq | |
| 2023-07-21 | core,common: Give memory layout setting an enum | lat9nq | |
| Allows for 6GB and 8GB layouts to be selected. | |||
| 2023-07-21 | settings: Require time zone setting value for stirng | lat9nq | |
| 2023-07-21 | configure_system: Implement with for loop | lat9nq | |
| 2023-07-21 | settings,core,config_sys: Remove optional type from custom_rtc, rng_seed | lat9nq | |
| core: Fix MSVC errors | |||
| 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-15 | Fixes and workarounds to make UBSan happier on macOS | comex | |
| There are still some other issues not addressed here, but it's a start. Workarounds for false-positive reports: - `RasterizerAccelerated`: Put a gigantic array behind a `unique_ptr`, because UBSan has a [hardcoded limit](https://stackoverflow.com/questions/64531383/c-runtime-error-using-fsanitize-undefined-object-has-a-possibly-invalid-vp) of how big it thinks objects can be, specifically when dealing with offset-to-top values used with multiple inheritance. Hopefully this doesn't have a performance impact. - `QueryCacheBase::QueryCacheBase`: Avoid an operation that UBSan thinks is UB even though it at least arguably isn't. See the link in the comment for more information. Fixes for correct reports: - `PageTable`, `Memory`: Use `uintptr_t` values instead of pointers to avoid UB from pointer overflow (when pointer arithmetic wraps around the address space). - `KScheduler::Reload`: `thread->GetOwnerProcess()` can be `nullptr`; avoid calling methods on it in this case. (The existing code returns a garbage reference to a field, which is then passed into `LoadWatchpointArray`, and apparently it's never used, so it's harmless in practice but still triggers UBSan.) - `KAutoObject::Close`: This function calls `this->Destroy()`, which overwrites the beginning of the object with junk (specifically a free list pointer). Then it calls `this->UnregisterWithKernel()`. UBSan complains about a type mismatch because the vtable has been overwritten, and I believe this is indeed UB. `UnregisterWithKernel` also loads `m_kernel` from the 'freed' object, which seems to be technically safe (the overwriting doesn't extend as far as that field), but seems dubious. Switch to a `static` method and load `m_kernel` in advance. | |||
| 2023-07-14 | kernel: reduce page table region checking | Liam | |
| 2023-07-14 | k_process: PageTable -> GetPageTable | Liam | |
| 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-08 | k_server_session: translate special header for non-HLE requests | Liam | |
| 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 #10969 from Morph1984/k-synchronize | liamwhite | |
| kernel: Synchronize | |||
| 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-25 | PR feedback + constification | 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. | |||
