Rename exp -> v3
4
.gitignore
vendored
|
|
@ -32,5 +32,5 @@ v2/cmd/wails/internal/commands/initialise/templates/testtemplates/
|
|||
.env
|
||||
/website/static/img/.cache.json
|
||||
|
||||
/exp/.task
|
||||
/exp/examples/build/bin/testapp
|
||||
/v3/.task
|
||||
/v3/examples/build/bin/testapp
|
||||
|
|
|
|||
0
exp/.gitignore → v3/.gitignore
vendored
|
|
@ -6,7 +6,7 @@ import (
|
|||
"github.com/pterm/pterm"
|
||||
|
||||
"github.com/leaanthony/clir"
|
||||
"github.com/wailsapp/wails/exp/internal/commands"
|
||||
"github.com/wailsapp/wails/v3/internal/commands"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -4,10 +4,10 @@ import (
|
|||
_ "embed"
|
||||
"log"
|
||||
|
||||
"github.com/wailsapp/wails/exp/examples/binding/services"
|
||||
"github.com/wailsapp/wails/v3/examples/binding/services"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
)
|
||||
|
||||
type localStruct struct{}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
package services
|
||||
|
||||
import (
|
||||
"github.com/wailsapp/wails/exp/examples/binding/models"
|
||||
"github.com/wailsapp/wails/v3/examples/binding/models"
|
||||
)
|
||||
|
||||
type GreetService struct {
|
||||
|
Before Width: | Height: | Size: 130 KiB After Width: | Height: | Size: 130 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
|
@ -9,11 +9,11 @@ import (
|
|||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/events"
|
||||
"github.com/wailsapp/wails/v3/pkg/events"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -5,9 +5,9 @@ import (
|
|||
"log"
|
||||
"time"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -7,9 +7,9 @@ import (
|
|||
"runtime"
|
||||
"strings"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -7,8 +7,8 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -4,9 +4,9 @@ import (
|
|||
_ "embed"
|
||||
"log"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -5,9 +5,9 @@ import (
|
|||
"log"
|
||||
"net/http"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -5,9 +5,9 @@ import (
|
|||
"log"
|
||||
"runtime"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -9,11 +9,11 @@ import (
|
|||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/events"
|
||||
"github.com/wailsapp/wails/v3/pkg/events"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
module github.com/wailsapp/wails/exp
|
||||
module github.com/wailsapp/wails/v3
|
||||
|
||||
go 1.19
|
||||
|
||||
|
|
@ -5,7 +5,7 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/wailsapp/wails/exp/internal/parser"
|
||||
"github.com/wailsapp/wails/v3/internal/parser"
|
||||
)
|
||||
|
||||
type GenerateBindingsOptions struct {
|
||||
|
Before Width: | Height: | Size: 130 KiB After Width: | Height: | Size: 130 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
|
@ -4,8 +4,8 @@ import (
|
|||
_ "embed"
|
||||
"log"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
)
|
||||
|
||||
type GreetService struct {
|
||||
|
|
@ -4,8 +4,8 @@ import (
|
|||
_ "embed"
|
||||
"log"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
@ -4,8 +4,8 @@ import (
|
|||
_ "embed"
|
||||
"log"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/application"
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
)
|
||||
|
||||
type GreetService struct {
|
||||
|
|
@ -6,8 +6,8 @@ import (
|
|||
"runtime"
|
||||
"sync"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/events"
|
||||
"github.com/wailsapp/wails/exp/pkg/options"
|
||||
"github.com/wailsapp/wails/v3/pkg/events"
|
||||
"github.com/wailsapp/wails/v3/pkg/options"
|
||||
|
||||
"github.com/wailsapp/wails/v2/pkg/assetserver/webview"
|
||||
)
|
||||
|
|
@ -118,8 +118,8 @@ import "C"
|
|||
import (
|
||||
"unsafe"
|
||||
|
||||
"github.com/wailsapp/wails/exp/pkg/events"
|
||||
"github.com/wailsapp/wails/v2/pkg/assetserver/webview"
|
||||
"github.com/wailsapp/wails/v3/pkg/events"
|
||||
)
|
||||
|
||||
type macosApp struct {
|
||||