| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-28 | hle: service: nvdrv: Revert #4981 to remove usage of SleepClientThread. | bunnei | |
| - Note, this always processes the ioctl right away, which fixes BotW 1.0.0 issues. | |||
| 2020-12-28 | hle: kernel: service_thread: Add parameter for thread pool size. | bunnei | |
| 2020-12-28 | hle: service: nvflinger: Refactor locking and interfaces. | bunnei | |
| 2020-12-28 | hle: service: vi: Remove usage of SleepClientThread. | bunnei | |
| 2020-12-28 | core: hle: server_session: Use separate threads for each service connection. | bunnei | |
| 2020-12-21 | Merge pull request #5042 from Morph1984/project-aether | bunnei | |
| Project Aether: Reimplementation of the Web Browser Applet | |||
| 2020-12-20 | Merge pull request #5131 from bunnei/scheduler-rewrite | bunnei | |
| Rewrite Kernel scheduler based on Atmosphere | |||
| 2020-12-18 | applets/web: Implement the online web browser applet | Morph | |
| 2020-12-18 | main, applets/web: Re-add progress dialog for RomFS extraction | Morph | |
| 2020-12-18 | pl_u, applets/web: Decrypt shared fonts to TTF files | Morph | |
| 2020-12-18 | ns_vm: Stub NeedsUpdateVulnerability | Morph | |
| This is used to force system updates on launching the web browser. We do not care about system updates so this can be set to false. | |||
| 2020-12-18 | controllers/npad: Make press_state atomic | Morph | |
| 2020-12-18 | applets/web: Implement the default web browser applet frontend | Morph | |
| 2020-12-18 | applets/web: Implement the offline browser applet backend | Morph | |
| 2020-12-18 | applets/web: Initial implementation of the web browser applet | Morph | |
| 2020-12-18 | applets: Remove the previous web browser applet implementation | Morph | |
| 2020-12-18 | buffer_queue: better use of std::array | ameerj | |
| 2020-12-17 | Overwrite slots instead of queuing them, add disconnect signal | ameerj | |
| Fix for Katana Zero and Yoshi's Crafted World | |||
| 2020-12-15 | Merge pull request #5190 from Morph1984/validate_device_handle | bunnei | |
| controllers/npad: Validate device handles before use | |||
| 2020-12-15 | Merge pull request #5119 from Morph1984/fs-opendatastoragewithprogramindex | bunnei | |
| fsp_srv: Implement OpenDataStorageWithProgramIndex | |||
| 2020-12-14 | Merge pull request #5168 from Morph1984/aoc-PurchaseEventManager | bunnei | |
| aoc_u: Stub IPurchaseEventManager and its service commands | |||
| 2020-12-12 | controllers/npad: Validate device handles before use | Morph | |
| Some games such as NEKOPARA Vol. 3 send invalid device handles when calling InitializeVibrationDevice. Introduce a check to validate the device handle before use. | |||
| 2020-12-11 | Merge pull request #5172 from lioncash/svc-wide | bunnei | |
| svc: Remove unnecessary casts | |||
| 2020-12-10 | Merge pull request #5123 from Morph1984/nim-IsLargeResourceAvailable | bunnei | |
| nim: Stub IsLargeResourceAvailable | |||
| 2020-12-09 | Merge pull request #5142 from comex/xx-poll-events | Rodrigo Locatti | |
| network, sockets: Replace `POLL_IN`, `POLL_OUT`, etc. constants with an `enum class PollEvents` | |||
| 2020-12-08 | Merge pull request #5166 from lioncash/log-cast | bunnei | |
| core: Remove unnecessary enum casts in log calls | |||
| 2020-12-08 | Merge pull request #5135 from Morph1984/applets-shadow | bunnei | |
| applets: Resolve variable shadowing | |||
| 2020-12-08 | svc: Remove unnecessary casts | Lioncash | |
| Simplifies and removes some casts. In all cases, these were generally widening from a 32-bit unsigned type to a 64-bit unsigned type, so no information would be lost from the conversion. | |||
| 2020-12-08 | IPurchaseEventManager: Implement GetPurchasedEventReadableHandle | Morph | |
| - Used by Pokémon Café Mix - Used by DOOM: Eternal | |||
| 2020-12-08 | IPurchaseEventManager: Stub Set(Default)DeliveryTarget | Morph | |
| - Used by Pokémon Café Mix - Used by DOOM: Eternal | |||
| 2020-12-08 | aoc_u: Stub Create(Permanent)EcPurchasedEventManager | Morph | |
| - Used by Pokémon Café Mix - Used by DOOM: Eternal | |||
| 2020-12-08 | fsp_srv: Implement OpenDataStorageWithProgramIndex | Morph | |
| - Used by RollerCoaster Tycoon 3: Complete Edition | |||
| 2020-12-08 | file_sys: Consolidate common Title ID operations | Morph | |
| 2020-12-07 | core: Remove unnecessary enum casts in log calls | Lioncash | |
| Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts. | |||
| 2020-12-07 | controller: Use std::move within ConvertToFrontendParameters() | Lioncash | |
| Avoids unnecessary copies. | |||
| 2020-12-07 | controller: Avoid unnecessary copies in ConfigurationComplete() | Lioncash | |
| Avoids unnecessary 1072 byte copies when querying info about controllers. | |||
| 2020-12-06 | Merge pull request #5148 from comex/xx-unused-fields | bunnei | |
| core: Mark unused fields as [[maybe_unused]] | |||
| 2020-12-06 | Merge pull request #5154 from comex/xx-ipc | bunnei | |
| hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp | |||
| 2020-12-07 | Merge pull request #5147 from comex/xx-purevirt | LC | |
| nvdrv: Remove useless re-declaration of pure virtual methods that were already declared in the superclass | |||
| 2020-12-07 | Merge pull request #5150 from comex/xx-boxcat | LC | |
| boxcat: Avoid unnecessary object copy | |||
| 2020-12-07 | Merge pull request #5136 from lioncash/video-shadow3 | LC | |
| video_core: Resolve more variable shadowing scenarios pt.3 | |||
| 2020-12-06 | network, sockets: Replace `POLL_IN`, `POLL_OUT`, etc. constants with an ↵ | comex | |
| `enum class PollEvents` Actually, two enum classes, since for some reason there are two separate yet identical `PollFD` types used in the codebase. I get that one is ABI-compatible with the Switch while the other is an abstract type used for the host, but why not use `WSAPOLLFD` directly for the latter? Anyway, why make this change? Because on Apple platforms, `POLL_IN`, `POLL_OUT`, etc. (with an underscore) are defined as macros in <sys/signal.h>. (This is inherited from FreeBSD.) So defining a variable with the same name causes a compile error. I could just rename the variables, but while I was at it I thought I might as well switch to an enum for stronger typing. Also, change the type used for values copied directly to/from the `events` and `revents` fields of the host *native* `pollfd`/`WSASPOLLFD`, from `u32` to `short`, as `short` is the correct canonical type on both Unix and Windows. | |||
| 2020-12-06 | Fix "explicitly defaulted but implicitly deleted" warning | comex | |
| `PhysicalCore`'s move assignment operator was declared as `= default`, but was implicitly deleted because `PhysicalCore` has fields of reference type. Switch to explicitly deleting it to avoid a Clang warning. The move *constructor* is still defaulted, and is required to exist due to the use of `std::vector<PhysicalCore>`. | |||
| 2020-12-06 | hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp | comex | |
| - Add a type check so that calling Push with an invalid type produces a compile error rather than a linker error. - vi.cpp was calling Push with a variable of type `std::size_t`. There's no explicit overload for `size_t`, but there is one for `u64`, which on most platforms is the same type as `size_t`. On macOS, however, it isn't: both types are 64 bits, but `size_t` is `unsigned long` and `u64` is `unsigned long long`. Regardless, it makes more sense to explicitly use `u64` here instead of `size_t`. | |||
| 2020-12-06 | core: Mark unused fields as [[maybe_unused]] | comex | |
| 2020-12-06 | boxcat: Avoid unnecessary object copy | comex | |
| 2020-12-06 | nvdrv: Remove useless re-declaration of pure virtual methods that were ↵ | comex | |
| already declared in the superclass | |||
| 2020-12-06 | hle: kernel: Process: Various style fixes based on code review feedback. | bunnei | |
| 2020-12-06 | hle: kernel: Thread: Various style fixes based on code review feedback. | bunnei | |
| 2020-12-06 | hle: kernel: KScopedSchedulerLockAndSleep: Various style fixes based on code ↵ | bunnei | |
| review feedback. | |||
