| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-09-23 | Merge pull request #2683 from DarkLordZach/lock-exit | David | |
| am: Implement exit locking and self exit commands | |||
| 2019-09-22 | main: Use const on all variable initializations | Zach Hilman | |
| 2019-09-22 | Add missing include | FearlessTobi | |
| 2019-09-21 | qt: Prompt user for confirmation if exit lock is active | Zach Hilman | |
| 2019-09-22 | Merge pull request #2430 from DarkLordZach/fs-controller | David | |
| core: Implement FileSystemController to deglobalize FS services | |||
| 2019-09-21 | Merge pull request #2883 from ogniK5377/log-game | Zach Hilman | |
| Log the current title id and game name which is booting | |||
| 2019-09-21 | configure_debug: Move reporting option to logging | Zach Hilman | |
| 2019-09-21 | config: Remove Dump options from configure_debug | Zach Hilman | |
| 2019-09-21 | yuzu: Add UI to manage filesystem paths and sizes | Zach Hilman | |
| 2019-09-21 | settings: Add options for managing gamecard emulation | Zach Hilman | |
| 2019-09-21 | settings: Add options for setting storage sizes | Zach Hilman | |
| 2019-09-21 | yuzu: Port old usages of Filesystem namespace to FilesystemController | Zach Hilman | |
| 2019-09-21 | Merge pull request #2885 from Hexagon12/port-4944 | David | |
| Port citra-emu/citra#4944: "Added Host CPU and OS to log" | |||
| 2019-09-21 | Added Host CPU and OS to log | pbarilla | |
| 2019-09-21 | Merge pull request #2806 from FearlessTobi/port-4882 | David | |
| Port citra-emu/citra#4882: "Add frametime logging for tracking performance over time" | |||
| 2019-09-21 | Swapped TID and Game name to make it easier to parse | David Marcec | |
| 2019-09-21 | Log the current title id and game name which is booting | David Marcec | |
| Spit out a LOG_INFO of the current game name and it's title id in the log. This helps to read log files and figure out which games have which issues | |||
| 2019-09-16 | When docked mode is checked, uncheck "joycons docked" | Morph | |
| 2019-09-10 | Add frametime logging for tracking performance over time | fearlessTobi | |
| Co-Authored-By: jroweboy <jroweboy@gmail.com> | |||
| 2019-09-05 | Merge pull request #2797 from FearlessTobi/port-4877 | David | |
| Port citra-emu/citra#4877: "citra_qt: on osx chdir to bundle dir to allow detection of user folder" | |||
| 2019-09-05 | Address review comments | FearlessTobi | |
| 2019-09-05 | Merge pull request #2808 from FearlessTobi/port-4866 | David | |
| Port citra-emu/citra#4866: "configure_dialog: reverse tab map to avoid logic based on user-facing/translatable text" | |||
| 2019-09-05 | yuzu/configure: move speed limiter to general | FearlessTobi | |
| The speed limiter being a frame limiter is an implmentation detail and can be changed in the future. What user care about is that it limit the emulation speed in genenral (not just graphics but also audio+input) Co-Authored-By: Weiyi Wang <wwylele@gmail.com> | |||
| 2019-09-05 | Merge pull request #2830 from FearlessTobi/port-4911 | David | |
| Port citra-emu/citra#4911: "Add cancel option to analog stick configuration" | |||
| 2019-09-04 | configure_dialog: reverse tab map to avoid logic based on ↵ | fearlessTobi | |
| user-facing/translatable text Co-Authored-By: Weiyi Wang <wwylele@gmail.com> | |||
| 2019-09-04 | Fix uisettings include | fearlessTobi | |
| 2019-09-04 | Limit the size of directory icons, fix text when icon size is none | fearlessTobi | |
| 2019-09-04 | Change QList to QVector | fearlessTobi | |
| 2019-09-04 | Separate UserNand and Sdmc directories | fearlessTobi | |
| 2019-09-04 | Address more trivial review comments | fearlessTobi | |
| 2019-09-04 | Address trivial review comments | fearlessTobi | |
| 2019-09-04 | yuzu: Add support for multiple game directories | fearlessTobi | |
| Ported from https://github.com/citra-emu/citra/pull/3617. | |||
| 2019-09-03 | Merge pull request #2831 from FearlessTobi/port-4914 | bunnei | |
| Port citra-emu/citra#4914: "Fix to Windows sleep issues" | |||
| 2019-09-04 | configuration/config: Add missing screenshot path read | fearlessTobi | |
| I missed this in my original PR (https://github.com/yuzu-emu/yuzu/pull/1886). | |||
| 2019-09-03 | Fix to Windows sleep issues | fearlessTobi | |
| Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com> | |||
| 2019-09-03 | Add cancel option to analog stick configuration | fearlessTobi | |
| Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com> | |||
| 2019-08-22 | Guard unistd.h with MacOS only macro | Weiyi Wang | |
| Fix compile error on Windows caused by #4877 Weird, I thought I saw this guard during the code review... | |||
| 2019-08-22 | citra_qt: on osx chdir to bundle dir to allow detection of user folder | B3n30 | |
| 2019-08-16 | Fixup! #2772 missed this one file | James Rowe | |
| 2019-08-16 | Merge pull request #2766 from FearlessTobi/port-4849 | James Rowe | |
| Port citra-emu/citra#4849: "Qt: Fixed behaviour of buttons by connecting functors to correct signals" | |||
| 2019-08-16 | Merge pull request #2772 from lioncash/ui | James Rowe | |
| yuzu/CMakeLists: Remove qt5_wrap_ui macro usage | |||
| 2019-08-09 | yuzu/CMakeLists: Remove qt5_wrap_ui macro usage | Lioncash | |
| We can simply enable CMAKE_AUTOUIC and let CMake take care of handling the UI code generation for targets. As part of letting CMake automatically handle the header file parsing, we must not name includes with "ui_*" unless they're related to the output of the Qt UIC compiler. Because of this, we need to rename ui_settings, given it would conflict with this restriction. | |||
| 2019-08-02 | Qt: Fixed behaviour of buttons by connecting functors to correct signals | Silent | |
| Following screens got fixes: - Configure/Debug - Configure/Input | |||
| 2019-07-25 | Merge pull request #2689 from lioncash/tl | bunnei | |
| yuzu/main: Make error messages within OnCoreError more localization-friendly | |||
| 2019-07-11 | yuzu: Remove setting for using Unicorn | Lioncash | |
| The JIT is mature enough that this setting can be removed, falling back to Unicorn only on unsupported architectures. Any missing features from Unicorn (of which there are extremely few), are mostly developer-oriented, which most users don't care about. Features should be coordinated with the JIT, not the interpreter, anyhow. | |||
| 2019-07-07 | yuzu/main: Make error messages within OnCoreError more localization-friendly | Lioncash | |
| Previously, a translated string was being appended onto another string in a manner that doesn't allow the translator to control where the appended text is placed. This can be a nuisance for languages where grammar and text ordering differs from English. We now append the strings via the format strings themselves, which allows translators to reorder where the text will be placed. | |||
| 2019-07-05 | Merge pull request #2601 from FernandoS27/texture_cache | Zach Hilman | |
| Implement a new Texture Cache | |||
| 2019-07-04 | Merge pull request #2669 from FearlessTobi/move-cpujit-setting | Zach Hilman | |
| yuzu: Move CPU Jit setting to Debug tab | |||
| 2019-07-04 | yuzu: Remove CPU Jit setting from the UI | fearlessTobi | |
| A normal user shouldn't change this, as it will slow down the emulation and can lead to bugs or crashes. The renaming is done in order to prevent users from leaving this on without a way to turn it off from the UI. | |||
| 2019-06-28 | settings: Add config option for kiosk (quest) mode | Zach Hilman | |
