246 Commits

Author SHA1 Message Date
Hassan DRAGA
ccac4a482e Cleaning
* Removing Visual Studio Solution Examples
* Removing `webui.h` from examples
2023-08-24 17:21:09 -04:00
Turiiya
db5bc6bed3
Update style of interop examples (#175) 2023-08-24 17:53:31 +02:00
Jazz
b4a3092480
fix some calls to "webui_decode" 2023-08-22 20:05:03 -04:00
Hassan DRAGA
e941e35fc6 Send Raw to backend
* Send Raw to backend
* Updating bridge
* No memory copy when source is UI as is guaranteed to stay alive
2023-08-22 18:11:35 -04:00
Turiiya
a79ebbf7ac Don't try to rebuild library when running example Makefiles 2023-08-21 22:43:30 +02:00
Turiiya
900d9670ca Rename output dir from build to dist 2023-08-21 19:04:43 +02:00
Turiiya
3432cf4562 Update examples to use new build output directory 2023-08-21 19:04:43 +02:00
Hassan DRAGA
3133bcb92a Update webui_fn to webui.call
* Update all old js APIs `webui_fn()` to `webui.call()`
2023-08-19 17:54:52 -04:00
Hassan DRAGA
52885648d2 Up to v2.4.0
* Up all to v2.4.0
2023-08-19 17:49:08 -04:00
Hassan DRAGA
28274c53e8 New API webui_set_hide
* Adding `webui_set_hide()` to run the window in hidden mode
2023-08-18 18:16:35 -04:00
Hassan DRAGA
ba84f249b5 New API webui_send_raw
* Adding `webui_send_raw()` to be able to send raw binary data to UI
* Soon I will add UI to Backend
2023-08-18 16:16:07 -04:00
Hassan DRAGA
5b0333dbba Cleaning binaries
* Removing all compiled objects
2023-08-18 15:42:48 -04:00
Turiiya
8f68da6dd8 build: remove macos example binaries 2023-08-06 22:34:55 +02:00
Albert Shown
0b55abff5a Finished webui_set_file_handler API
* Finishing the `webui_set_file_handler()` feature. Thanks to @petabyt
* Removing `free()` and replace it by the WebUI version
* Minor core changes to make `webui_set_file_handler()` working
* Update serve a folder example to show how to use `webui_set_file_handler()`

## New Public API:
* `void webui_set_file_handler(size_t window, const void* (*handler)(const char* filename, int* length))`
* `void* webui_malloc(size_t size)`
2023-06-26 12:11:03 -04:00
Hassan DRAGA
78ca30a585 Adding webui_set_root_folder (macOS)
* macOS build of (d786f6db2a)
2023-05-27 20:51:34 -04:00
Hassan DRAGA
36436d7ef7 Adding webui_set_root_folder (Linux)
* Linux build of (d786f6db2a)
2023-05-27 20:38:12 -04:00
Hassan DRAGA
d786f6db2a Adding webui_set_root_folder
* Adding New API `bool _webui_set_root_folder(_webui_window_t* win, const char* path)`
2023-05-27 20:30:31 -04:00
Giuseppe Cesarano
3cf9191509
C++ header reorganization completed.
* Event struct is now a class with it's methods
* All examples updated to use the new API
2023-05-27 22:33:36 +02:00
Giuseppe Cesarano
9a683acdef
Fix C++ examples 2023-05-25 21:45:42 +02:00
Hassan DRAGA
fa0918e862 Update C++ examples (Broken) 2023-05-24 19:57:34 -04:00
Giuseppe Cesarano
010c91bcc6
C++ examples updated. 2023-05-25 00:27:29 +02:00
Hassan DRAGA
25f66ae8fc Update makefile to C++17
* Update makefile from C++11 to C++17
2023-05-23 22:49:49 -04:00
Hassan DRAGA
cdf67b17ac C++ Improvement
* Set C++11 as minimal standard
* Fix C++ Makefile in macOS
* Update the C++ WebUI header to use references (https://github.com/webui-dev/webui/issues/103)
* Update `webui_return_string()` argument from `char*` to `const char*`
2023-05-21 12:20:54 -04:00
Hassan DRAGA
914c988f25 WebUI v2.3.0 Release
* Final WebUI v2.3.0 Release
2023-05-13 13:08:13 -04:00
Hassan DRAGA
7db9826676 Updating the links
* Updating the links to the new organization
2023-05-13 10:47:42 -04:00
Hassan DRAGA
e71b816b71 Removing Non-C-Examples 2023-05-12 23:59:29 -04:00
Albert Shown
e3ee8b4dbe Fast closing
* Now `webui_exit()` operation become faster
* Cleaning the text editor UI files
2023-05-09 17:04:56 -04:00
Hassan DRAGA
e41d3113e9 Updating C examples
* Quick update to the C text editor example
2023-05-09 12:41:23 -04:00
Hassan DRAGA
bc5e5b2a56 Public get_new_window_id
# New
* `webui_get_new_window_id` is now public
* Updating C++ examples
2023-05-09 07:48:27 -04:00
Hassan DRAGA
71eeb25453 Update Readme 2023-05-08 23:12:17 -04:00
Hassan DRAGA
4e0a7fe5c1 Text Editor Example
# Changes
* `webui_run` changed from `bool` to `void` as it run the script fast with no return

# New
* `char* webui_encode(const char* str)` encode string to base64
* `char* webui_decode(const char* str)` decode base64 to string
* `void webui_free(void* ptr)` free resource allocated by WebUI (_when using webui_encode()_)
* A text editor example

# Fix
* Now WebUI wait in loop while the application requestion more html files (_Large HTML UI_)
2023-05-08 23:03:41 -04:00
Hassan DRAGA
980d4a4306 Text Editor C (Only UI)
* Non-complete Text Editor in C
2023-05-07 22:08:21 -04:00
Hassan DRAGA
aacc8b0ddd Window ID Based Creation
# New:

* New API: `void webui_new_window_id(size_t window_number)`
* New API: `void webui_destroy(size_t window)`

_Please see C serve_a_folder example on how to use webui_new_window_id()_

# Changes

* To keep consistency with window IDs, all `unsigned int` changed to `size_t`
2023-05-07 13:54:15 -04:00
Hassan DRAGA
a4e9e14903 Update Go Documentation
* Updating the Go docs
2023-05-06 14:04:24 -04:00
Hassan DRAGA
1f98ce6d10 Update C++ Documentations
* Updating the C++ documentations
2023-05-06 13:02:34 -04:00
Hassan DRAGA
eafbd8cb49 Better macOS Support
* WebUI on macOS now can use all web browsers
* macOS apps can now be run multiple-times (https://github.com/alifcommunity/webui/issues/69)
2023-05-06 02:30:21 -04:00
Hassan DRAGA
192b3172be Full C++ support
* The C++ wrapper is now complete
* Optimizing the close time in case the browser did not run
* Linux GCC build issue is fixed
2023-05-05 21:54:12 -04:00
Hassan DRAGA
c34d469a7e C++ Update 2023-05-05 18:58:44 -04:00
Albert Shown
e116261130 C++ Wrapper Update
* Now the C++ wrapper has its own class instead of direct C calls.
2023-05-05 17:41:20 -04:00
Hassan DRAGA
ca7b4f50ed WebUI v2.3.0
# Users/Wrappers Changes
* The window object changed from `void*` (pointer) to a simple `size_t` (integer)

# New Core Features And Changes
* License changed from `GPLv2` to 'MIT'. Thanks to @xD0135
* The core APIs is completely changed from `Mongoose` to `civetweb`. Thanks to @xD0135
* Kiosk mode support. Thanks to @malisipi
* UI responses resolving using IDs instead of first received (WebUI-JS-Bridge)
* Fix C++ Linux Clang build issue (C++ Linux GCC still broken)
2023-05-04 21:41:03 -04:00
Mehmet Ali Şipi
254e3733b2 Fix app & kiosk mode in chromium browsers 2023-05-04 21:55:21 +03:00
Hassan DRAGA
6ef37f068a macOS libs
* macOS binaries
2023-04-30 19:40:13 -04:00
Hassan DRAGA
684a1296c0 Linux libs
* Linux binaries
2023-04-30 19:34:26 -04:00
Hassan DRAGA
2aca7500fc Async Calls
* Changing `webui_fn('MyID', 'My Data')` to `webui_fn('MyID', 'My Data').then((response) => { ... });`
* Python AnderShell3000 example
2023-04-30 19:24:41 -04:00
Hassan DRAGA
866796c8d2 Event Struct Improvement
* In webui_event_t `type` changed to `event_type`. This is because some wrapper's language does not support using _type_ as a variable name.
* In webui_event_t `char* response` changed to `unsigned int event_number`.
* Now `webui_interface_set_response()` use a simple `unsigned int event_number` instead of `char* response`.
2023-04-29 13:46:11 -04:00
Hassan DRAGA
15478a0dcf Interpret Deno TypeScript Examples
* Interpret Deno TypeScript Examples (C99)
2023-04-28 00:32:11 -04:00
Hassan DRAGA
e32936036f Support Win32 Unicode
* Adding Win32 Unicode support to make V wrapper v2.2.0 working
2023-04-26 23:36:45 -04:00
Albert Shown
f4f168c912 Fix TCC (tlhelp32.h) issue
* Removing auto-running browser detection from TCC build
2023-04-26 18:15:55 -04:00
Albert Shown
01e19872ac More C++ examples
* Adding more C++ examples
* Updating C++ docs
2023-04-26 16:44:35 -04:00
Albert Shown
579d9e5b23 Support C++ Methods
* Adding example of how to use WebUI with C++ methods
2023-04-26 13:08:57 -04:00