Rename exp -> v3

This commit is contained in:
Lea Anthony 2023-01-18 21:34:11 +11:00
commit d24d82f86d
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405
137 changed files with 41 additions and 41 deletions

4
.gitignore vendored
View file

@ -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

View file

View file

@ -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() {

View file

@ -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{}

View file

@ -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 {

View file

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 130 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Before After
Before After

View file

@ -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() {

View file

@ -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() {

View file

@ -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() {

View file

@ -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() {

View file

@ -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() {

View file

@ -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() {

View file

@ -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() {

View file

@ -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() {

View file

@ -1,4 +1,4 @@
module github.com/wailsapp/wails/exp
module github.com/wailsapp/wails/v3
go 1.19

View file

@ -5,7 +5,7 @@ import (
"fmt"
"os"
"github.com/wailsapp/wails/exp/internal/parser"
"github.com/wailsapp/wails/v3/internal/parser"
)
type GenerateBindingsOptions struct {

View file

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 130 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Before After
Before After

View file

@ -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 {

View file

@ -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() {

View file

@ -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 {

View file

@ -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"
)

View file

@ -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 {

Some files were not shown because too many files have changed in this diff Show more