We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae89c8a commit 639d53fCopy full SHA for 639d53f
examples/simple_example.jl
@@ -0,0 +1,7 @@
1
+using Webview
2
+
3
+# Create a webview instance
4
+wv = Webview.Webview(true)
5
6
+# Run the webview
7
+Webview.run(wv)
src/webview/_webview_ffi.py
@@ -12,7 +12,7 @@ def _encode_c_string(s: str) -> bytes:
12
13
def _get_webview_version():
14
"""Get webview version from environment variable or use default"""
15
- return os.getenv("WEBVIEW_VERSION", "0.8.1")
+ return os.getenv("WEBVIEW_VERSION", "0.9.0")
16
17
def _get_lib_names():
18
"""Get platform-specific library names."""
0 commit comments