Skip to content

Commit 6230e67

Browse files
committed
Various Updates
1 parent d6dfc5b commit 6230e67

File tree

8 files changed

+91
-60
lines changed

8 files changed

+91
-60
lines changed

app.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package main
33
import (
44
"bytes"
55
"context"
6-
// "encoding/json"
76
"errors"
87
"fmt"
98
"io"

build/appicon.afphoto

-417 KB
Binary file not shown.

build/appicon.png

45.2 KB
Loading

frontend/package-lock.json

+43-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"preview": "vite preview"
1010
},
1111
"devDependencies": {
12-
"@sveltejs/vite-plugin-svelte": "^2.2.0",
12+
"@sveltejs/vite-plugin-svelte": "^2.4.1",
1313
"svelte": "^3.59.1",
14-
"vite": "^4.3.5"
14+
"vite": "^4.3.9"
1515
},
1616
"dependencies": {
1717
"ansi_up": "^5.2.1"

frontend/package.json.md5

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c7def1fd00f9e56962c1e97fded82dfe
1+
26eee23757583a4a85879d0bf6fd73ff

go.mod

+14-13
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,37 @@ go 1.18
44

55
require (
66
github.com/atotto/clipboard v0.1.4
7-
github.com/gin-gonic/gin v1.9.0
7+
github.com/gin-gonic/gin v1.9.1
88
github.com/otiai10/copy v1.11.0
9-
github.com/wailsapp/wails/v2 v2.4.1
9+
github.com/wailsapp/wails/v2 v2.5.1
1010
)
1111

1212
require (
1313
github.com/bep/debounce v1.2.1 // indirect
14-
github.com/bytedance/sonic v1.8.8 // indirect
14+
github.com/bytedance/sonic v1.9.1 // indirect
1515
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
16+
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
1617
github.com/gin-contrib/sse v0.1.0 // indirect
1718
github.com/go-ole/go-ole v1.2.6 // indirect
1819
github.com/go-playground/locales v0.14.1 // indirect
1920
github.com/go-playground/universal-translator v0.18.1 // indirect
20-
github.com/go-playground/validator/v10 v10.13.0 // indirect
21+
github.com/go-playground/validator/v10 v10.14.1 // indirect
2122
github.com/goccy/go-json v0.10.2 // indirect
2223
github.com/google/uuid v1.3.0 // indirect
2324
github.com/jchv/go-winloader v0.0.0-20210711035445-715c2860da7e // indirect
2425
github.com/json-iterator/go v1.1.12 // indirect
25-
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
26+
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
2627
github.com/labstack/echo/v4 v4.10.2 // indirect
2728
github.com/labstack/gommon v0.4.0 // indirect
28-
github.com/leaanthony/go-ansi-parser v1.6.0 // indirect
29+
github.com/leaanthony/go-ansi-parser v1.6.1 // indirect
2930
github.com/leaanthony/gosod v1.0.3 // indirect
3031
github.com/leaanthony/slicer v1.6.0 // indirect
3132
github.com/leodido/go-urn v1.2.4 // indirect
3233
github.com/mattn/go-colorable v0.1.13 // indirect
33-
github.com/mattn/go-isatty v0.0.18 // indirect
34+
github.com/mattn/go-isatty v0.0.19 // indirect
3435
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3536
github.com/modern-go/reflect2 v1.0.2 // indirect
36-
github.com/pelletier/go-toml/v2 v2.0.7 // indirect
37+
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
3738
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
3839
github.com/pkg/errors v0.9.1 // indirect
3940
github.com/rivo/uniseg v0.4.4 // indirect
@@ -45,11 +46,11 @@ require (
4546
github.com/valyala/fasttemplate v1.2.2 // indirect
4647
github.com/wailsapp/mimetype v1.4.1 // indirect
4748
golang.org/x/arch v0.3.0 // indirect
48-
golang.org/x/crypto v0.9.0 // indirect
49-
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea // indirect
50-
golang.org/x/net v0.10.0 // indirect
51-
golang.org/x/sys v0.8.0 // indirect
52-
golang.org/x/text v0.9.0 // indirect
49+
golang.org/x/crypto v0.10.0 // indirect
50+
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
51+
golang.org/x/net v0.11.0 // indirect
52+
golang.org/x/sys v0.9.0 // indirect
53+
golang.org/x/text v0.10.0 // indirect
5354
google.golang.org/protobuf v1.30.0 // indirect
5455
gopkg.in/yaml.v3 v3.0.1 // indirect
5556
)

0 commit comments

Comments
 (0)