| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-11-27 | file_sys/registered_cache: Use regular const references instead of ↵ | Lioncash | |
| std::shared_ptr for InstallEntry() These parameters don't need to utilize a shared lifecycle directly in the interface. Instead, the caller should provide a regular reference for the function to use. This also allows the type system to flag attempts to pass nullptr and makes it more generic, since it can now be used in contexts where a shared_ptr isn't being used (in other words, we don't constrain the usage of the interface to a particular mode of memory management). | |||
| 2018-11-21 | Removed pre 4.3 ARB extensions | FernandoS27 | |
| 2018-11-21 | Update OpenGL's backend version from 3.3 to 4.3 | FernandoS27 | |
| 2018-11-20 | Merge pull request #1667 from DarkLordZach/swkbd | bunnei | |
| am: Implement HLE software keyboard applet | |||
| 2018-11-18 | Merge pull request #1640 from DarkLordZach/game-list-reload | bunnei | |
| game_list: Only reload game list after relevant settings changed | |||
| 2018-11-18 | applet: Add operation completed callback | Zach Hilman | |
| 2018-11-18 | software_keyboard: Make GetText asynchronous | Zach Hilman | |
| a | |||
| 2018-11-18 | am: Allow applets to push multiple and different channels of data | Zach Hilman | |
| 2018-11-18 | am: Implement text check software keyboard mode | Zach Hilman | |
| Allows the game to verify and send a message to the frontend. | |||
| 2018-11-18 | am: Deglobalize software keyboard applet | Zach Hilman | |
| 2018-11-18 | qt/main: Register Qt Software Keyboard frontend with AM | Zach Hilman | |
| Allows using Qt provider over default. | |||
| 2018-11-16 | Merge pull request #1678 from FearlessTobi/amiibo-hotkeys | bunnei | |
| Port citra-emu/citra#4387: "yuzu: Add hotkey for Amiibo loading" | |||
| 2018-11-13 | yuzu: Add hotkey for Amiibo loading | fearlessTobi | |
| 2018-11-12 | Merge pull request #1650 from FreddyFunk/cast | bunnei | |
| yuzu/main: Fix compiler warning | |||
| 2018-11-12 | Merge pull request #1674 from FearlessTobi/fullscreen-fix | James Rowe | |
| yuzu: Add a missing "!" to fix the stuck-in-fullscreen bug | |||
| 2018-11-12 | yuzu: Add a missing "!" to fix the stuck-in-fullscreen bug | Tobias | |
| 2018-11-06 | yuzu/main: Fix compiler warning | Frederic Laing | |
| 2018-11-05 | Merge pull request #1441 from CarlKenner/DebuggerLog | bunnei | |
| logging: Add DebuggerBackend for logging to Visual Studio | |||
| 2018-11-05 | Merge pull request #1639 from DarkLordZach/open-yuzu-folder | bunnei | |
| qt: Add help option to open yuzu folder | |||
| 2018-11-05 | Fix quickstart link | Dharmin K Shah | |
| 2018-11-03 | game_list: Only reload game list after relevant settings changed | Zach Hilman | |
| Prevents unnecessary reloads on every configuration operation. | |||
| 2018-11-03 | qt: Add help option to open yuzu folder | Zach Hilman | |
| Opens a new file manager window at the UserDir. | |||
| 2018-10-30 | global: Use std::optional instead of boost::optional (#1578) | Frederic L | |
| * get rid of boost::optional * Remove optional references * Use std::reference_wrapper for optional references * Fix clang format * Fix clang format part 2 * Adressed feedback * Fix clang format and MacOS build | |||
| 2018-10-25 | Merge pull request #1569 from lioncash/amiibo | bunnei | |
| yuzu/main: Notify user of loading errors with Amiibo data | |||
| 2018-10-24 | profile_manager: Use std::optional instead of boost::optional | Lioncash | |
| Now that we can actually use std::optional on macOS, we don't need to continue using boost::optional here. | |||
| 2018-10-24 | yuzu/main: Notify user of loading errors with Amiibo data | Lioncash | |
| We shouldn't silently continue if loading failed, since the general assumption is that no messages showing up implicitly indicates success. | |||
| 2018-10-23 | acc: Fix account UUID duplication error | Zach Hilman | |
| 2018-10-23 | profile_manager: Load user icons, names, and UUIDs from system save | Zach Hilman | |
| 2018-10-23 | qt: Allow user to select emu user on open save data | Zach Hilman | |
| 2018-10-23 | Added Amiibo support (#1390) | David | |
| * Fixed conflict with nfp * Few fixups for nfc * Conflict 2 * Fixed AttachAvailabilityChangeEvent * Conflict 3 * Fixed byte padding * Refactored amiibo to not reside in "System" * Removed remaining references of nfc from system * used enum for Nfc GetStateOld * Added missing newline * Moved file operations to front end * Conflict 4 * Amiibos now use structs and added mutexes * Removed amiibo_path | |||
| 2018-10-17 | qt: Add support for dumping a DLC Data RomFS | Zach Hilman | |
| 2018-10-15 | Merge pull request #1487 from lioncash/maybe-unused | bunnei | |
| yuzu/main: Apply the [[maybe_unused]] attribute to the parameter of SetDiscordEnabled | |||
| 2018-10-14 | crypto: Various crypto fixes for quickstart guide | Zach Hilman | |
| 2018-10-14 | Merge pull request #1490 from lioncash/boot | bunnei | |
| yuzu/main: Simplify OnMenuLoadFile() | |||
| 2018-10-13 | filesystem: Make CreateFactories() and InstallInterface() take a ↵ | Lioncash | |
| VfsFilesystem instance by reference Neither of these functions alter the ownership of the provided pointer, so we can simply make the parameters a reference rather than a direct shared pointer alias. This way we also disallow passing incorrect memory values like nullptr. | |||
| 2018-10-13 | yuzu/main: Simplify OnMenuLoadFile() | Lioncash | |
| We can utilize QStringList's join() function to perform all of the appending in a single function call. While we're at it, make the extension list a single translatable string and add a disambiguation comment to explain to translators what %1 actually is. | |||
| 2018-10-13 | yuzu/main: Apply the [[maybe_unused]] attribute to the parameter of ↵ | Lioncash | |
| SetDiscordEnabled() Depending on whether or not USE_DISCORD_PRESENCE is defined, the "state" parameter can be used or unused. If USE_DISCORD_PRESENCE is not defined, the parameter will be considered unused, which can lead to compiler warnings. So, we can explicitly mark it with [[maybe_unused]] to inform the compiler that this is intentional. | |||
| 2018-10-07 | partition_data_manager: Rename system files for hekate | Zach Hilman | |
| x | |||
| 2018-10-07 | qt: Add rederive keyset menu option | Zach Hilman | |
| 2018-10-07 | qt: Add key derivation progress bar on initial setup | Zach Hilman | |
| 2018-10-07 | logging: Add DebuggerBackend for logging to Visual Studio | Carl Kenner | |
| 2018-10-06 | yuzu/yuzu_cmd: Add checks for required extension ARB_copy_image. | bunnei | |
| 2018-10-06 | qt: Update telemetry links | Lioncash | |
| These were pointing to a non-existent webpage. | |||
| 2018-10-02 | Review comments - part 5 | fearlessTobi | |
| 2018-10-02 | Review comments - part 3 | fearlessTobi | |
| 2018-10-02 | Address a bunch of review comments | fearlessTobi | |
| 2018-10-02 | Port web_service from Citra | fearlessTobi | |
| 2018-09-30 | Merge pull request #1403 from DarkLordZach/install-sysnand | bunnei | |
| qt: Install System TitleTypes to System NAND | |||
| 2018-09-30 | kernel/process: Make data member variables private | Lioncash | |
| Makes the public interface consistent in terms of how accesses are done on a process object. It also makes it slightly nicer to reason about the logic of the process class, as we don't want to expose everything to external code. | |||
| 2018-09-27 | qt: Install System TitleTypes to System NAND | Zach Hilman | |
| Fixes an issue where installed system archive NCAs would be installed to user NAND and not recognized by games. | |||
