| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-30 | service/pcie: Fix invalid initialization argument | ReinUsesLisp | |
| 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-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 | 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-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 | 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: Rewrite scheduler implementation based on Mesopshere. | bunnei | |
| 2020-12-05 | applets: Resolve variable shadowing | Morph | |
| 2020-12-04 | nim: Stub IsLargeResourceAvailable | Morph | |
| - Used by Immortals Fenyx Rising | |||
| 2020-11-29 | core: arm: Implement InvalidateCacheRange for CPU cache invalidation. | bunnei | |
| 2020-11-28 | Merge pull request #4998 from Morph1984/bioshock-patch | bunnei | |
| hid: Check if applet_resource exists in InitializeVibrationDevice | |||
| 2020-11-28 | Add missing types to NpadCommunicationMode | german | |
| 2020-11-28 | Merge pull request #5021 from german77/StubCommunicationMode | bunnei | |
| HID: Stub set and get NpadCommunicationMode | |||
| 2020-11-27 | savedata_factory: Eliminate usage of the global system instance | Lioncash | |
| Now there's only two meaningful instances left in core. | |||
| 2020-11-26 | Stub set and get NpadCommunicationMode | german | |
| 2020-11-26 | service: Eliminate usages of the global system instance | Lioncash | |
| Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services. | |||
| 2020-11-26 | Merge pull request #4975 from comex/invalid-syncpoint-id | bunnei | |
| nvdrv, video_core: Don't index out of bounds when given invalid syncpoint ID | |||
| 2020-11-25 | Merge pull request #4981 from ogniK5377/ioctl-ctrl | bunnei | |
| nvservices: Reintroducee IoctlCtrl | |||
