Skip to content

Commit

Permalink
chore: Update to vega 0.74.3 and wails 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinTrinque committed Feb 23, 2024
1 parent 02a2c67 commit de12954
Show file tree
Hide file tree
Showing 14 changed files with 179 additions and 118 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main

permissions:
id-token: write
Expand All @@ -16,7 +18,7 @@ permissions:
env:
WAILS_VERSION: v2.4.1
NODE_VERSION: 18.12.0
GO_VERSION: 1.20.6
GO_VERSION: 1.21.7

jobs:
download-frontend:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
VITE_SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
WAILS_VERSION: v2.4.1
NODE_VERSION: 18.12.0
GO_VERSION: 1.20.6
GO_VERSION: 1.21.7

jobs:
release-macos:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.13.0

Support for vega v0.74.3

## 0.12.6

Support for vega v0.73.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The Vega Wallet desktop app provides a graphical user interface for Vega Protoco

#### Golang

You will need to go 1.20.
You will need to go 1.21.

#### Wails

Expand Down
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var (

// Version specifies the version used to build the application.
// See VERSION in Makefile for details.
Version = "v0.12.6"
Version = "v0.13.0"

About = fmt.Sprintf(aboutAppTemplate, Version, VersionHash)
)
Expand Down
Binary file modified build/appicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vegawallet",
"author": "Gobalsky Labs Ltd.",
"version": "0.12.6",
"version": "0.13.0",
"private": true,
"engines": {
"node": "^18.12.0"
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/wailsjs/go/backend/Handler.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
import {connections} from '../models';
import {menu} from '../models';
import {app} from '../models';
import {backend} from '../models';
import {service} from '../models';
Expand All @@ -15,7 +16,7 @@ export function APIV2GenerateAPIToken(arg1:connections.GenerateAPITokenParams):P

export function APIV2ListAPITokens():Promise<connections.ListAPITokensResult>;

export function AppMenu():Promise<any>;
export function AppMenu():Promise<menu.Menu>;

export function ChooseFolder():Promise<string>;

Expand Down
60 changes: 32 additions & 28 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,71 +1,75 @@
module code.vegaprotocol.io/vegawallet-desktop

go 1.20
go 1.21

toolchain go1.21.7

require (
code.vegaprotocol.io/vega v0.73.1
github.com/gen2brain/beeep v0.0.0-20220909211152-5a9ec94374f6
code.vegaprotocol.io/vega v0.74.3
github.com/gen2brain/beeep v0.0.0-20240112042604-c7bb2cd88fea
github.com/wailsapp/wails/v2 v2.4.1
go.uber.org/zap v1.24.0
go.uber.org/zap v1.27.0
)

require (
github.com/PaesslerAG/gval v1.0.0 // indirect
github.com/PaesslerAG/jsonpath v0.1.1 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/samber/lo v1.36.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/samber/lo v1.38.1 // indirect
github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
)

require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/adrg/xdg v0.4.0
github.com/bep/debounce v1.2.1 // indirect
github.com/blang/semver/v4 v4.0.0
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/dgrijalva/jwt-go/v4 v4.0.0-preview1 // indirect
github.com/ethereum/go-ethereum v1.11.6 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.9.0 // indirect
github.com/holiman/uint256 v1.2.2-0.20230321075855-87b91420868c // indirect
github.com/jchv/go-winloader v0.0.0-20210711035445-715c2860da7e // indirect
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/labstack/echo/v4 v4.9.0 // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/leaanthony/go-ansi-parser v1.0.1 // indirect
github.com/labstack/echo/v4 v4.10.2 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/leaanthony/go-ansi-parser v1.6.0 // indirect
github.com/leaanthony/gosod v1.0.3 // indirect
github.com/leaanthony/slicer v1.5.0 // indirect
github.com/leaanthony/slicer v1.6.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20220317090546-adb2f9614b17 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20220708102147-0a8a51822cae // indirect
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rs/cors v1.8.2 // indirect; iwndirect
github.com/rs/cors v1.8.3 // indirect; iwndirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/tkrajina/go-reflector v0.5.5 // indirect
github.com/tkrajina/go-reflector v0.5.6 // indirect
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vegaprotocol/go-slip10 v0.1.0 // indirect
github.com/wailsapp/mimetype v1.4.1 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/grpc v1.56.3 // indirect
google.golang.org/protobuf v1.30.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/grpc v1.60.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)

replace github.com/shopspring/decimal => github.com/vegaprotocol/decimal v1.3.1-uint256
Loading

0 comments on commit de12954

Please sign in to comment.