Skip to content

Commit

Permalink
feat(增加show hide):
Browse files Browse the repository at this point in the history
增加show hide
  • Loading branch information
yaoyilin committed May 15, 2023
1 parent c834746 commit ad685f0
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cmd/demo/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
webview "github.com/jchv/go-webview2"
webview "github.com/shmspace/webview2"
"log"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/jchv/go-webview2
module github.com/shmspace/webview2

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion pkg/edge/ICoreWebView2Controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package edge
import (
"unsafe"

"github.com/jchv/go-webview2/internal/w32"
"github.com/shmspace/webview2/internal/w32"
"golang.org/x/sys/windows"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/edge/chromium.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync/atomic"
"unsafe"

"github.com/jchv/go-webview2/internal/w32"
"github.com/shmspace/webview2/internal/w32"
"golang.org/x/sys/windows"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/edge/chromium_386.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
package edge

import (
"github.com/shmspace/webview2/internal/w32"
"unsafe"
"github.com/jchv/go-webview2/internal/w32"
)

func (e *Chromium) Resize() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/edge/chromium_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package edge
import (
"unsafe"

"github.com/jchv/go-webview2/internal/w32"
"github.com/shmspace/webview2/internal/w32"
)

func (e *Chromium) Resize() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/edge/chromium_arm64.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package edge
import (
"unsafe"

"github.com/jchv/go-webview2/internal/w32"
"github.com/shmspace/webview2/internal/w32"
)

func (e *Chromium) Resize() {
Expand Down
4 changes: 2 additions & 2 deletions pkg/edge/corewebview2.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"runtime"
"unsafe"

"github.com/jchv/go-webview2/internal/w32"
"github.com/shmspace/webview2/internal/w32"

"github.com/jchv/go-webview2/webviewloader"
"github.com/shmspace/webview2/webviewloader"
"golang.org/x/sys/windows"
)

Expand Down
4 changes: 2 additions & 2 deletions webview.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"sync"
"unsafe"

"github.com/jchv/go-webview2/internal/w32"
"github.com/jchv/go-webview2/pkg/edge"
"github.com/shmspace/webview2/internal/w32"
"github.com/shmspace/webview2/pkg/edge"

"golang.org/x/sys/windows"
)
Expand Down

0 comments on commit ad685f0

Please sign in to comment.