| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-07-07 | Move DolphinQt2 to DolphinQt | spycrab | |
| 2018-07-06 | Merge pull request #7221 from Techjar/netplay-config-junk | spycrab | |
| Fix NetPlay using some config values wrongly | |||
| 2018-07-06 | Qt: Refresh Gamelist more thoroughly | spycrab | |
| 2018-07-06 | Qt/GameTracker: Remove workaround | spycrab | |
| 2018-07-06 | Merge pull request #7202 from Techjar/better-netplay-errors | spycrab | |
| Improve NetPlay connection error handling | |||
| 2018-07-06 | Merge pull request #7204 from spycrab/exclusive_mapping | spycrab | |
| Support for exclusive mapping booleans | |||
| 2018-07-05 | Fix NetPlay using some config values wrongly | Techjar | |
| 2018-07-05 | Improve NetPlay connection error handling | Techjar | |
| 2018-07-05 | Merge pull request #7212 from Techjar/netplay-unparent-dialog | spycrab | |
| Qt: Unparent NetPlay dialog from main window | |||
| 2018-07-05 | Merge pull request #7217 from Techjar/qt-clock-speed-slider | spycrab | |
| Qt/AdvancedPane: Fix CPU clock slider not updating on emulation state change | |||
| 2018-07-05 | Merge pull request #7213 from Techjar/netplay-fix-md5 | spycrab | |
| Qt/MD5Dialog: Fix checksum result comparison | |||
| 2018-07-05 | Qt/GameTracker: Work around Qt crash | spycrab | |
| Works around a bug in QtCore that will cause crashes when QFileSystemWatcher::addPath is called on a directory that is located on a removable device (USB mass storage devices, etc.) | |||
| 2018-07-05 | Qt/AdvancedPane: Fix CPU clock slider not updating on emulation state change | Techjar | |
| 2018-07-05 | Qt: Unparent NetPlay dialog from main window | Techjar | |
| This should make the NetPlay dialog appear as a separate window in the taskbar on most systems, which makes more sense than a parented dialog as the user will leave it open for an extended period. | |||
| 2018-07-04 | Qt/MD5Dialog: Fix checksum result comparison | Techjar | |
| 2018-07-04 | Merge pull request #7187 from Techjar/netplay-reduce-poll-rate | spycrab | |
| Add "Reduce Polling Rate" option to NetPlay | |||
| 2018-07-04 | Merge pull request #7209 from spycrab/netplay_stop | spycrab | |
| Qt/NetPlay: Fix not being able to stop NetPlay games properly | |||
| 2018-07-04 | Qt/NetPlayDialog: Stop games properly | spycrab | |
| 2018-07-04 | Merge pull request #7208 from Techjar/mipmap-invalidate | spycrab | |
| Make arbitrary mipmap detection toggle invalidate the texture cache | |||
| 2018-07-04 | Qt/MainWindow: Instantly stop when requested by NetPlay | spycrab | |
| 2018-07-03 | Make arbitrary mipmap detection toggle invalidate the texture cache | Techjar | |
| We want this setting to invalidate the cache because it may affect the appearance of textures in the rendered scene, therefore one would expect changing it while the game is running to have the expected effect immediately. | |||
| 2018-07-03 | Merge pull request #7200 from Techjar/qt-dialog-fixes-2-electric-boogaloo | spycrab | |
| Qt: Various dialog fixes | |||
| 2018-07-03 | Qt: Various dialog fixes | Techjar | |
| 2018-07-03 | Merge pull request #7207 from spycrab/qt_lazy_hotkey | spycrab | |
| Qt/MainWindow: Lazily initialize hotkey mapping window | |||
| 2018-07-03 | Merge pull request #7199 from spycrab/qt_default_iso | spycrab | |
| Qt/PathPane: Update "Default ISO" when changed | |||
| 2018-07-03 | Qt/MainWindow: Lazily initialize hotkey mapping window | spycrab | |
| 2018-07-03 | dqt2: lazy-initialize GraphicsWindow | Pierre Bourdon | |
| Initializing GraphicsWindow layout & children requires cooperation from the graphics stack: on my system, for example, it causes a Vulkan context to get created in order to get driver info. This is a slow operation, and right now it is taking about 60-70% of the Dolphin startup time on my system. Move instead to a lazy-initialization model where the constructor does nothing, instead offloading work to a separate Initialize() method called before the window is shown. I would expect this should be done for other larger parts of the UI, especially the ones where creating widgets ends up triggering large IO subsystems (I suspect controller configuration might be doing that). (I'm not super happy with how this is implemented, but right now it's a one-off, and it's a major complaint users have with the new UI. I prioritized getting something working quickly...) | |||
| 2018-07-02 | Merge pull request #7201 from 8times9/multiselection_deletion_menu_name | spycrab | |
| Qt/GameList: Change multiselection deletion name for consistency | |||
| 2018-07-02 | Qt/Mapping: Add support for exclusive boolean settings | spycrab | |
| 2018-07-01 | Qt/GameList: Change multiselection deletion name for consistency | 8times9 | |
| 2018-07-01 | Qt/PathPane: Update "Default ISO" when changed | spycrab | |
| 2018-07-01 | Qt/Hotkeys: Show OSD message when selecting slots | spycrab | |
| 2018-07-01 | Qt/Hotkeys: Implement "Load from File" / "Save from File" hotkeys | spycrab | |
| 2018-07-01 | Merge pull request #7177 from Techjar/mipmap-detection-gui | Stenzek | |
| Expose arbitrary mipmap detection toggle in UI | |||
| 2018-07-01 | Expose arbitrary mipmap detection toggle in UI | Techjar | |
| 2018-07-01 | Merge pull request #7193 from spycrab/qt_mac_bgcolor | spycrab | |
| Qt/WrapInScrollArea: Ensure correct macOS background colors | |||
| 2018-06-30 | Fix Address Search Box Focus Lost | Cuyler36 | |
| 2018-06-30 | Qt/EnhancementsWidget: Fix post-processing options not being disabled when ↵ | Techjar | |
| they should | |||
| 2018-06-30 | Merge pull request #7189 from Techjar/qt-backend-translated | spycrab | |
| Qt: Fix inability to select translated video backend names | |||
| 2018-06-30 | Qt/WrapInScrollArea: Ensure correct macOS background colors | spycrab | |
| 2018-06-30 | Add "Reduce Polling Rate" option to NetPlay | Techjar | |
| Normally, SI is polled at a rate defined by the game, and we have to send the pad state to other clients on every poll or else we'll desync. This can result in fairly high bandwidth usage, especially with multiple controllers, mostly due to UDP/IP overhead. This change introduces an option to reduce the SI poll rate to once per frame, which may introduce up to one frame of additional latency, but will reduce bandwidth usage substantially, which is useful for users on very slow internet connections. Polling SI less frequently than the game asked for did not seem to cause any problems in my testing, so this should be perfectly safe to do. | |||
| 2018-06-30 | Qt: Fix inability to select translated video backend names | Techjar | |
| 2018-06-29 | Qt: Add titles to various message boxes | Techjar | |
| 2018-06-29 | Merge pull request #7184 from spycrab/qt_tas_round | spycrab | |
| Qt/TAS: Fix slightly off-center default values | |||
| 2018-06-29 | Qt/TAS: Fix slightly off-center default values | spycrab | |
| 2018-06-29 | Qt/GameList: Explicitly set minimum section size | Techjar | |
| 2018-06-29 | Merge pull request #7164 from Techjar/gamelist-multiselect | spycrab | |
| Qt/GameList: Reimplement multiselection functionality from WX | |||
| 2018-06-29 | Merge pull request #7169 from Techjar/qt-memcard-creation | spycrab | |
| Qt/GameCubePane: Fix inability to create new memory card file | |||
| 2018-06-29 | Merge pull request #7168 from Techjar/qt-image-columns | spycrab | |
| Qt/GameList: Adjust image column widths for equal padding | |||
| 2018-06-29 | Qt/GameList: Fix some resizing bugs | spycrab | |
