Ty Lamontagne
852923ea34
UI: Rename the "Open in Explorer" button to "Open BIOS Folder"
2023-10-03 14:45:06 +10:00
JordanTheToaster
979b34d717
GameDB: Battlefield 2 Modern Combat Fixes
...
Forces full blending to fix rendering of the ground and also removes unnecessary fixes that do not fix what they state.
2023-10-02 17:58:26 +01:00
Stenzek
34f92fe4e5
Qt: Add webp to cover file filter
2023-10-02 19:52:29 +10:00
Stenzek
10b217e0c2
Image: Support loading webp files
2023-10-02 19:52:29 +10:00
Stenzek
2b0593e5ff
3rdparty: Add libwebp @ v1.3.2
2023-10-02 19:52:29 +10:00
IlDucci
2b329e6899
Replacing Unicode arrows in the Input Viewer with text.
2023-10-02 19:27:55 +10:00
IlDucci
5b0bf40508
UI: Making some strings translatable
...
Solving the easy cases where strings can be made translatable. See https://github.com/PCSX2/pcsx2/issues/9062 for more information.
2023-10-02 19:27:55 +10:00
Stenzek
210a936483
3rdparty: Remove qt directory
...
Windows Qt lives in /deps now.
2023-10-02 18:57:39 +10:00
Stenzek
813e2d5b2c
GS/SW: Replace sprintf() with snprintf()
2023-10-02 17:37:38 +10:00
Stenzek
a18c940503
IopBios: Mute deprecated warnings
...
This would be annoying/slow to rewrite.
2023-10-02 17:37:38 +10:00
Stenzek
329d8acca7
GS/Capture: Mute deprecrated warnings
...
At least while we're targeting multiple FFMpeg versions.
2023-10-02 17:37:38 +10:00
Stenzek
bf2cdc3c9b
DebugTools: Replace sprintf() with snprintf()
2023-10-02 17:37:38 +10:00
Stenzek
61ce0d1117
DEV9: Replace sprintf()/strcat() with snprintf()
2023-10-02 17:37:38 +10:00
Stenzek
e8201b115f
3rdparty/SimpleINI: Replace sprintf() with snprintf()
2023-10-02 17:37:38 +10:00
Stenzek
5690742937
3rdparty: Remove libjpeg
...
Doesn't appear to be used anywhere.
2023-10-02 17:17:50 +10:00
Stenzek
9f29f41288
3rdparty/zstd: Bump to v1.5.5
2023-10-02 17:17:50 +10:00
Stenzek
828c0bcb99
3rdparty/zlib: Update to 1.3
2023-10-02 17:17:50 +10:00
Stenzek
fe0d31ae94
3rdparty/libpng: Update to 1.6.40
2023-10-02 17:17:50 +10:00
Stenzek
175d10c5d1
Qt: Update base translation
2023-10-02 15:28:24 +10:00
Stenzek
02b5349db2
Qt: Fix update_en_translation.bat script
2023-10-02 15:28:24 +10:00
Stenzek
a64d69560c
Misc: Warnings cleanup
2023-10-02 15:28:24 +10:00
Stenzek
e18205e6c7
Qt: Allow SettingInfo format to be translated
2023-10-02 15:28:24 +10:00
Stenzek
0f542809a4
FullscreenUI: Use Qt Cover Downloader
...
The ImGui-based one was pretty janky, didn't support pasting, etc.
2023-10-02 15:28:24 +10:00
refractionpcsx2
d171fb1570
GS/HW: Remove CRC hack for Sakura Taisen
2023-10-02 00:23:57 +01:00
refractionpcsx2
b913523066
GS/HW: Update dirty depth in matching format
2023-10-01 22:37:26 +01:00
refractionpcsx2
16588ab0bf
GS: Bump shader cache version
2023-10-01 21:08:39 +01:00
refractionpcsx2
5dc27ed275
GS/HW: Convert depth16->rgba16 shader to integer
2023-10-01 21:08:39 +01:00
kamfretoz
63826f5567
GameDB: Xenosaga Eps III Fixes
2023-10-01 20:26:33 +01:00
Pierre GRASSER
0d3d115d67
Qt: Make "100%" string available for translation
2023-10-02 04:13:17 +10:00
Stenzek
a9959bcd62
CDVD: Report open errors to host
2023-10-01 17:46:26 +10:00
Stenzek
93a4e67813
Host: Remove resource read wrappers
...
No more wx, no need to abstract this.
2023-10-01 17:45:54 +10:00
RedPanda4552
0e79db6cf7
More detailed log for pads
2023-10-01 17:45:36 +10:00
PCSX2 Bot
7b1f6d7ce3
Qt: Update Base Translation
2023-09-29 20:54:02 +10:00
Víctor "IlDucci
8c452288f4
UI: Changes for translators ( #10038 )
...
* UI: Changes for translators
- Added numbers to all strings with more than one {} so translators who might not know that they can move those variables can, in fact, move them around the string.
- Tagged a number of untranslatable strings in Big Picture. Keep in mind that these are the strings that actually exist within the FullscreenUI.cpp file, as there's a number of those strings that do not seem to be taken from there (I do not know from where, though, so I'm leaving those out of scope). The FSUI_XSTR names have been added by guesswork, so more expert eyes are required.
- Ran the generate_fullscreen_ui_translations script, which removes that "Quick Save Slot" string that was inherited from DuckStation for Android.
- The "Trigger" text needs to be flagged as translatable, but I can't do that right now. That needs someone who knows better.
* Adding corrections by Stenzek.
2023-09-29 20:22:04 +10:00
lightningterror
bf5137ed6b
GS/HW: Fix Wunused-variable warning.
2023-09-28 22:43:11 +02:00
lightningterror
c8e4f9160c
DEV9: Fix Wunused-variable warning.
2023-09-28 22:43:11 +02:00
Stenzek
fae4f7c8b4
ChdFileReader: Rewrite CHD opening
...
Almost copied verbatim from DuckStation.
- Doesn't have race conditions between checking header and opening the
file for reading.
- Handles both MD5/SHA1 hashes.
- Caches CHD headers when searching for parents.
- Doesn't break with unicode filenames on Windows.
2023-09-27 18:11:46 +10:00
Stenzek
2148d3d3ab
3rdparty: Move libchdr in-tree
...
Based on 54bfb87 with modifications from DuckStation.
2023-09-27 18:11:46 +10:00
kamfretoz
8ccd442647
Qt: Update Base Translation
2023-09-26 22:44:33 +10:00
kamfretoz
d44a7fc23a
Qt: Fix untranslated string on cover downloader
2023-09-26 22:44:33 +10:00
refractionpcsx2
5c63d75c86
GS/HW: Require 24/16bit RGB color if using AEM
2023-09-26 01:14:54 +01:00
refractionpcsx2
fef282fcd5
GS: Clean up CLUT dirty handling
2023-09-25 20:11:51 +01:00
refractionpcsx2
ec9e5402c0
GS: Reduce unnecessary flushes
2023-09-25 20:11:51 +01:00
PCSX2 Bot
a45378cadf
PAD: Update to latest controller database.
2023-09-25 18:03:10 +02:00
refractionpcsx2
a5127c7c07
Build: Fix GS Dump Runner building
2023-09-24 22:06:58 +01:00
Ziemas
0197aeeb4b
SPU: Fix DC filter types and clamping
...
Fix wrong type being used for dc filter state.
The filter seems to introduce some small amount of gain, so we need to
clamp it.
2023-09-24 20:25:16 +01:00
Víctor "IlDucci
8b84b0403b
Minow tweaks on Big Picture
...
Removing two strings that were remnants of DuckStation for Android.
2023-09-24 23:54:01 +10:00
PCSX2 Bot
6a671a5cd1
Qt: Update Base Translation
2023-09-24 22:47:30 +10:00
Valtekken
1be4eee674
UI: Different choice of words in achievement popup
2023-09-24 22:46:02 +10:00
Stenzek
1eed8a2a86
Achievements: Fix UI crash with DX11
2023-09-24 22:03:57 +10:00