forked from wailsapp/wails
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8250fb
commit ff08a5c
Showing
8 changed files
with
303 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Video Example | ||
|
||
This example shows support for HTML5 video. | ||
|
||
## Running the example | ||
|
||
To run the example, simply run the following command: | ||
|
||
```bash | ||
go run . | ||
``` | ||
|
||
# Status | ||
|
||
| Platform | Status | | ||
|----------|---------| | ||
| Mac | | | ||
| Windows | Working | | ||
| Linux | | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
module frameless | ||
|
||
go 1.21 | ||
|
||
toolchain go1.21.0 | ||
|
||
require ( | ||
github.com/wailsapp/go-webview2 v1.0.9 | ||
github.com/wailsapp/wails/v3 v3.0.0-alpha.0 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.16 // indirect | ||
github.com/bep/debounce v1.2.1 // indirect | ||
github.com/ebitengine/purego v0.4.0-alpha.4 // indirect | ||
github.com/emirpasic/gods v1.12.0 // indirect | ||
github.com/go-git/gcfg v1.5.0 // indirect | ||
github.com/go-git/go-billy/v5 v5.2.0 // indirect | ||
github.com/go-git/go-git/v5 v5.3.0 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/godbus/dbus/v5 v5.1.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/jchv/go-winloader v0.0.0-20210711035445-715c2860da7e // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect | ||
github.com/leaanthony/go-ansi-parser v1.6.1 // indirect | ||
github.com/leaanthony/u v1.1.0 // indirect | ||
github.com/lmittmann/tint v1.0.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/samber/lo v1.38.1 // indirect | ||
github.com/sergi/go-diff v1.2.0 // indirect | ||
github.com/wailsapp/mimetype v1.4.1 // indirect | ||
github.com/xanzy/ssh-agent v0.3.0 // indirect | ||
golang.org/x/crypto v0.9.0 // indirect | ||
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
) | ||
|
||
replace github.com/wailsapp/wails/v3 => ../.. | ||
|
||
replace github.com/wailsapp/go-webview2 => D:\GolandProjects\go-webview2 |
Oops, something went wrong.