Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-25 | Avoid `$<CXX_COMPILER_ID:Clang>` because it doesn't include AppleClang. | comex | |
2023-08-25 | Warnings cleanup for GCC 13 and Clang 16 | comex | |
Note: For GCC there are still a huge number of `-Warray-bounds` warnings coming from `externals/dynarmic`. I could have added a workaround in `externals/CMakeLists.txt` similar to what this PR does for other externals, but given Dynarmic's close affiliation with Yuzu, it would be better to fix it upstream. Besides that, on my machine, this makes the build warning-free except for some warnings from glslangValidator and AutoMoc. Details: - Disable some warnings in externals. - Disable `-Wnullability-completeness`, which is a Clang warning triggered by the Vulkan SDK where if any pointers in the header are marked _Nullable, it wants all pointers to be marked _Nullable or _Nonnull. Most of them are, but some aren't. Who knows why. - `src/web_service/verify_user_jwt.cpp`: Disable another warning when including `jwt.hpp`. - `src/input_common/input_poller.cpp`: Add missing `override` specifiers. - src/common/swap.h: Remove redundant `operator&`. In general, this file declares three overloads of each operator. Using `+` as an example, the overloads are: - a member function for `swapped_t + integer` - a member function for `swapped_t + swapped_t` - a free function for `integer + swapped_t` But for `operator&`, there was an additional free function for `swapped_t + integer`, which was redundant with the member function. This caused a GCC warning saying "ISO C++ says that these are ambiguous". | |||
2023-08-25 | Merge pull request #11377 from BenjaminHalko/reverse-slider-input | liamwhite | |
ui: Fixed inverted controls on ReverseSlider widgets | |||
2023-08-25 | Merge pull request #11378 from t895/game-flag | liamwhite | |
android: Use appCategory to specify the app is a game | |||
2023-08-25 | Merge pull request #11370 from FearlessTobi/fix-filesize | liamwhite | |
filesystem: Return correct error for RenameFile when dest_path already exists | |||
2023-08-25 | Merge pull request #11371 from FearlessTobi/fix-cli-updates | liamwhite | |
yuzu/main: Ensure NCAs are registered in content provider when launching from CLI | |||
2023-08-26 | ssl: tolerate handshake without hostname set (#11328) | liamwhite | |
2023-08-26 | registered_cache: create fake CNMT entries for program updates of ↵ | liamwhite | |
multiprogram applications (#11319) | |||
2023-08-25 | kernel: offset code entry point for 39-bit address space type (#11326) | liamwhite | |
2023-08-25 | android: Use appCategory to specify the app is a game | Charles Lombardo | |
2023-08-25 | Merge pull request #11357 from liamwhite/lime-vfs | bunnei | |
android: jni: ensure NCAs from loaded filepath are registered in manual content provider | |||
2023-08-25 | ui: Fixed inverted controls on ReverseSlider widgets | BenjaminHalko | |
fixes: #11236 | |||
2023-08-25 | nvhost_as_gpu: ensure mappings are aligned to big page size when deallocated | Liam | |
2023-08-24 | yuzu/main: Ensure NCAs are registered in content provider when launching ↵ | FearlessTobi | |
from CLI Fixes updates and DLC not being loaded when launching yuzu from the command line. Similar to https://github.com/yuzu-emu/yuzu/pull/11357. Fixes https://github.com/yuzu-emu/yuzu/issues/8352, | |||
2023-08-24 | filesystem: Return correct error for RenameFile when dest_path already exists | FearlessTobi | |
Allows Grid Autosport to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/8287. | |||
2023-08-24 | Merge pull request #11327 from liamwhite/skyline-2 | liamwhite | |
sockets: avoid locking around socket session calls | |||
2023-08-24 | game_list_worker: Display correct size for NAX games | FearlessTobi | |
This was a regression from https://github.com/yuzu-emu/yuzu/pull/1837. Fixes https://github.com/yuzu-emu/yuzu/issues/1938. | |||
2023-08-23 | Merge pull request #11352 from t895/recurse-subfolders | liamwhite | |
android: Search game directory recursively | |||
2023-08-23 | android: Set default build variant to mainlineRelWithDebInfo (#11358) | Charles Lombardo | |
2023-08-22 | android: jni: ensure NCAs from loaded filepath are registered in manual ↵ | Liam | |
content provider | |||
2023-08-22 | android: Search game directory recursively | Charles Lombardo | |
2023-08-22 | Merge pull request #11302 from vonchenplus/vulkan_macos | liamwhite | |
Add macos moltenvk bundle, Add copy moltevk dylib script | |||
2023-08-22 | Merge pull request #11303 from lat9nq/screenshots-configurable | liamwhite | |
yuzu-qt: Add configuration for screenshot resolution | |||
2023-08-22 | Merge pull request #11316 from FernandoS27/stop-premature-christmas-decorating | liamwhite | |
Shader Recompiler: implement textureGrad 3D | |||
2023-08-22 | Merge pull request #11346 from t895/ktlint-fix | liamwhite | |
android: lint: Delete generated ktlint folder between builds | |||
2023-08-22 | Add macos moltenvk bundle, Add copy moltevk dylib script | Feng Chen | |
2023-08-21 | android: lint: Delete generated ktlint folder between builds | Charles Lombardo | |
There's a bug in ktlint where it will run into an error if you build the project, delete a source file, and then build again. It will be unable to find the file you deleted and can't recover until these files are deleted. This just deletes those files before every run. | |||
2023-08-21 | android: Show associated value in home settings (#11272) | Charles Lombardo | |
2023-08-21 | Merge pull request #11309 from liamwhite/full-xci | liamwhite | |
file_sys/card_image: support dumps with prepended key area | |||
2023-08-21 | Merge pull request #11342 from liamwhite/skyline-4 | liamwhite | |
patch_manager: apply manual HTML patches when present | |||
2023-08-21 | Merge pull request #11149 from ameerj/astc-perf-prod | liamwhite | |
host_shaders: ASTC compute shader optimizations | |||
2023-08-21 | android: Use sensor landscape for landscape mode (#11337) | Charles Lombardo | |
2023-08-21 | patch_manager: apply manual HTML patches when present | Liam | |
2023-08-21 | Merge pull request #11284 from liamwhite/nca-release | Fernando S | |
vfs: expand support for NCA reading | |||
2023-08-19 | sockets: avoid locking around socket session calls | Liam | |
2023-08-19 | Masked depthstencil clears | Kelebek1 | |
2023-08-18 | Shader Recomnpiler: implement textuzreGrad 3D emulation constant propagation | Fernando Sahmkow | |
2023-08-18 | Merge pull request #11278 from Kelebek1/dma_sync | liamwhite | |
Mark accelerated DMA destination buffers and images as GPU-modified | |||
2023-08-18 | Merge pull request #11288 from liamwhite/svc-tick | liamwhite | |
kernel: remove relative task registration | |||
2023-08-18 | video_core: Fix vulkan assert error | Feng Chen | |
2023-08-17 | file_sys/card_image: support dumps with prepended key area | Liam | |
2023-08-17 | Merge pull request #10989 from comex/epipe | liamwhite | |
sockets: Improve behavior when sending to closed connection | |||
2023-08-17 | cmake: mark warning disable for gcc 11 (#11301) | liamwhite | |
2023-08-16 | uisettings: Add TODO for stretched aspect being ignored | lat9nq | |
2023-08-16 | file_sys: tolerate empty NCA | Liam | |
2023-08-16 | configure_ui: Silence MSVC warning | lat9nq | |
2023-08-16 | yuzu-qt: Screenshots depend more on the graphics settings | lat9nq | |
2023-08-16 | yuzu-qt: Implement unspecified screenshot ratio | lat9nq | |
2023-08-16 | bootmanager: Remove old path | lat9nq | |
Causes issues with different selected aspect ratios in graphics. | |||
2023-08-15 | configure_ui: Update the screenshots data | lat9nq | |