summaryrefslogtreecommitdiff
path: root/src/yuzu/multiplayer
AgeCommit message (Collapse)Author
2024-12-31chore: update project branding to citronZephyron
2024-02-09Fix multiplayer player count color in dark themes | Temp fix until #12744: ↵Kevnkkm
Add green color for counts > 0 and < max_players - 1 (#12930) * fix intended player count color in dark themes * Refactor * Change to green color for white and dark themes * Add const to the colors and extra name for green color
2024-02-03Merge pull request #12852 from Calinou/multiplayer-color-player-countsliamwhite
Color player counts in the multiplayer public lobby list
2024-01-30Persist filters in multiplayer public lobby listHugo Locurcio
After connecting to a room, the chosen filter text, "Games I Own", "Hide Empty Rooms" and "Hide Full Rooms" values are persisted to configuration so they are preserved across restarts. This makes it easier to rejoin a room if you regularly play the same game, or after a crash.
2024-01-30Color player counts in the multiplayer public lobby listHugo Locurcio
- Full lobbies have their player count displayed in red. - Lobbies with one slot left have their player count displayed in orange. - Empty lobbies have their player count grayed out.
2024-01-15Fix more typosViktor Szépe
2024-01-02yuzu: Use displayed port on direct connectNarr the Reg
2023-12-10core: Use single instance of profile managergerman77
2023-07-21uisettings: Fix typingslat9nq
2023-03-12general: fix spelling mistakesLiam
2023-02-02added 'Hide empty rooms' toggle to lobbyLuke Sawczak
fixed typo fixed typo fixed typo clang
2023-01-28LDN Hostname Support in Direct ConnectSoRadGaming
- Added IPv6 & Namespace support in direct connection Regex - Updated Tooltip for Direct Connect UI - Removed Dropdown Connection Type in Direct Connect
2022-12-03Merge pull request #9289 from liamwhite/fruit-companyliamwhite
general: fix compile for Apple Clang
2022-11-24CMake: rework for Qt6 supportKyle Kienapfel
This PR rearranges things in the CMake system to make compiling with Qt6 possible 1. Camera API has changed in Qt6, so the camera feature is disabled 2. A previous fix involving QLocale is now version gated. 3. QRegExp replaced with QRegularExpression, see #5343 4. Qt6_LOCATION option added to specify a location to search for Qt6 (see examples below) 5. windeployqt is used to copy Qt6 files into the build directory on Windows Notes for Arch Linux Arch install happened to have qt6-base qt6-declarative qt6-translations installed mkdir build && cd build cmake .. -GNinja -DYUZU_USE_BUNDLED_VCPKG=ON -DYUZU_TESTS=OFF -DENABLE_QT6=YES -DYUZU_USE_BUNDLED_QT=NO Windows (MSVC) Qt wants users to download precompiled libraries via an online installer, it is worth noting that the GPL/LGPL takes precendence over any ... In the Qt Maintenance tool, under a version, such as 6.3.1 Select "MSVC 2019 64-bit" Under Additional Libraries Qt Multimedia may be of use for Camera support For the Web Applet I had to select the following: PDF Positioning WebChannel WebEngine mkdir build && cd build cmake -G "Visual Studio 16 2019" -DQt6_LOCATION=C:/Qt/6.4.0/msvc2019_64/ \ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=YES -DYUZU_USE_BUNDLED_QT=NO \ -DENABLE_QT_TRANSLATION=YES -DENABLE_QT6=YES .. Some numbers for reference (msvc2019_64) Qt5 (slimmed down) 508 MB Qt5.15.2 all in 929 MB Qt6.3.1 1.71 GB Qt6.3.2 1.73 GB Qt6.4.0-beta3 1.83 GB Qt6.4.0 1.67 GB
2022-11-22general: fix compile for Apple ClangLiam
2022-10-22yuzu: Resolve -Wpessimizing-moveMorph
2022-09-10fix black iconNarr the Reg
2022-09-10yuzu: Multiple room UI improvementsgerman77
2022-09-09ldn: Initial implementationFearlessTobi
2022-09-02Address review commentsFearlessTobi
2022-08-27yuzu/chat_room: Make font size biggerFearlessTobi
2022-08-27yuzu/multiplayer: Warn when game is running or no network interface is selectedFearlessTobi
2022-08-27yuzu: Display current game version in multiplayer roomFearlessTobi
Makes it easier for users to recognize connection errors caused by different game versions.
2022-08-27yuzu_room: Remove dependency on coreFearlessTobi
2022-08-15yuzu: Fix crash on shutdownFearlessTobi
Previously, accessing the room_network when it was already freed would crash the emulator on shutdown. Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com>
2022-08-15core, yuzu: Address first part of review commentsFearlessTobi
2022-08-15core, network: Add ability to proxy socket packetsFearlessTobi
2022-08-09Qt: tweak ui filesKyle K
make about dialog a bit taller for full message on more systems for direct_connect.ui hedging bets here, there is a text field for port number that possibly shouldn't be translated, marking as such, but also adding a translation note for the event that it makes sense to translate the placeholder text to something other than the default multiplayer direct connect port.
2022-07-25network: Address review commentsFearlessTobi
2022-07-25network, yuzu: Make copyright headers SPDX-compliantFearlessTobi
2022-07-25network, yuzu: Improve variable naming and style consistencyFearlessTobi
2022-07-25network: Move global state into a seperate classFearlessTobi
Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com>
2022-07-25common: multiplayer: Use GameInfo typegerman77
2022-07-25Address second part of review commentsFearlessTobi
2022-07-25Address first part of review commentsFearlessTobi
2022-07-25Fix compilation on linux gccFearlessTobi
2022-07-25yuzu: Add ui files for multiplayer roomsFearlessTobi