Skip to content

Commit 14a88aa

Browse files
committedJan 3, 2024
Reduced library size by not cloning the whole webview repo, moved webview header to vendor.
1 parent 8e88c37 commit 14a88aa

File tree

5 files changed

+2876
-5
lines changed

5 files changed

+2876
-5
lines changed
 

‎haxelib.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"license": "MIT",
55
"tags": ["haxe", "webview", "cpp", "binds", "bindings", "native", "desktop", "cross"],
66
"description": "Haxe cross-platform desktop bindings for webview.",
7-
"version": "0.0.2",
8-
"releasenote": "Added Linux support, fixed haxelib license, moved types to Webview from WVTypes and cleaner include.xml.",
7+
"version": "0.0.3",
8+
"releasenote": "Reduced library size by not cloning the whole webview repo, moved webview header to vendor.",
99
"contributors": ["SanicBTW"],
1010
"classPath": "source",
1111
"dependencies": {

‎internal/WebViewHelper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <hxcpp.h>
22
#include <hxString.h>
33
#include <string>
4-
#include "./webview/webview.h"
4+
#include "./vendor/webview.h"
55

66
#if defined(_WIN32)
77
#include <windef.h>

‎internal/imports.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
#define WEBVIEW_MSWEBVIEW2_BUILTIN_IMPL 0
77
#endif
88

9-
#include "webview/webview.h"
9+
#include "vendor/webview.h"
1010
#include "WebViewHelper.cpp"

‎internal/vendor/webview.h

+2,872
Large diffs are not rendered by default.

‎internal/webview

-1
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.