Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-09 | Merge pull request #989 from lioncash/log | bunnei | |
common/logging: Add missing service log categories | |||
2018-08-09 | Merge pull request #897 from DarkLordZach/vfs-accuracy-2 | bunnei | |
vfs: Add VfsFilesystem and fix RealVfs* implementations | |||
2018-08-09 | Merge pull request #988 from lioncash/color | bunnei | |
common/color: Minor cleanup | |||
2018-08-08 | file_util: Use enum instead of bool for specifing path behavior | Zach Hilman | |
2018-08-08 | file_util: Add platform-specific slash option to SanitizePath | Zach Hilman | |
2018-08-08 | common/logging: Add missing service log categories | Lioncash | |
These weren't added when the services were introduced. | |||
2018-08-08 | common/color: Remove unnecessary const qualifiers on return types | Lioncash | |
These are just superfluous and not necessesary | |||
2018-08-08 | common/color: Get rid of undefined behavior | Lioncash | |
Gets rid of type punning via reinterpret_cast within functions. Instead, we use memcpy to transfer the contents across types. | |||
2018-08-08 | vector_math: Use variable template version of is_signed in Vec classes | Lioncash | |
Same behavior, less code | |||
2018-08-08 | Merge pull request #966 from lioncash/modernize | bunnei | |
common: Convert type traits templates over to variable template versions where applicable | |||
2018-08-08 | Merge pull request #968 from lioncash/vec | bunnei | |
vector_math: Minor cleanups | |||
2018-08-07 | vector_math: Remove unimplemented function prototypes | Lioncash | |
2018-08-07 | vector_math: Make functions constexpr where applicable | Lioncash | |
2018-08-07 | vector_math: Convert typedefs to type aliases | Lioncash | |
2018-08-07 | common: Convert type traits templates over to variable template versions ↵ | Lioncash | |
where applicable Uses the C++17 inline variable variants | |||
2018-08-07 | file_util: Avoid sign-conversions in WriteArray() and ReadArray() | Lioncash | |
Prevents compiler warnings. | |||
2018-08-07 | service: Add usb services | Lioncash | |
Adds basic skeleton for the usb services based off the information provided by Switch Brew. | |||
2018-08-04 | service: Add arp services | Lioncash | |
Adds the basic skeleton of the arp services based off the information provided by Switch Brew. | |||
2018-08-04 | Merge pull request #849 from DarkLordZach/xci | bunnei | |
XCI and Encrypted NCA Support | |||
2018-08-03 | Merge pull request #898 from lioncash/mig | bunnei | |
service: Add migration services | |||
2018-08-03 | Merge pull request #900 from lioncash/init | bunnei | |
math_util: Always initialize members of Rectangle | |||
2018-08-02 | math_util: Always initialize members of Rectangle | Lioncash | |
Prevents potentially using the members uninitialized. | |||
2018-08-02 | service: Add migration services | Lioncash | |
Adds the basic skeleton for the mig:usr service based off information provided by Switch Brew. | |||
2018-08-01 | logging/log: Remove incorrect description in PCV doc comment | Lioncash | |
PCV isn't the parental control service. | |||
2018-08-01 | service: Add psc services | Lioncash | |
Adds the basic skeleton for the psc services based off the information provided by Switch Brew. | |||
2018-08-01 | Merge pull request #888 from lioncash/caps | bunnei | |
service: Add capture services | |||
2018-08-01 | service: Add capture services | Lioncash | |
Adds the basic skeleton for the capture services based off information provided by Switch Brew. | |||
2018-08-01 | service: Add bpc and pcv services | Lioncash | |
Adds the basic skeleton for the remaining pcv-related services based off information on Switch Brew. | |||
2018-08-01 | Allow key loading from %YUZU_DIR%/keys in addition to ~/.switch | Zach Hilman | |
2018-08-01 | Use SHGetKnownFolderPath instead of SHGetFolderPathA | Zach Hilman | |
2018-08-01 | Extract mbedtls to cpp file | Zach Hilman | |
2018-08-01 | Remove files that are not used | Zach Hilman | |
2018-07-31 | Merge pull request #864 from FearlessTobi/port-3973 | bunnei | |
Port #3973 from Citra: "Remove polymorphism issue" | |||
2018-07-31 | Merge pull request #875 from lioncash/fgm | bunnei | |
service: Add fgm services | |||
2018-07-31 | service: Add fgm services | Lioncash | |
Adds the basic skeleton for the fgm services based off the information provided by Switch Brew. | |||
2018-07-31 | service: Add the pcie service | Lioncash | |
Adds the basic skeleton of the pcie service based off information on Switch Brew. | |||
2018-07-30 | Port #3758 from Citra (#852): Add missing std::string import in text_formatter | Tobias | |
2018-07-30 | Merge pull request #861 from FearlessTobi/port-3972 | bunnei | |
Port #3972 from Citra: "common/timer: use std::chrono, avoid platform-dependent code" | |||
2018-07-30 | Merge pull request #862 from FearlessTobi/port-3997 | bunnei | |
Port #3997 from Citra: "common/string_utils: replace boost::transform with std counterpart" | |||
2018-07-30 | Merge pull request #865 from FearlessTobi/port-3732 | bunnei | |
Port #3732 from Citra: "common: Fix compilation on ARM" | |||
2018-07-30 | Merge pull request #857 from lioncash/wlan | bunnei | |
service: Add wlan services | |||
2018-07-29 | Port #3732 from Citra: "common: Fix compilation on ARM" | Cameron Cawley | |
2018-07-29 | remove polymorphism issue | B3n30 | |
2018-07-29 | common/string_utils: replace boost::transform with std counterpart | zhupengfei | |
Note: according to cppreference it is necessary to convert char to unsigned char when using std::tolower and std::toupper, otherwise the behaviour would be undefined. | |||
2018-07-29 | Port #3972 from Citra: "common/timer: use std::chrono, avoid ↵ | zhupengfei | |
platform-dependent code" | |||
2018-07-28 | service: Add wlan services | Lioncash | |
Adds the basic skeleton for the wlan services based off the information on Switch Brew. | |||
2018-07-28 | service: Add btm services | Lioncash | |
Adds the skeleton for the btm services based off the information on Switch Brew. | |||
2018-07-28 | Merge pull request #847 from lioncash/ncm | bunnei | |
service: Add ncm services | |||
2018-07-28 | Merge pull request #846 from lioncash/mii | bunnei | |
service: Add mii services | |||
2018-07-27 | service: Add ncm services | Lioncash | |
Adds the basic skeleton for the ncm services based off information on Switch Brew. |