Skip to content
  1. May 30, 2022
  2. May 29, 2022
    • Kyle K's avatar
      Update some files with Qt 5.15.2 best practices in mind · 75bf2c20
      Kyle K authored
      There was some discussion about updating to Qt6 and I figured I would
      work on some smaller parts. For Windows platform the WinMain function has moved
      from the Qt5::WinMain to a new one called Qt6::EntryPointPrivate
      
      Also Qt5 supports versionless CMake targets
      https://www.qt.io/blog/versionless-cmake-targets-qt-5.15
      
      These other changes in this commit are to support Qt6, but in ways that don't mess with Qt5.
      
      src/yuzu/bootmanager.cpp: Qt6 complains about not being able to know to use QPoint or QPointF, picking QPoint
      src/yuzu/bootmanager.h: Qt6 prefers that QStringList.h be included rather than an empty class definition
      src/yuzu/configuration/configure_system.cpp: toULongLong intends to return unsigned 64 bit integer, but
         Settings::values.rng_seed is only 32 bits wide
      src/yuzu/game_list.cpp: Qt6 returns a different datatype for QStringList.length than Qt5,
         it used to be int, but in Qt6 its now qsizetype
      src/yuzu/loading_screen.cpp: Qt5's for QStyleOption.init say to switch to initFrom.
         The QStyleOption.init doesn't exist in Qt6
      src/yuzu/main.cpp: Another QPointer and QStringList.size, lets standardize on size()
      75bf2c20
  3. May 11, 2022
  4. May 10, 2022
  5. May 09, 2022
  6. May 08, 2022
  7. May 07, 2022
  8. May 06, 2022
  9. May 04, 2022
  10. May 03, 2022
  11. May 02, 2022
  12. May 01, 2022
    • Mai M's avatar
      Merge pull request #8283 from Tachi107/appstream · 9b34640a
      Mai M authored
      dist: add AppStream metadata
      9b34640a
    • Mai M's avatar
      Merge pull request #8291 from Docteh/ampm_fix · eab68d8f
      Mai M authored
      ui: let system locale control format of Custom RTC
      eab68d8f
    • Kyle K's avatar
      ui: let system locale control format of Custom RTC · bd9f74e6
      Kyle K authored
      The Custom RTC widget is under the influence of the computers System Locale.
      The format strings are not necessarily related. As a small example, setting the Windows Language to Dansk, and then trying to use yuzu in English the requested AM/PM indicator is simply not shown
      
      The display format for the Custom RTC field needs to be removed from src/yuzu/configuration/configure_system.ui
      
      modifying the display format needs to be moved to src/yuzu/configuration/configure_system.cpp
      bd9f74e6
  13. Apr 29, 2022
  14. Apr 28, 2022
Loading