Fixed "System::OpenURI". Added SHA256. Added URI safe Base64 methods.
All checks were successful
Build & Release / Windows-AMD64-Build (push) Successful in 6m9s
Build & Release / Linux-AMD64-Build (push) Successful in 15m26s
Build & Release / Linux-AARCH64-Build (push) Successful in 45m54s

This commit is contained in:
2025-05-11 19:43:50 -07:00
parent 2cb01a7c65
commit bce48fe121
12 changed files with 491 additions and 58 deletions

View File

@@ -8,7 +8,7 @@ namespace ehs
class EHS_LIB_IO BaseSystem
{
public:
static void OpenURI(const Str_8& uri);
static void OpenURI(Str_8 uri);
static Str_8 OpenFileDialog(const Str_8 &dir, const Str_8 &filters);

View File

@@ -8,7 +8,7 @@ namespace ehs
class EHS_LIB_IO System : public BaseSystem
{
public:
static void OpenURI(const Str_8& uri);
static void OpenURI(Str_8 uri);
static Str_8 OpenFileDialog(const Str_8 &dir, const Str_8 &filters);

View File

@@ -7,6 +7,6 @@ namespace ehs
class EHS_LIB_IO System : public BaseSystem
{
public:
static void OpenURI(const Str_8& uri);
static void OpenURI(Str_8 uri);
};
}