Skip to content
Snippets Groups Projects
  1. Sep 22, 2019
  2. Sep 21, 2019
  3. Sep 05, 2019
  4. Sep 04, 2019
  5. Aug 09, 2019
    • Lioncash's avatar
      yuzu/CMakeLists: Remove qt5_wrap_ui macro usage · 5980aa1e
      Lioncash authored
      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.
      5980aa1e
  6. Jul 04, 2019
    • fearlessTobi's avatar
      yuzu: Remove CPU Jit setting from the UI · 447bdac2
      fearlessTobi authored
      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.
      447bdac2
  7. Jun 06, 2019
    • Lioncash's avatar
      yuzu/configuration: Make all widgets and dialogs aware of language changes · c09ff382
      Lioncash authored
      To prepare for translation support, this makes all of the widgets
      cognizant of the language change event that occurs whenever
      installTranslator() is called and automatically retranslates their text
      where necessary.
      
      This is important as calling the backing UI's retranslateUi() is often
      not enough, particularly in cases where we add our own strings that
      aren't controlled by it. In that case we need to manually refresh the
      strings ourselves.
      c09ff382
  8. Jun 05, 2019
  9. May 19, 2019
  10. Apr 11, 2019
  11. Mar 29, 2019
    • fearlessTobi's avatar
      core/yuzu: Remove enable_nfc setting · ff7e6a42
      fearlessTobi authored
      This was initially added to prevent problems from stubbed/not implemented NFC services, but as we never encountered such and as it's only used in a deprecated function anyway, I guess we can just remove it to prevent more clutter of the settings.
      ff7e6a42
  12. Mar 16, 2019
  13. Dec 25, 2018
    • Zach Hilman's avatar
      qt: Add setting to prompt for user on game boot · 4d61ac08
      Zach Hilman authored
      Using the QtProfileSelectorDialog, this implementation is trivial. This mimics the real switch behavior of asking which user on every game boot, but it is default disabled as that might get inconvenient.
      4d61ac08
  14. Nov 19, 2018
  15. Nov 16, 2018
  16. Nov 08, 2018
  17. Nov 07, 2018
  18. Nov 04, 2018
  19. Oct 23, 2018
    • David's avatar
      Added Amiibo support (#1390) · 50e4e81f
      David authored
      * 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
      50e4e81f
  20. Oct 04, 2018
    • Lioncash's avatar
      ui_settings: Place definition of the theme array within the cpp file · 30dfd891
      Lioncash authored
      Placing the array wholesale into the header places a copy of the whole
      array into every translation unit that uses the data, which is wasteful.
      Particularly given that this array is referenced from three different
      translation units.
      
      This also changes the array to contain pairs of const char*, rather than
      QString instances. This way, the string data is able to be fixed into
      the read-only segment of the program, as well as eliminate static
      constructors/heap allocation immediately on program start.
      30dfd891
  21. Sep 10, 2018
  22. Aug 07, 2018
    • Lioncash's avatar
      qt/hotkey: Get rid of global hotkey map instance · c8f67544
      Lioncash authored
      Instead, we make a proper registry class and house it within the main
      window, then pass it to whatever needs access to the loaded hotkeys.
      
      This way, we avoid a global variable, and don't need to initialize a
      std::map instance before the program can do anything.
      c8f67544
  23. Aug 06, 2018
  24. Jul 29, 2018
  25. May 10, 2018
  26. Mar 30, 2018
  27. Mar 27, 2018
  28. Jan 13, 2018
  29. Jan 12, 2018
  30. Jun 24, 2017
  31. Apr 04, 2017
  32. Dec 22, 2016
  33. Dec 07, 2016
  34. Sep 21, 2016
Loading