mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 14:06:09 +05:00
* video playback support with play button in details view and torrent card * added translation keys and minor bug fix * removed unused "play" string * updated required go dependency * rearranged go dependencies to remove the warnings * reverted the build related changes * Added Playback speed, PIP and Dowload support * added translation keys for all languages and updated getVideoCaption function logic --------- Co-authored-by: nikk <1551446+tsynik@users.noreply.github.com>
107 lines
4.2 KiB
Modula-2
107 lines
4.2 KiB
Modula-2
module server
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.23.5
|
|
|
|
replace (
|
|
github.com/anacrolix/torrent v1.58.1 => github.com/tsynik/torrent v1.2.22
|
|
github.com/anacrolix/upnp v0.1.4 => github.com/tsynik/upnp v0.1.5
|
|
)
|
|
|
|
require (
|
|
github.com/agnivade/levenshtein v1.2.1
|
|
github.com/alexflint/go-arg v1.5.0
|
|
github.com/anacrolix/dms v1.7.1
|
|
github.com/anacrolix/log v0.16.0
|
|
github.com/anacrolix/missinggo/v2 v2.8.0
|
|
github.com/anacrolix/publicip v0.3.1
|
|
github.com/kljensen/snowball v0.9.0
|
|
github.com/anacrolix/torrent v1.58.1
|
|
github.com/dustin/go-humanize v1.0.1
|
|
github.com/gin-contrib/cors v1.7.5
|
|
github.com/gin-contrib/location v1.0.3
|
|
github.com/gin-gonic/gin v1.10.1
|
|
github.com/kljensen/snowball v0.10.0
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/swaggo/files v1.0.1
|
|
github.com/swaggo/gin-swagger v1.6.0
|
|
github.com/swaggo/swag v1.16.4
|
|
github.com/wlynxg/anet v0.0.5
|
|
go.etcd.io/bbolt v1.4.0
|
|
golang.org/x/exp v0.0.0-20250606033433-dcc06ee1d476
|
|
golang.org/x/image v0.28.0
|
|
golang.org/x/time v0.12.0
|
|
gopkg.in/telebot.v4 v4.0.0-beta.5
|
|
gopkg.in/vansante/go-ffprobe.v2 v2.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
google.golang.org/protobuf v1.34.1 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
github.com/RoaringBitmap/roaring v1.9.4 // indirect
|
|
github.com/alecthomas/atomic v0.1.0-alpha2 // indirect
|
|
github.com/alexflint/go-scalar v1.2.0 // indirect
|
|
github.com/anacrolix/chansync v0.6.0 // indirect
|
|
github.com/anacrolix/dht/v2 v2.22.1 // indirect
|
|
github.com/anacrolix/envpprof v1.4.0 // indirect
|
|
github.com/anacrolix/ffprobe v1.1.0 // indirect
|
|
github.com/anacrolix/generics v0.0.3 // indirect
|
|
github.com/anacrolix/missinggo v1.3.0 // indirect
|
|
github.com/anacrolix/missinggo/perf v1.0.0 // indirect
|
|
github.com/anacrolix/multiless v0.4.0 // indirect
|
|
github.com/anacrolix/stm v0.5.0 // indirect
|
|
github.com/anacrolix/sync v0.5.4 // indirect
|
|
github.com/anacrolix/upnp v0.1.4 // indirect
|
|
github.com/anacrolix/utp v0.2.0 // indirect
|
|
github.com/benbjohnson/immutable v0.4.3 // indirect
|
|
github.com/bits-and-blooms/bitset v1.22.0 // indirect
|
|
github.com/bradfitz/iter v0.0.0-20191230175014-e8f45d346db8 // indirect
|
|
github.com/bytedance/sonic v1.13.3 // indirect
|
|
github.com/bytedance/sonic/loader v0.2.4 // indirect
|
|
github.com/cloudwego/base64x v0.1.5 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/edsrzf/mmap-go v1.2.0 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
|
|
github.com/gin-contrib/sse v1.1.0 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.1 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/go-openapi/spec v0.21.0 // indirect
|
|
github.com/go-openapi/swag v0.23.1 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/go-playground/validator/v10 v10.26.0 // indirect
|
|
github.com/goccy/go-json v0.10.5 // indirect
|
|
github.com/google/btree v1.1.3 // indirect
|
|
github.com/huandu/xstrings v1.5.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/mailru/easyjson v0.9.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/mschoch/smat v0.2.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
|
|
github.com/rogpeppe/go-internal v1.13.1 // indirect
|
|
github.com/rs/dnscache v0.0.0-20230804202142-fc85eb664529 // indirect
|
|
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
|
github.com/ugorji/go/codec v1.3.0 // indirect
|
|
golang.org/x/arch v0.18.0 // indirect
|
|
golang.org/x/crypto v0.39.0 // indirect
|
|
golang.org/x/net v0.41.0 // indirect
|
|
golang.org/x/sync v0.15.0 // indirect
|
|
golang.org/x/sys v0.33.0 // indirect
|
|
golang.org/x/text v0.26.0 // indirect
|
|
golang.org/x/tools v0.34.0 // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|