mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
WebUI v2.3.0 Release
* Final WebUI v2.3.0 Release
This commit is contained in:
parent
bf757a7dc7
commit
914c988f25
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -43,16 +43,6 @@ echo "";
|
||||
|
||||
cd "$RootPath"
|
||||
|
||||
# Golang
|
||||
cp -f "include/webui.h" "examples/Go/hello_world/webui/webui.h"
|
||||
cp -f "build/Linux/GCC/libwebui-2-static-x64.a" "examples/Go/hello_world/webui/libwebui-2-static-x64.a"
|
||||
|
||||
# Deno
|
||||
cp -f "build/Linux/GCC/webui-2-x64.so" "examples/TypeScript/Deno/webui-2-x64.so"
|
||||
|
||||
# Python
|
||||
cp -f "build/Linux/GCC/webui-2-x64.so" "examples/Python/PyPI/Package/src/webui/webui-2-x64.so"
|
||||
|
||||
# C - Text Editor
|
||||
cp -f "include/webui.h" "examples/C/text-editor/webui.h"
|
||||
cp -f "build/Linux/GCC/webui-2-x64.so" "examples/C/text-editor/webui-2-x64.so"
|
||||
|
Binary file not shown.
Binary file not shown.
@ -34,16 +34,6 @@ echo "";
|
||||
|
||||
cd "$RootPath"
|
||||
|
||||
# Golang
|
||||
cp -f "include/webui.h" "examples/Go/hello_world/webui/webui.h"
|
||||
cp -f "build/macOS/Clang/libwebui-2-static-x64.a" "examples/Go/hello_world/webui/libwebui-2-static-x64.a"
|
||||
|
||||
# Deno
|
||||
cp -f "build/macOS/Clang/webui-2-x64.dyn" "examples/TypeScript/Deno/webui-2-x64.dyn"
|
||||
|
||||
# Python
|
||||
cp -f "build/macOS/Clang/webui-2-x64.dyn" "examples/Python/PyPI/Package/src/webui/webui-2-x64.dyn"
|
||||
|
||||
# C - Text Editor
|
||||
cp -f "include/webui.h" "examples/C/text-editor/webui.h"
|
||||
cp -f "build/macOS/Clang/webui-2-x64.dyn" "examples/C/text-editor/webui-2-x64.dyn"
|
||||
|
@ -51,16 +51,6 @@ echo.
|
||||
|
||||
cd "%RootPath%"
|
||||
|
||||
REM Golang
|
||||
copy /Y "include\webui.h" "examples\Go\hello_world\webui\webui.h"
|
||||
copy /Y "build\Windows\GCC\libwebui-2-static-x64.a" "examples\Go\hello_world\webui\libwebui-2-static-x64.a"
|
||||
|
||||
REM Deno
|
||||
copy /Y "build\Windows\MSVC\webui-2-x64.dll" "examples\TypeScript\Deno\webui-2-x64.dll"
|
||||
|
||||
REM Python
|
||||
copy /Y "build\Windows\MSVC\webui-2-x64.dll" "examples\Python\PyPI\Package\src\webui\webui-2-x64.dll"
|
||||
|
||||
REM C++ (Visual Studio 2022)
|
||||
copy /Y "include\webui.h" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui.h"
|
||||
copy /Y "include\webui.hpp" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui.hpp"
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
18
src/webui.c
18
src/webui.c
@ -904,7 +904,7 @@ char* webui_encode(const char* str) {
|
||||
size_t buf_len = (((len + 2) / 3) * 4) + 8;
|
||||
char* buf = (char*) _webui_malloc(buf_len);
|
||||
|
||||
int ret = mg_base64_encode(str, len, buf, &buf_len);
|
||||
int ret = mg_base64_encode((const unsigned char*)str, len, buf, &buf_len);
|
||||
|
||||
if(ret > (-1)) {
|
||||
|
||||
@ -939,7 +939,7 @@ char* webui_decode(const char* str) {
|
||||
#endif
|
||||
|
||||
size_t buf_len = (((len + 2) / 3) * 4) + 8;
|
||||
char* buf = (char*) _webui_malloc(buf_len);
|
||||
unsigned char* buf = (unsigned char*) _webui_malloc(buf_len);
|
||||
|
||||
int ret = mg_base64_decode(str, len, buf, &buf_len);
|
||||
|
||||
@ -958,7 +958,7 @@ char* webui_decode(const char* str) {
|
||||
#endif
|
||||
|
||||
// Success
|
||||
return buf;
|
||||
return (char*)buf;
|
||||
}
|
||||
|
||||
void webui_free(void* ptr) {
|
||||
@ -1792,7 +1792,7 @@ static int _webui_serve_file(struct mg_connection *conn) {
|
||||
|
||||
mg_send_http_error(
|
||||
conn, 404,
|
||||
webui_html_res_not_available
|
||||
"%s", webui_html_res_not_available
|
||||
);
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
@ -1929,7 +1929,7 @@ static int _webui_interpret_file(_webui_window_t* win, struct mg_connection *con
|
||||
|
||||
mg_send_http_error(
|
||||
conn, 404,
|
||||
webui_html_res_not_available
|
||||
"%s", webui_html_res_not_available
|
||||
);
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
@ -1995,7 +1995,7 @@ static int _webui_interpret_file(_webui_window_t* win, struct mg_connection *con
|
||||
|
||||
mg_send_http_error(
|
||||
conn, 500,
|
||||
webui_deno_not_found
|
||||
"%s", webui_deno_not_found
|
||||
);
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
@ -2044,7 +2044,7 @@ static int _webui_interpret_file(_webui_window_t* win, struct mg_connection *con
|
||||
|
||||
mg_send_http_error(
|
||||
conn, 500,
|
||||
webui_nodejs_not_found
|
||||
"%s", webui_nodejs_not_found
|
||||
);
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
@ -4347,7 +4347,7 @@ static int _webui_http_handler(struct mg_connection *conn, void *_win) {
|
||||
|
||||
mg_send_http_error(
|
||||
conn, 403,
|
||||
webui_html_served
|
||||
"%s", webui_html_served
|
||||
);
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
@ -4376,7 +4376,7 @@ static int _webui_http_handler(struct mg_connection *conn, void *_win) {
|
||||
// Inject WebUI JS-Bridge into HTML
|
||||
size_t len = _webui_strlen(win->html) + _webui_strlen(js) + 128;
|
||||
html = (char*) _webui_malloc(len);
|
||||
if(html != NULL) {
|
||||
if(win->html != NULL && js != NULL) {
|
||||
sprintf(html,
|
||||
"%s \n <script type = \"text/javascript\"> \n %s \n </script>",
|
||||
win->html, js
|
||||
|
Loading…
x
Reference in New Issue
Block a user