Skip to content

Commit 0661eda

Browse files
committed
deps: update fyne to v2.5.4
1 parent 899bccf commit 0661eda

File tree

3 files changed

+56
-721
lines changed

3 files changed

+56
-721
lines changed

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## 0.25.0 - Unreleased
44

55
- all: update Go toolchain to 1.19
6-
- all: update Fyne to v2.5.3
6+
- all: update Fyne to v2.5.4
77
- all: update age to v1.2.1
88
- ui: fix a possible nil pointer on loginURL when upgrading paw from previous versions
99
- systray: enable only if the StatusNotifierWatcher is available on the supported unix system
@@ -13,12 +13,12 @@
1313
to fix android build by @serialt via #14
1414

1515
- deps update:
16-
- fyne.io/fyne v2.5.3
16+
- fyne.io/fyne v2.5.4
1717
- filippo.io/age v1.2.1
1818
- golang.org/x/crypto v0.32.0
19-
- golang.org/x/image v0.23.0
19+
- golang.org/x/image v0.24.0
2020
- golang.org/x/net v0.34.0
21-
- golang.org/x/sync v0.10.0
21+
- golang.org/x/sync v0.11.0
2222
- golang.org/x/term v0.28.0
2323

2424
## 0.24.0 - 02 May 2024

go.mod

+17-16
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ go 1.19
44

55
require (
66
filippo.io/age v1.2.1
7-
fyne.io/fyne/v2 v2.5.3
8-
github.com/fyne-io/image v0.0.0-20220602074514-4956b0afb3d2
7+
fyne.io/fyne/v2 v2.5.4
8+
github.com/fyne-io/image v0.1.0
99
github.com/godbus/dbus/v5 v5.1.0
10-
github.com/stretchr/testify v1.8.4
10+
github.com/stretchr/testify v1.10.0
1111
golang.design/x/clipboard v0.7.0
1212
golang.org/x/crypto v0.32.0
13-
golang.org/x/image v0.23.0
13+
golang.org/x/image v0.24.0
1414
golang.org/x/net v0.34.0
15-
golang.org/x/sync v0.10.0
15+
golang.org/x/sync v0.11.0
1616
golang.org/x/term v0.28.0
1717
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
1818
)
@@ -27,23 +27,24 @@ require (
2727
github.com/davecgh/go-spew v1.1.1 // indirect
2828
github.com/fredbi/uri v1.1.0 // indirect
2929
github.com/fsnotify/fsnotify v1.7.0 // indirect
30-
github.com/fyne-io/gl-js v0.0.0-20220119005834-d2da28d9ccfe // indirect
31-
github.com/fyne-io/glfw-js v0.0.0-20241126112943-313d8a0fe1d0 // indirect
32-
github.com/go-gl/gl v0.0.0-20211210172815-726fda9656d6 // indirect
30+
github.com/fyne-io/gl-js v0.1.0 // indirect
31+
github.com/fyne-io/glfw-js v0.1.0 // indirect
32+
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71 // indirect
3333
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20240506104042-037f3cc74f2a // indirect
3434
github.com/go-text/render v0.2.0 // indirect
35-
github.com/go-text/typesetting v0.2.0 // indirect
36-
github.com/gopherjs/gopherjs v1.17.2 // indirect
37-
github.com/jeandeaual/go-locale v0.0.0-20240223122105-ce5225dcaa49 // indirect
38-
github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e // indirect
39-
github.com/nicksnyder/go-i18n/v2 v2.4.0 // indirect
35+
github.com/go-text/typesetting v0.2.1 // indirect
36+
github.com/jeandeaual/go-locale v0.0.0-20241217141322-fcc2cadd6f08 // indirect
37+
github.com/jsummers/gobmp v0.0.0-20230614200233-a9de23ed2e25 // indirect
38+
github.com/kr/text v0.2.0 // indirect
39+
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
40+
github.com/nicksnyder/go-i18n/v2 v2.5.1 // indirect
4041
github.com/pmezard/go-difflib v1.0.0 // indirect
4142
github.com/rymdport/portal v0.3.0 // indirect
4243
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c // indirect
4344
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef // indirect
44-
github.com/yuin/goldmark v1.7.1 // indirect
45+
github.com/yuin/goldmark v1.7.8 // indirect
4546
golang.org/x/mobile v0.0.0-20231127183840-76ac6878050a // indirect
46-
golang.org/x/sys v0.29.0 // indirect
47-
golang.org/x/text v0.21.0 // indirect
47+
golang.org/x/sys v0.30.0 // indirect
48+
golang.org/x/text v0.22.0 // indirect
4849
gopkg.in/yaml.v3 v3.0.1 // indirect
4950
)

0 commit comments

Comments
 (0)