diff --git a/examples/basic.d b/examples/basic.d deleted file mode 100644 index aca6cd9..0000000 --- a/examples/basic.d +++ /dev/null @@ -1,10 +0,0 @@ -import webview; - -void main() -{ - WebView w = WebView(false, null); - w.setTitle("Basic Example"); - w.setSize(480, 320, WindowSizeHint.None); - w.setHtml("Thanks for using webview!"); - w.run(); -} diff --git a/examples/basic/dub.sdl b/examples/basic/dub.sdl new file mode 100644 index 0000000..f610a05 --- /dev/null +++ b/examples/basic/dub.sdl @@ -0,0 +1,7 @@ +name "basic" +description "A minimal D application." +authors "xxiv" +copyright "Copyright © 2023, xxiv" +license "MIT" +dependency "webview" version="~>0.1.0" +libs "webview" \ No newline at end of file diff --git a/examples/basic/dub.selections.json b/examples/basic/dub.selections.json new file mode 100644 index 0000000..b066e00 --- /dev/null +++ b/examples/basic/dub.selections.json @@ -0,0 +1,6 @@ +{ + "fileVersion": 1, + "versions": { + "webview": "0.1.0" + } +} diff --git a/examples/basic/source/app.d b/examples/basic/source/app.d new file mode 100644 index 0000000..aca6cd9 --- /dev/null +++ b/examples/basic/source/app.d @@ -0,0 +1,10 @@ +import webview; + +void main() +{ + WebView w = WebView(false, null); + w.setTitle("Basic Example"); + w.setSize(480, 320, WindowSizeHint.None); + w.setHtml("Thanks for using webview!"); + w.run(); +}