You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`malloc/free/memcpy/encode/decode`| Zig allocators and standard library |
@@ -295,7 +295,6 @@ implementations.
295
295
296
296
| Upstream API | Current gap |
297
297
|---|---|
298
-
|`webui_show()`, `webui_set_root_folder()`, `webui_set_file_handler()`, `webui_set_file_handler_window()`| Content and resource handling can only be selected when creating a window; replacing them at runtime is not implemented. |
299
298
|`webui_show_client()`|`Client` cannot replace the content of only one connected browser. |
300
299
|`webui_is_shown()`| There is no window-level connected/shown query. |
301
300
|`webui_set_config(folder_monitor)`| Directory change monitoring and automatic browser reload are not implemented. |
@@ -331,7 +330,7 @@ not implementation gaps:
331
330
| Upstream API | Zig replacement |
332
331
|---|---|
333
332
|`webui_new_window()`, `webui_new_window_id()`, `webui_get_new_window_id()`|`App.createWindow()` and application-owned IDs. |
|`webui_wait()`, `webui_wait_async()`|`Running.wait()` used directly or through `std.Io` concurrency. |
336
335
|`webui_close()`, `webui_destroy()`, `webui_exit()`, `webui_clean()`|`Window.close()`, `Running.stop()`, and `App.deinit()`. |
337
336
|`webui_set_context()`, `webui_get_context()`| Binding and event-handler `user_data`. |
@@ -352,7 +351,7 @@ not implementation gaps:
352
351
|`webui_set_public()`|`App.Options.public` permits non-loopback listening only with TLS; Origin and explicit connection and protocol limits are enforced. |
353
352
|`webui_set_tls_certificate()`|`App.Options.tls` accepts caller-provided PEM certificate and private-key bytes. |
354
353
|`webui_set_port()`, `webui_get_port()`, `webui_get_free_port()`|`App.Options.port`, including `0` for automatic selection, and the running window URL. |
|`webui_set_root_folder()`, `webui_set_file_handler()`, `webui_set_file_handler_window()`, `webui_return_http()`| Initial or runtime `.directory`and`.custom` content through `Content`, `Window.setContent()`, and `Response`. |
356
355
|`webui_get_mime_type()`| Linsang resource handling. |
357
356
|`webui_encode()`, `webui_decode()`, `webui_malloc()`, `webui_free()`, `webui_memcpy()`| Zig standard library and allocators. |
0 commit comments