-
-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #530 from Xphalnos/main
Lot of small fixes
- Loading branch information
Showing
10 changed files
with
127 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,84 @@ | ||
[submodule "externals/discord-rpc"] | ||
path = externals/discord-rpc | ||
url = https://github.com/shadps4-emu/ext-discord-rpc.git | ||
[submodule "externals/cryptopp-cmake"] | ||
path = externals/cryptopp-cmake | ||
url = https://github.com/shadps4-emu/ext-cryptopp-cmake.git | ||
shallow = true | ||
[submodule "externals/cryptopp"] | ||
path = externals/cryptopp | ||
url = https://github.com/shadps4-emu/ext-cryptopp.git | ||
shallow = true | ||
[submodule "externals/cryptoppwin"] | ||
path = externals/cryptoppwin | ||
url = https://github.com/shadps4-emu/ext-cryptoppwin.git | ||
shallow = true | ||
[submodule "externals/zlib-ng"] | ||
path = externals/zlib-ng | ||
url = https://github.com/shadps4-emu/ext-zlib-ng.git | ||
shallow = true | ||
[submodule "externals/sdl3"] | ||
path = externals/sdl3 | ||
url = https://github.com/shadps4-emu/ext-SDL.git | ||
shallow = true | ||
[submodule "externals/fmt"] | ||
path = externals/fmt | ||
url = https://github.com/shadps4-emu/ext-fmt.git | ||
shallow = true | ||
[submodule "externals/vulkan-headers"] | ||
path = externals/vulkan-headers | ||
url = https://github.com/KhronosGroup/Vulkan-Headers.git | ||
shallow = true | ||
[submodule "externals/vma"] | ||
path = externals/vma | ||
url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git | ||
shallow = true | ||
[submodule "externals/glslang"] | ||
path = externals/glslang | ||
url = https://github.com/KhronosGroup/glslang.git | ||
shallow = true | ||
[submodule "externals/robin-map"] | ||
path = externals/robin-map | ||
url = https://github.com/Tessil/robin-map.git | ||
shallow = true | ||
[submodule "externals/xbyak"] | ||
path = externals/xbyak | ||
url = https://github.com/herumi/xbyak.git | ||
shallow = true | ||
[submodule "externals/winpthreads"] | ||
path = externals/winpthreads | ||
url = https://github.com/shadps4-emu/winpthreads.git | ||
shallow = true | ||
[submodule "externals/magic_enum"] | ||
path = externals/magic_enum | ||
url = https://github.com/Neargye/magic_enum.git | ||
shallow = true | ||
[submodule "externals/toml11"] | ||
path = externals/toml11 | ||
url = https://github.com/ToruNiina/toml11.git | ||
shallow = true | ||
[submodule "externals/zydis"] | ||
path = externals/zydis | ||
url = https://github.com/zyantific/zydis.git | ||
shallow = true | ||
[submodule "externals/sirit"] | ||
path = externals/sirit | ||
url = https://github.com/shadps4-emu/sirit.git | ||
shallow = true | ||
[submodule "externals/xxhash"] | ||
path = externals/xxhash | ||
url = https://github.com/Cyan4973/xxHash.git | ||
shallow = true | ||
[submodule "externals/tracy"] | ||
path = externals/tracy | ||
url = https://github.com/shadps4-emu/tracy.git | ||
shallow = true | ||
[submodule "externals/ext-boost"] | ||
path = externals/ext-boost | ||
url = https://github.com/shadps4-emu/ext-boost.git | ||
shallow = true | ||
[submodule "externals/date"] | ||
path = externals/date | ||
url = https://github.com/HowardHinnant/date.git | ||
shallow = true | ||
[submodule "externals/ffmpeg-core"] | ||
path = externals/ffmpeg-core | ||
url = https://github.com/shadps4-emu/ext-ffmpeg-core | ||
url = https://github.com/shadps4-emu/ext-ffmpeg-core.git | ||
shallow = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,44 @@ | ||
v0.2.0 15/08/2024 - codename validptr | ||
================= | ||
- Adding macOS support | ||
- Big shader recompiler improvements | ||
- Core improvements | ||
- GUI improvements | ||
|
||
v0.1.0 01/07/2024 - codename madturtle | ||
================= | ||
- Added a shader recompiler, with this we have a lot of games that starts to work | ||
- Rewrote a big part of core | ||
|
||
v0.0.3 23/03/2024 - codename salad | ||
================= | ||
-Switching to std::thread | ||
-Use unique_ptr where possible | ||
-Replace printf/scanf with type safe fmt | ||
-Implemented sceKernelGetProcessTime | ||
-Implemented sceKernelGetProcessTimeCounter , sceKernelGetProcessTimeCounterFrequency | ||
-Pause emu with P button | ||
-Timers rewrote with std::chrono | ||
-Added sceSystemServiceGetStatus | ||
-Initial FileSystem implementation | ||
-Initial TLS work | ||
-New logging implementation | ||
-Some functions implemented for userService,systemService | ||
-Added sceAudioOut module and output using sdl audio | ||
- Switching to std::thread | ||
- Use unique_ptr where possible | ||
- Replace printf/scanf with type safe fmt | ||
- Implemented sceKernelGetProcessTime | ||
- Implemented sceKernelGetProcessTimeCounter, sceKernelGetProcessTimeCounterFrequency | ||
- Pause emu with P button | ||
- Timers rewrote with std::chrono | ||
- Added sceSystemServiceGetStatus | ||
- Initial FileSystem implementation | ||
- Initial TLS work | ||
- New logging implementation | ||
- Some functions implemented for userService, systemService | ||
- Added sceAudioOut module and output using SDL audio | ||
|
||
v0.0.2 21/10/2023 | ||
================= | ||
-using cstdint header in variable types | ||
-run_main_entry: Rewrite in asm for stack setup | ||
-printf libc implementation for work with sysv_abi | ||
-initial pad emulation (only digital pad atm) | ||
-Implemented sceVideoOutIsFlipPending | ||
-Added auto stubs , now unsupported hle function will resolve as empty stubs | ||
-Rewrote libc_cxa functions | ||
-Libc implementations ( _ZdlPv,_Znwm,rand,_Fsin,qsort,free,strncpy,memmove,atan2f,pow,_Sin) | ||
-ET_SCE_DYNAMIC behaves as valid for execution now. | ||
-Initial FileSystem work (not yet usable). | ||
- Using cstdint header in variable types | ||
- run_main_entry: Rewrite in asm for stack setup | ||
- Printf libc implementation for work with sysv_abi | ||
- Initial pad emulation (only digital pad atm) | ||
- Implemented sceVideoOutIsFlipPending | ||
- Added auto stubs, now unsupported hle function will resolve as empty stubs | ||
- Rewrote libc_cxa functions | ||
- Libc implementations ( _ZdlPv,_Znwm,rand,_Fsin,qsort,free,strncpy,memmove,atan2f,pow,_Sin) | ||
- ET_SCE_DYNAMIC behaves as valid for execution now | ||
- Initial FileSystem work (not yet usable) | ||
|
||
v0.0.1 29/09/2023 | ||
================= | ||
First public release . Everything is new | ||
First public release. Everything is new. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule discord-rpc
deleted from
4ec218
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.