Ziemas
643c83c2a0
debugger: Find and build IOP module list
2025-06-29 16:52:17 -04:00
JordanTheToaster
44733d7655
3rdparty: Update Vulkan-Headers to v1.4.320
2025-06-29 16:51:05 -04:00
JordanTheToaster
fcdd43fc78
3rdparty: Update vkmemoryallocator to 3.3.0
2025-06-29 16:51:05 -04:00
JordanTheToaster
78643623c3
3rdparty: Update d3d12memalloc to 3.0.1
2025-06-29 16:51:05 -04:00
SternXD
b27846ce39
FSUI: Add custom RetroAchievements login dialog
...
FSUI: Add custom RetroAchievements login dialog
Signed-off-by: SternXD <stern@sidestore.io>
2025-06-29 16:50:14 -04:00
TellowKrinkle
b87b8eb7bb
MacOS: Add pnach definition to Info.plist
...
Ensures macOS treats it as a known file type, so it doesn't try to prevent users from adding it as a file extension
2025-06-29 16:47:22 -04:00
dependabot[bot]
709dfdd3f2
Bump the ci-deps group across 1 directory with 2 updates
...
Bumps the ci-deps group with 2 updates in the / directory: [softprops/action-gh-release](https://github.com/softprops/action-gh-release ) and [baptiste0928/cargo-install](https://github.com/baptiste0928/cargo-install ).
Updates `softprops/action-gh-release` from 2.2.2 to 2.3.2
- [Release notes](https://github.com/softprops/action-gh-release/releases )
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md )
- [Commits](da05d55257...72f2c25fcb
)
Updates `baptiste0928/cargo-install` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/baptiste0928/cargo-install/releases )
- [Changelog](https://github.com/baptiste0928/cargo-install/blob/main/CHANGELOG.md )
- [Commits](91c5da1557...e38323ef01
)
---
updated-dependencies:
- dependency-name: softprops/action-gh-release
dependency-version: 2.3.2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: ci-deps
- dependency-name: baptiste0928/cargo-install
dependency-version: 3.3.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: ci-deps
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-06-29 16:46:44 -04:00
TheLastRar
faef28d5c4
Deps: Also force PDB files for Qt's plugins
2025-06-29 16:45:55 -04:00
TheLastRar
309dd4f847
Deps: Correct comment
2025-06-29 16:45:55 -04:00
TheLastRar
506897fab2
Build: Copy force enabled symbols
...
Currently only SDL and Qt
2025-06-29 16:45:55 -04:00
SternXD
4e0aff053c
SaveState: Improve version incompatibility error message
...
Make the error message clearer by showing which version of PCSX2 created
the save state and which version is needed to recover it.
Signed-off-by: SternXD <stern@sidestore.io>
2025-06-29 16:45:10 -04:00
Florin9doi
2ba6fbbcc2
USB: Connect the GT Force pedals
2025-06-29 16:44:28 -04:00
TheLastRar
e987eac545
CI/Appimage: Simplify how we bundle Wayland plugins
2025-06-29 16:44:07 -04:00
Florin9doi
6b9781fee6
USB: Throttle the Buzz data packets
2025-06-29 16:43:37 -04:00
TJnotJT
181ceb38cc
GS: Put psm_str in the GSUtil struct.
2025-06-29 16:43:09 -04:00
chaoticgd
595ce0ea19
Qt: Add security warning to setup wizard
2025-06-29 16:41:56 -04:00
TheLastRar
b624330155
Deps: Update Pluto(S)VG
...
PlutoVG is updated to v1.1.0
PlutoSVG is updated to v0.0.7
2025-06-29 16:41:19 -04:00
JordanTheToaster
380c316869
Deps: Update SDL3 3.2.16
2025-06-29 16:40:27 -04:00
Florin9doi
31dacc2d21
Update Negcon to support Wipeout Fusion
2025-06-29 16:40:17 -04:00
Ty
b557a82009
[ci skip] 2.5.x Development Cycle
2025-06-29 16:34:51 -04:00
Ty
e4af1c4244
[ci-skip] 2.4 Release
2025-06-29 15:47:12 -04:00
JordanTheToaster
7c26ac5578
GameDB: Various fixes
2025-06-29 21:07:07 +02:00
JordanTheToaster
2948d50b0d
GameDB: Shadow Hearts fixes
2025-06-29 10:32:13 +02:00
lightningterror
48fefddcb2
GS/HW: Fix -Wunused-variable warnings.
2025-06-29 10:17:57 +02:00
lightningterror
f4d8af2f0d
GS/GL: Don't re enable blend after SetupDATE.
...
Redundant calls, blending will be enabled if needed.
2025-06-29 10:17:57 +02:00
lightningterror
afa3108623
GS/DX11: Adjust blend/depth stencil state.
...
OMSetDepthStencilState:
If state is nullptr, new state is also nullptr but stencil ref changes no need to set a new OMSetDepthStencilState.
OMSetBlendState:
If state is nullptr, new state is also nullptr but blend factor changes no need to set a new OMSetBlendState.
2025-06-29 10:17:57 +02:00
lightningterror
6fcfddf19a
GS/GL/DX11: Resolve potential rtv/srv conflict for primid date.
...
primid_texture texture was already bound to rtv, so we either need to unbind it first from rtv, or we can bind it to srv after rtv bind has been changed.
Note: DX11 is fine since gpu state will be updated when DrawIndexedPrimitive is executed but it's nice to keep code parity and visual a visual state
what the pipeline order should do.
2025-06-29 10:17:57 +02:00
lightningterror
6d2f442cbd
GS/DX11: Backports the avoid framebuffer optimization from GL.
...
Unlike OpenGL, we don't need to worry about adding extra barriers here
since we already do fb copies so rt tex won't be bound as an rtv and srv
at the same time, we also check for conflicts beforehand.
2025-06-29 10:17:57 +02:00
PCSX2 Bot
e8260e7191
[ci skip] Qt: Update Base Translation.
2025-06-28 20:04:49 -04:00
Ty
48a4367a2c
New translations pcsx2-qt_en.ts (Spanish, Latin America)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
edd3540f34
New translations pcsx2-qt_en.ts (Guarani)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
111c32c5ed
New translations pcsx2-qt_en.ts (Quechua)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
af22ca3ae0
New translations pcsx2-qt_en.ts (Hindi)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
5e2caa326c
New translations pcsx2-qt_en.ts (Latvian)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
50f9f60341
New translations pcsx2-qt_en.ts (Croatian)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
65f61b143a
New translations pcsx2-qt_en.ts (Persian)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
10f4892b7e
New translations pcsx2-qt_en.ts (Indonesian)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
f71d518f75
New translations pcsx2-qt_en.ts (Portuguese, Brazilian)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
c5b11fe484
New translations pcsx2-qt_en.ts (Vietnamese)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
068fd04f15
New translations pcsx2-qt_en.ts (Chinese Traditional)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
a461750b55
New translations pcsx2-qt_en.ts (Chinese Simplified)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
291df6a0e4
New translations pcsx2-qt_en.ts (Ukrainian)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
8afeb4ea61
New translations pcsx2-qt_en.ts (Turkish)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
b30f246900
New translations pcsx2-qt_en.ts (Swedish)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
7fd042b197
New translations pcsx2-qt_en.ts (Serbian (Cyrillic))
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
b6b3e364f2
New translations pcsx2-qt_en.ts (Russian)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
70e5f18971
New translations pcsx2-qt_en.ts (Portuguese)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
1fb35593d5
New translations pcsx2-qt_en.ts (Polish)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
b1b9c32644
New translations pcsx2-qt_en.ts (Norwegian)
...
[ci skip]
2025-06-28 13:31:32 -04:00
Ty
8eeed7d42c
New translations pcsx2-qt_en.ts (Dutch)
...
[ci skip]
2025-06-28 13:31:32 -04:00