diff options
author | JakobDev <jakobdev@gmx.de> | 2023-04-21 19:15:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 13:15:49 -0400 |
commit | 65fe0fb22cfb264f0b756065d0c3ce7a17d7e55b (patch) | |
tree | 82e4c8f99fa20be600709e1b01960533697d1862 /go.mod | |
parent | 13d1d2764cc1f813f7fc991ba988c1e700fd0f44 (diff) | |
download | gitea-65fe0fb22cfb264f0b756065d0c3ce7a17d7e55b.tar.gz gitea-65fe0fb22cfb264f0b756065d0c3ce7a17d7e55b.zip |
Allow `webp` images as avatars (#24248)
Users can now upload `webp` images.
Browsers supporting webp images then display this as the avatar of this
user (every major browser except IE).
---------
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -104,10 +104,11 @@ require ( github.com/yuin/goldmark-highlighting/v2 v2.0.0-20220924101305-151362477c87 github.com/yuin/goldmark-meta v1.1.0 golang.org/x/crypto v0.7.0 + golang.org/x/image v0.7.0 golang.org/x/net v0.8.0 golang.org/x/oauth2 v0.6.0 golang.org/x/sys v0.6.0 - golang.org/x/text v0.8.0 + golang.org/x/text v0.9.0 golang.org/x/tools v0.6.0 google.golang.org/grpc v1.53.0 google.golang.org/protobuf v1.28.1 |