1. 13 Oct, 2023 5 commits
    • DanielSvoboda's avatar
      Improvement in Directory Path Detection for Shortcuts (#11749) · 56e5d996
      DanielSvoboda authored
      
      
      * Improvement in Directory Path Detection for Shortcuts
      
      This pull request updates how the directory path for shortcuts is determined. The main changes are:
      
      1. Replaced the use of environment variables to determine the path of the desktop and applications menu with `QStandardPaths::writableLocation`. This change addresses an issue where the desktop path was not correctly identified when its location was customized, as shown in the attached screenshot.
      
      2. Added conversion from `QString` to `std::string` using `toUtf8()`, which correctly handles non-ASCII characters in directory paths. This change ensures that directory paths containing Portuguese words like "Área de trabalho" are supported.
      
      3. Replaced directory checking using `Common::FS::IsDir()` with `QDir::exists()`.
      
      These changes should improve cross-platform compatibility and code robustness. Because it couldn't locate my desktop, which wasn't on the C drive, but on the F, and even though localization wouldn't work because it was setting it to find the 'Desktop' folder and in the computer's language it says 'Área de trabalho', that will fix for other languages too.
      
      * Update main.cpp
      
      * formatting
      
      * Update src/yuzu/main.cpp
      
      Co-authored-by: default avatarTobias <thm.frey@gmail.com>
      
      * Update src/yuzu/main.cpp
      
      Co-authored-by: default avatarTobias <thm.frey@gmail.com>
      
      * Update main.cpp
      
      * Update main.cpp
      
      * Update main.cpp
      
      desktopPath > desktop_Path
      applicationsPath > applications_Path
      
      * Update main.cpp
      
      * formatting
      
      * Update main.cpp
      
      This code will attempt to use QStandardPaths to find the applications directory. If that fails, it will resort to using the ~/.local/share/applications directory, which is a common location for application shortcuts in Linux.
      
      * Update main.cpp
      
      * formatting
      
      ---------
      
      Co-authored-by: default avatarTobias <thm.frey@gmail.com>
      56e5d996
    • liamwhite's avatar
      Merge pull request #11769 from liamwhite/qt-ownership-issue · 1a4874e1
      liamwhite authored
      qt: ensure worker cancellation is complete before clearing
      1a4874e1
    • liamwhite's avatar
      Merge pull request #11766 from liamwhite/open-sesame · c00b63b9
      liamwhite authored
      k_page_table: add missing page group open when locking memory
      c00b63b9
    • liamwhite's avatar
      Merge pull request #11649 from t895/driver-manager · c8602e1b
      liamwhite authored
      android: Driver manager
      c8602e1b
    • Liam's avatar
      faa6c35e
  2. 12 Oct, 2023 12 commits
  3. 11 Oct, 2023 14 commits
  4. 10 Oct, 2023 9 commits