Compare commits
8 Commits
5.0.0-r1-l
...
5.0.1-r0-l
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
56b84f7735 | ||
|
|
4535a9f1d8 | ||
|
|
e10e37f0a7 | ||
|
|
30ccc1c2a0 | ||
|
|
938bb587d7 | ||
|
|
67e8286cfe | ||
|
|
24d1630688 | ||
|
|
a13e4722f7 |
4
.github/CONTRIBUTING.md
vendored
4
.github/CONTRIBUTING.md
vendored
@@ -105,10 +105,10 @@ docker build \
|
|||||||
-t linuxserver/qbittorrent:latest .
|
-t linuxserver/qbittorrent:latest .
|
||||||
```
|
```
|
||||||
|
|
||||||
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
|
The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
|
||||||
```
|
```
|
||||||
|
|
||||||
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
||||||
|
|||||||
@@ -70,13 +70,14 @@ jobs:
|
|||||||
if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then
|
if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then
|
||||||
if [[ -n "${triggered_branches}" ]]; then
|
if [[ -n "${triggered_branches}" ]]; then
|
||||||
NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n"
|
NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n"
|
||||||
|
NOTIFY_BUILD_URL="**Build URL:** https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-qbittorrent/activity/ \n"
|
||||||
|
echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****"
|
||||||
fi
|
fi
|
||||||
if [[ -n "${skipped_branches}" ]]; then
|
if [[ -n "${skipped_branches}" ]]; then
|
||||||
NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n"
|
NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n"
|
||||||
fi
|
fi
|
||||||
echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****"
|
|
||||||
echo "**** Notifying Discord ****"
|
echo "**** Notifying Discord ****"
|
||||||
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
|
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
|
||||||
"description": "**Package Check Build(s) Triggered for qbittorrent** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-qbittorrent/activity/"' \n"}],
|
"description": "**Package Check Build(s) for qbittorrent** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}],
|
||||||
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
|
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
fi
|
fi
|
||||||
|
|||||||
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@@ -888,7 +888,7 @@ pipeline {
|
|||||||
echo '{"tag_name":"'${META_TAG}'",\
|
echo '{"tag_name":"'${META_TAG}'",\
|
||||||
"target_commitish": "master",\
|
"target_commitish": "master",\
|
||||||
"name": "'${META_TAG}'",\
|
"name": "'${META_TAG}'",\
|
||||||
"body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Repo Changes:**\\n\\n' > start
|
"body": "**CI Report:**\\n\\n'${CI_URL:-N/A}'\\n\\n**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Repo Changes:**\\n\\n' > start
|
||||||
printf '","draft": false,"prerelease": false}' >> releasebody.json
|
printf '","draft": false,"prerelease": false}' >> releasebody.json
|
||||||
paste -d'\\0' start releasebody.json > releasebody.json.done
|
paste -d'\\0' start releasebody.json > releasebody.json.done
|
||||||
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
|
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
|
||||||
|
|||||||
@@ -86,6 +86,7 @@ A bittorrent client can be an active or a passive node. Running your client as a
|
|||||||
|
|
||||||
Similarly to the WEBUI_PORT, to set the port to 6887 you need to pass -p 6887:6887, -p 6887:6887/udp and -e TORRENTING_PORT=6887 arguments to Docker.
|
Similarly to the WEBUI_PORT, to set the port to 6887 you need to pass -p 6887:6887, -p 6887:6887/udp and -e TORRENTING_PORT=6887 arguments to Docker.
|
||||||
|
|
||||||
|
|
||||||
## Read-Only Operation
|
## Read-Only Operation
|
||||||
|
|
||||||
This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/).
|
This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/).
|
||||||
@@ -307,10 +308,10 @@ docker build \
|
|||||||
-t lscr.io/linuxserver/qbittorrent:latest .
|
-t lscr.io/linuxserver/qbittorrent:latest .
|
||||||
```
|
```
|
||||||
|
|
||||||
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
|
The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
|
||||||
```
|
```
|
||||||
|
|
||||||
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
||||||
|
|||||||
@@ -6,174 +6,174 @@ Bouncy Castle for .NET (netstandard2.0) 1.8.8.2
|
|||||||
CommandLineUtils 2.4.4+3c2a4909757a51602dcca9b961d577511b85fd31.3c2a4909757a51602dcca9b961d577511b85fd31 dotnet
|
CommandLineUtils 2.4.4+3c2a4909757a51602dcca9b961d577511b85fd31.3c2a4909757a51602dcca9b961d577511b85fd31 dotnet
|
||||||
CsvHelper 12.1.2 dotnet
|
CsvHelper 12.1.2 dotnet
|
||||||
Json.NET 13.0.3.27908 dotnet
|
Json.NET 13.0.3.27908 dotnet
|
||||||
Microsoft.CSharp 6.0.3024.21525 dotnet
|
Microsoft.CSharp 6.0.3524.45918 dotnet
|
||||||
Microsoft.VisualBasic 6.0.3024.21525 dotnet
|
Microsoft.VisualBasic 6.0.3524.45918 dotnet
|
||||||
Microsoft.VisualBasic.Core 11.100.3024.21525 dotnet
|
Microsoft.VisualBasic.Core 11.100.3524.45918 dotnet
|
||||||
Microsoft.Win32.Primitives 6.0.3024.21525 dotnet
|
Microsoft.Win32.Primitives 6.0.3524.45918 dotnet
|
||||||
Microsoft.Win32.Registry 6.0.3024.21525 dotnet
|
Microsoft.Win32.Registry 6.0.3524.45918 dotnet
|
||||||
Mono.Posix.NETStandard 1.0.0.0 dotnet
|
Mono.Posix.NETStandard 1.0.0.0 dotnet
|
||||||
NJsonSchema 9.14.1.0 dotnet
|
NJsonSchema 9.14.1.0 dotnet
|
||||||
Portable.Xaml.dll 0.18.0.0 dotnet
|
Portable.Xaml.dll 0.18.0.0 dotnet
|
||||||
QBittorrent.Client 1.9.23349.1 dotnet
|
QBittorrent.Client 1.9.24285.1 dotnet
|
||||||
System 6.0.3024.21525 dotnet
|
System 6.0.3524.45918 dotnet
|
||||||
System.AppContext 6.0.3024.21525 dotnet
|
System.AppContext 6.0.3524.45918 dotnet
|
||||||
System.Buffers 6.0.3024.21525 dotnet
|
System.Buffers 6.0.3524.45918 dotnet
|
||||||
System.Collections 6.0.3024.21525 dotnet
|
System.Collections 6.0.3524.45918 dotnet
|
||||||
System.Collections.Concurrent 6.0.3024.21525 dotnet
|
System.Collections.Concurrent 6.0.3524.45918 dotnet
|
||||||
System.Collections.Immutable 6.0.3024.21525 dotnet
|
System.Collections.Immutable 6.0.3524.45918 dotnet
|
||||||
System.Collections.NonGeneric 6.0.3024.21525 dotnet
|
System.Collections.NonGeneric 6.0.3524.45918 dotnet
|
||||||
System.Collections.Specialized 6.0.3024.21525 dotnet
|
System.Collections.Specialized 6.0.3524.45918 dotnet
|
||||||
System.ComponentModel 6.0.3024.21525 dotnet
|
System.ComponentModel 6.0.3524.45918 dotnet
|
||||||
System.ComponentModel.Annotations 6.0.3024.21525 dotnet
|
System.ComponentModel.Annotations 6.0.3524.45918 dotnet
|
||||||
System.ComponentModel.DataAnnotations 6.0.3024.21525 dotnet
|
System.ComponentModel.DataAnnotations 6.0.3524.45918 dotnet
|
||||||
System.ComponentModel.EventBasedAsync 6.0.3024.21525 dotnet
|
System.ComponentModel.EventBasedAsync 6.0.3524.45918 dotnet
|
||||||
System.ComponentModel.Primitives 6.0.3024.21525 dotnet
|
System.ComponentModel.Primitives 6.0.3524.45918 dotnet
|
||||||
System.ComponentModel.TypeConverter 6.0.3024.21525 dotnet
|
System.ComponentModel.TypeConverter 6.0.3524.45918 dotnet
|
||||||
System.Configuration 6.0.3024.21525 dotnet
|
System.Configuration 6.0.3524.45918 dotnet
|
||||||
System.Console 6.0.3024.21525 dotnet
|
System.Console 6.0.3524.45918 dotnet
|
||||||
System.Core 6.0.3024.21525 dotnet
|
System.Core 6.0.3524.45918 dotnet
|
||||||
System.Data 6.0.3024.21525 dotnet
|
System.Data 6.0.3524.45918 dotnet
|
||||||
System.Data.Common 6.0.3024.21525 dotnet
|
System.Data.Common 6.0.3524.45918 dotnet
|
||||||
System.Data.DataSetExtensions 6.0.3024.21525 dotnet
|
System.Data.DataSetExtensions 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.Contracts 6.0.3024.21525 dotnet
|
System.Diagnostics.Contracts 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.Debug 6.0.3024.21525 dotnet
|
System.Diagnostics.Debug 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.DiagnosticSource 6.0.3024.21525 dotnet
|
System.Diagnostics.DiagnosticSource 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.FileVersionInfo 6.0.3024.21525 dotnet
|
System.Diagnostics.FileVersionInfo 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.Process 6.0.3024.21525 dotnet
|
System.Diagnostics.Process 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.StackTrace 6.0.3024.21525 dotnet
|
System.Diagnostics.StackTrace 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.TextWriterTraceListener 6.0.3024.21525 dotnet
|
System.Diagnostics.TextWriterTraceListener 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.Tools 6.0.3024.21525 dotnet
|
System.Diagnostics.Tools 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.TraceSource 6.0.3024.21525 dotnet
|
System.Diagnostics.TraceSource 6.0.3524.45918 dotnet
|
||||||
System.Diagnostics.Tracing 6.0.3024.21525 dotnet
|
System.Diagnostics.Tracing 6.0.3524.45918 dotnet
|
||||||
System.Drawing 6.0.3024.21525 dotnet
|
System.Drawing 6.0.3524.45918 dotnet
|
||||||
System.Drawing.Primitives 6.0.3024.21525 dotnet
|
System.Drawing.Primitives 6.0.3524.45918 dotnet
|
||||||
System.Dynamic.Runtime 6.0.3024.21525 dotnet
|
System.Dynamic.Runtime 6.0.3524.45918 dotnet
|
||||||
System.Formats.Asn1 6.0.3024.21525 dotnet
|
System.Formats.Asn1 6.0.3524.45918 dotnet
|
||||||
System.Globalization 6.0.3024.21525 dotnet
|
System.Globalization 6.0.3524.45918 dotnet
|
||||||
System.Globalization.Calendars 6.0.3024.21525 dotnet
|
System.Globalization.Calendars 6.0.3524.45918 dotnet
|
||||||
System.Globalization.Extensions 6.0.3024.21525 dotnet
|
System.Globalization.Extensions 6.0.3524.45918 dotnet
|
||||||
System.IO 6.0.3024.21525 dotnet
|
System.IO 6.0.3524.45918 dotnet
|
||||||
System.IO.Compression 6.0.3024.21525 dotnet
|
System.IO.Compression 6.0.3524.45918 dotnet
|
||||||
System.IO.Compression.Brotli 6.0.3024.21525 dotnet
|
System.IO.Compression.Brotli 6.0.3524.45918 dotnet
|
||||||
System.IO.Compression.FileSystem 6.0.3024.21525 dotnet
|
System.IO.Compression.FileSystem 6.0.3524.45918 dotnet
|
||||||
System.IO.Compression.ZipFile 6.0.3024.21525 dotnet
|
System.IO.Compression.ZipFile 6.0.3524.45918 dotnet
|
||||||
System.IO.FileSystem 6.0.3024.21525 dotnet
|
System.IO.FileSystem 6.0.3524.45918 dotnet
|
||||||
System.IO.FileSystem.AccessControl 6.0.3024.21525 dotnet
|
System.IO.FileSystem.AccessControl 6.0.3524.45918 dotnet
|
||||||
System.IO.FileSystem.DriveInfo 6.0.3024.21525 dotnet
|
System.IO.FileSystem.DriveInfo 6.0.3524.45918 dotnet
|
||||||
System.IO.FileSystem.Primitives 6.0.3024.21525 dotnet
|
System.IO.FileSystem.Primitives 6.0.3524.45918 dotnet
|
||||||
System.IO.FileSystem.Watcher 6.0.3024.21525 dotnet
|
System.IO.FileSystem.Watcher 6.0.3524.45918 dotnet
|
||||||
System.IO.IsolatedStorage 6.0.3024.21525 dotnet
|
System.IO.IsolatedStorage 6.0.3524.45918 dotnet
|
||||||
System.IO.MemoryMappedFiles 6.0.3024.21525 dotnet
|
System.IO.MemoryMappedFiles 6.0.3524.45918 dotnet
|
||||||
System.IO.Pipes 6.0.3024.21525 dotnet
|
System.IO.Pipes 6.0.3524.45918 dotnet
|
||||||
System.IO.Pipes.AccessControl 6.0.3024.21525 dotnet
|
System.IO.Pipes.AccessControl 6.0.3524.45918 dotnet
|
||||||
System.IO.UnmanagedMemoryStream 6.0.3024.21525 dotnet
|
System.IO.UnmanagedMemoryStream 6.0.3524.45918 dotnet
|
||||||
System.Linq 6.0.3024.21525 dotnet
|
System.Linq 6.0.3524.45918 dotnet
|
||||||
System.Linq.Expressions 6.0.3024.21525 dotnet
|
System.Linq.Expressions 6.0.3524.45918 dotnet
|
||||||
System.Linq.Parallel 6.0.3024.21525 dotnet
|
System.Linq.Parallel 6.0.3524.45918 dotnet
|
||||||
System.Linq.Queryable 6.0.3024.21525 dotnet
|
System.Linq.Queryable 6.0.3524.45918 dotnet
|
||||||
System.Memory 6.0.3024.21525 dotnet
|
System.Memory 6.0.3524.45918 dotnet
|
||||||
System.Net 6.0.3024.21525 dotnet
|
System.Net 6.0.3524.45918 dotnet
|
||||||
System.Net.Http 6.0.3024.21525 dotnet
|
System.Net.Http 6.0.3524.45918 dotnet
|
||||||
System.Net.Http.Json 6.0.3024.21525 dotnet
|
System.Net.Http.Json 6.0.3524.45918 dotnet
|
||||||
System.Net.HttpListener 6.0.3024.21525 dotnet
|
System.Net.HttpListener 6.0.3524.45918 dotnet
|
||||||
System.Net.IPNetwork 2.5.235 dotnet
|
System.Net.IPNetwork 2.5.235 dotnet
|
||||||
System.Net.Mail 6.0.3024.21525 dotnet
|
System.Net.Mail 6.0.3524.45918 dotnet
|
||||||
System.Net.NameResolution 6.0.3024.21525 dotnet
|
System.Net.NameResolution 6.0.3524.45918 dotnet
|
||||||
System.Net.NetworkInformation 6.0.3024.21525 dotnet
|
System.Net.NetworkInformation 6.0.3524.45918 dotnet
|
||||||
System.Net.Ping 6.0.3024.21525 dotnet
|
System.Net.Ping 6.0.3524.45918 dotnet
|
||||||
System.Net.Primitives 6.0.3024.21525 dotnet
|
System.Net.Primitives 6.0.3524.45918 dotnet
|
||||||
System.Net.Quic 6.0.3024.21525 dotnet
|
System.Net.Quic 6.0.3524.45918 dotnet
|
||||||
System.Net.Requests 6.0.3024.21525 dotnet
|
System.Net.Requests 6.0.3524.45918 dotnet
|
||||||
System.Net.Security 6.0.3024.21525 dotnet
|
System.Net.Security 6.0.3524.45918 dotnet
|
||||||
System.Net.ServicePoint 6.0.3024.21525 dotnet
|
System.Net.ServicePoint 6.0.3524.45918 dotnet
|
||||||
System.Net.Sockets 6.0.3024.21525 dotnet
|
System.Net.Sockets 6.0.3524.45918 dotnet
|
||||||
System.Net.WebClient 6.0.3024.21525 dotnet
|
System.Net.WebClient 6.0.3524.45918 dotnet
|
||||||
System.Net.WebHeaderCollection 6.0.3024.21525 dotnet
|
System.Net.WebHeaderCollection 6.0.3524.45918 dotnet
|
||||||
System.Net.WebProxy 6.0.3024.21525 dotnet
|
System.Net.WebProxy 6.0.3524.45918 dotnet
|
||||||
System.Net.WebSockets 6.0.3024.21525 dotnet
|
System.Net.WebSockets 6.0.3524.45918 dotnet
|
||||||
System.Net.WebSockets.Client 6.0.3024.21525 dotnet
|
System.Net.WebSockets.Client 6.0.3524.45918 dotnet
|
||||||
System.Numerics 6.0.3024.21525 dotnet
|
System.Numerics 6.0.3524.45918 dotnet
|
||||||
System.Numerics.Vectors 6.0.3024.21525 dotnet
|
System.Numerics.Vectors 6.0.3524.45918 dotnet
|
||||||
System.ObjectModel 6.0.3024.21525 dotnet
|
System.ObjectModel 6.0.3524.45918 dotnet
|
||||||
System.Private.CoreLib 6.0.3024.21525 dotnet
|
System.Private.CoreLib 6.0.3524.45918 dotnet
|
||||||
System.Private.DataContractSerialization 6.0.3024.21525 dotnet
|
System.Private.DataContractSerialization 6.0.3524.45918 dotnet
|
||||||
System.Private.Uri 6.0.3024.21525 dotnet
|
System.Private.Uri 6.0.3524.45918 dotnet
|
||||||
System.Private.Xml 6.0.3024.21525 dotnet
|
System.Private.Xml 6.0.3524.45918 dotnet
|
||||||
System.Private.Xml.Linq 6.0.3024.21525 dotnet
|
System.Private.Xml.Linq 6.0.3524.45918 dotnet
|
||||||
System.Reflection 6.0.3024.21525 dotnet
|
System.Reflection 6.0.3524.45918 dotnet
|
||||||
System.Reflection.DispatchProxy 6.0.3024.21525 dotnet
|
System.Reflection.DispatchProxy 6.0.3524.45918 dotnet
|
||||||
System.Reflection.Emit 6.0.3024.21525 dotnet
|
System.Reflection.Emit 6.0.3524.45918 dotnet
|
||||||
System.Reflection.Emit.ILGeneration 6.0.3024.21525 dotnet
|
System.Reflection.Emit.ILGeneration 6.0.3524.45918 dotnet
|
||||||
System.Reflection.Emit.Lightweight 6.0.3024.21525 dotnet
|
System.Reflection.Emit.Lightweight 6.0.3524.45918 dotnet
|
||||||
System.Reflection.Extensions 6.0.3024.21525 dotnet
|
System.Reflection.Extensions 6.0.3524.45918 dotnet
|
||||||
System.Reflection.Metadata 6.0.3024.21525 dotnet
|
System.Reflection.Metadata 6.0.3524.45918 dotnet
|
||||||
System.Reflection.Primitives 6.0.3024.21525 dotnet
|
System.Reflection.Primitives 6.0.3524.45918 dotnet
|
||||||
System.Reflection.TypeExtensions 6.0.3024.21525 dotnet
|
System.Reflection.TypeExtensions 6.0.3524.45918 dotnet
|
||||||
System.Resources.Reader 6.0.3024.21525 dotnet
|
System.Resources.Reader 6.0.3524.45918 dotnet
|
||||||
System.Resources.ResourceManager 6.0.3024.21525 dotnet
|
System.Resources.ResourceManager 6.0.3524.45918 dotnet
|
||||||
System.Resources.Writer 6.0.3024.21525 dotnet
|
System.Resources.Writer 6.0.3524.45918 dotnet
|
||||||
System.Runtime 6.0.3024.21525 dotnet
|
System.Runtime 6.0.3524.45918 dotnet
|
||||||
System.Runtime.CompilerServices.VisualC 6.0.3024.21525 dotnet
|
System.Runtime.CompilerServices.VisualC 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Extensions 6.0.3024.21525 dotnet
|
System.Runtime.Extensions 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Handles 6.0.3024.21525 dotnet
|
System.Runtime.Handles 6.0.3524.45918 dotnet
|
||||||
System.Runtime.InteropServices 6.0.3024.21525 dotnet
|
System.Runtime.InteropServices 6.0.3524.45918 dotnet
|
||||||
System.Runtime.InteropServices.RuntimeInformation 6.0.3024.21525 dotnet
|
System.Runtime.InteropServices.RuntimeInformation 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Intrinsics 6.0.3024.21525 dotnet
|
System.Runtime.Intrinsics 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Loader 6.0.3024.21525 dotnet
|
System.Runtime.Loader 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Numerics 6.0.3024.21525 dotnet
|
System.Runtime.Numerics 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Serialization 6.0.3024.21525 dotnet
|
System.Runtime.Serialization 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Serialization.Formatters 6.0.3024.21525 dotnet
|
System.Runtime.Serialization.Formatters 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Serialization.Json 6.0.3024.21525 dotnet
|
System.Runtime.Serialization.Json 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Serialization.Primitives 6.0.3024.21525 dotnet
|
System.Runtime.Serialization.Primitives 6.0.3524.45918 dotnet
|
||||||
System.Runtime.Serialization.Xml 6.0.3024.21525 dotnet
|
System.Runtime.Serialization.Xml 6.0.3524.45918 dotnet
|
||||||
System.Security 6.0.3024.21525 dotnet
|
System.Security 6.0.3524.45918 dotnet
|
||||||
System.Security.AccessControl 6.0.3024.21525 dotnet
|
System.Security.AccessControl 6.0.3524.45918 dotnet
|
||||||
System.Security.Claims 6.0.3024.21525 dotnet
|
System.Security.Claims 6.0.3524.45918 dotnet
|
||||||
System.Security.Cryptography.Algorithms 6.0.3024.21525 dotnet
|
System.Security.Cryptography.Algorithms 6.0.3524.45918 dotnet
|
||||||
System.Security.Cryptography.Cng 6.0.3024.21525 dotnet
|
System.Security.Cryptography.Cng 6.0.3524.45918 dotnet
|
||||||
System.Security.Cryptography.Csp 6.0.3024.21525 dotnet
|
System.Security.Cryptography.Csp 6.0.3524.45918 dotnet
|
||||||
System.Security.Cryptography.Encoding 6.0.3024.21525 dotnet
|
System.Security.Cryptography.Encoding 6.0.3524.45918 dotnet
|
||||||
System.Security.Cryptography.OpenSsl 6.0.3024.21525 dotnet
|
System.Security.Cryptography.OpenSsl 6.0.3524.45918 dotnet
|
||||||
System.Security.Cryptography.Primitives 6.0.3024.21525 dotnet
|
System.Security.Cryptography.Primitives 6.0.3524.45918 dotnet
|
||||||
System.Security.Cryptography.ProtectedData 5.0.20.51904 dotnet
|
System.Security.Cryptography.ProtectedData 5.0.20.51904 dotnet
|
||||||
System.Security.Cryptography.X509Certificates 6.0.3024.21525 dotnet
|
System.Security.Cryptography.X509Certificates 6.0.3524.45918 dotnet
|
||||||
System.Security.Principal 6.0.3024.21525 dotnet
|
System.Security.Principal 6.0.3524.45918 dotnet
|
||||||
System.Security.Principal.Windows 6.0.3024.21525 dotnet
|
System.Security.Principal.Windows 6.0.3524.45918 dotnet
|
||||||
System.Security.SecureString 6.0.3024.21525 dotnet
|
System.Security.SecureString 6.0.3524.45918 dotnet
|
||||||
System.ServiceModel.Web 6.0.3024.21525 dotnet
|
System.ServiceModel.Web 6.0.3524.45918 dotnet
|
||||||
System.ServiceProcess 6.0.3024.21525 dotnet
|
System.ServiceProcess 6.0.3524.45918 dotnet
|
||||||
System.Text.Encoding 6.0.3024.21525 dotnet
|
System.Text.Encoding 6.0.3524.45918 dotnet
|
||||||
System.Text.Encoding.CodePages 6.0.3024.21525 dotnet
|
System.Text.Encoding.CodePages 6.0.3524.45918 dotnet
|
||||||
System.Text.Encoding.Extensions 6.0.3024.21525 dotnet
|
System.Text.Encoding.Extensions 6.0.3524.45918 dotnet
|
||||||
System.Text.Encodings.Web 6.0.3024.21525 dotnet
|
System.Text.Encodings.Web 6.0.3524.45918 dotnet
|
||||||
System.Text.Json 6.0.3024.21525 dotnet
|
System.Text.Json 6.0.3524.45918 dotnet
|
||||||
System.Text.RegularExpressions 6.0.3024.21525 dotnet
|
System.Text.RegularExpressions 6.0.3524.45918 dotnet
|
||||||
System.Threading 6.0.3024.21525 dotnet
|
System.Threading 6.0.3524.45918 dotnet
|
||||||
System.Threading.Channels 6.0.3024.21525 dotnet
|
System.Threading.Channels 6.0.3524.45918 dotnet
|
||||||
System.Threading.Overlapped 6.0.3024.21525 dotnet
|
System.Threading.Overlapped 6.0.3524.45918 dotnet
|
||||||
System.Threading.Tasks 6.0.3024.21525 dotnet
|
System.Threading.Tasks 6.0.3524.45918 dotnet
|
||||||
System.Threading.Tasks.Dataflow 6.0.3024.21525 dotnet
|
System.Threading.Tasks.Dataflow 6.0.3524.45918 dotnet
|
||||||
System.Threading.Tasks.Extensions 6.0.3024.21525 dotnet
|
System.Threading.Tasks.Extensions 6.0.3524.45918 dotnet
|
||||||
System.Threading.Tasks.Parallel 6.0.3024.21525 dotnet
|
System.Threading.Tasks.Parallel 6.0.3524.45918 dotnet
|
||||||
System.Threading.Thread 6.0.3024.21525 dotnet
|
System.Threading.Thread 6.0.3524.45918 dotnet
|
||||||
System.Threading.ThreadPool 6.0.3024.21525 dotnet
|
System.Threading.ThreadPool 6.0.3524.45918 dotnet
|
||||||
System.Threading.Timer 6.0.3024.21525 dotnet
|
System.Threading.Timer 6.0.3524.45918 dotnet
|
||||||
System.Transactions 6.0.3024.21525 dotnet
|
System.Transactions 6.0.3524.45918 dotnet
|
||||||
System.Transactions.Local 6.0.3024.21525 dotnet
|
System.Transactions.Local 6.0.3524.45918 dotnet
|
||||||
System.ValueTuple 6.0.3024.21525 dotnet
|
System.ValueTuple 6.0.3524.45918 dotnet
|
||||||
System.Web 6.0.3024.21525 dotnet
|
System.Web 6.0.3524.45918 dotnet
|
||||||
System.Web.HttpUtility 6.0.3024.21525 dotnet
|
System.Web.HttpUtility 6.0.3524.45918 dotnet
|
||||||
System.Windows 6.0.3024.21525 dotnet
|
System.Windows 6.0.3524.45918 dotnet
|
||||||
System.Xml 6.0.3024.21525 dotnet
|
System.Xml 6.0.3524.45918 dotnet
|
||||||
System.Xml.Linq 6.0.3024.21525 dotnet
|
System.Xml.Linq 6.0.3524.45918 dotnet
|
||||||
System.Xml.ReaderWriter 6.0.3024.21525 dotnet
|
System.Xml.ReaderWriter 6.0.3524.45918 dotnet
|
||||||
System.Xml.Serialization 6.0.3024.21525 dotnet
|
System.Xml.Serialization 6.0.3524.45918 dotnet
|
||||||
System.Xml.XDocument 6.0.3024.21525 dotnet
|
System.Xml.XDocument 6.0.3524.45918 dotnet
|
||||||
System.Xml.XPath 6.0.3024.21525 dotnet
|
System.Xml.XPath 6.0.3524.45918 dotnet
|
||||||
System.Xml.XPath.XDocument 6.0.3024.21525 dotnet
|
System.Xml.XPath.XDocument 6.0.3524.45918 dotnet
|
||||||
System.Xml.XmlDocument 6.0.3024.21525 dotnet
|
System.Xml.XmlDocument 6.0.3524.45918 dotnet
|
||||||
System.Xml.XmlSerializer 6.0.3024.21525 dotnet
|
System.Xml.XmlSerializer 6.0.3524.45918 dotnet
|
||||||
WindowsBase 6.0.3024.21525 dotnet
|
WindowsBase 6.0.3524.45918 dotnet
|
||||||
acl-libs 2.3.2-r1 apk
|
acl-libs 2.3.2-r1 apk
|
||||||
alpine-baselayout 3.6.8-r0 apk
|
alpine-baselayout 3.6.8-r0 apk
|
||||||
alpine-baselayout-data 3.6.8-r0 apk
|
alpine-baselayout-data 3.6.8-r0 apk
|
||||||
@@ -183,7 +183,7 @@ bash 5.2.37-r0
|
|||||||
brotli-libs 1.1.0-r2 apk
|
brotli-libs 1.1.0-r2 apk
|
||||||
busybox 1.36.1-r32 apk
|
busybox 1.36.1-r32 apk
|
||||||
busybox-binsh 1.36.1-r32 apk
|
busybox-binsh 1.36.1-r32 apk
|
||||||
c-ares 1.33.1-r0 apk
|
c-ares 1.34.3-r0 apk
|
||||||
ca-certificates 20240705-r0 apk
|
ca-certificates 20240705-r0 apk
|
||||||
ca-certificates-bundle 20240705-r0 apk
|
ca-certificates-bundle 20240705-r0 apk
|
||||||
catatonit 0.2.0-r0 apk
|
catatonit 0.2.0-r0 apk
|
||||||
@@ -197,7 +197,7 @@ double-conversion 3.3.0-r0
|
|||||||
duktape 2.7.0-r1 apk
|
duktape 2.7.0-r1 apk
|
||||||
findutils 4.10.0-r0 apk
|
findutils 4.10.0-r0 apk
|
||||||
gdbm 1.24-r0 apk
|
gdbm 1.24-r0 apk
|
||||||
glib 2.82.1-r0 apk
|
glib 2.82.2-r0 apk
|
||||||
grep 3.11-r0 apk
|
grep 3.11-r0 apk
|
||||||
icu-data-en 74.2-r0 apk
|
icu-data-en 74.2-r0 apk
|
||||||
icu-libs 74.2-r0 apk
|
icu-libs 74.2-r0 apk
|
||||||
@@ -207,52 +207,52 @@ libb2 0.98.1-r3
|
|||||||
libblkid 2.40.2-r3 apk
|
libblkid 2.40.2-r3 apk
|
||||||
libbsd 0.12.2-r0 apk
|
libbsd 0.12.2-r0 apk
|
||||||
libbz2 1.0.8-r6 apk
|
libbz2 1.0.8-r6 apk
|
||||||
libcrypto3 3.3.2-r2 apk
|
libcrypto3 3.3.2-r3 apk
|
||||||
libcurl 8.9.1-r2 apk
|
libcurl 8.9.1-r2 apk
|
||||||
libeconf 0.6.3-r0 apk
|
libeconf 0.6.3-r0 apk
|
||||||
libexpat 2.6.3-r0 apk
|
libexpat 2.6.4-r0 apk
|
||||||
libffi 3.4.6-r0 apk
|
libffi 3.4.6-r0 apk
|
||||||
libgcc 14.2.0-r3 apk
|
libgcc 14.2.0-r4 apk
|
||||||
libgomp 14.2.0-r3 apk
|
libgomp 14.2.0-r4 apk
|
||||||
libidn2 2.3.7-r0 apk
|
libidn2 2.3.7-r0 apk
|
||||||
libintl 0.22.5-r0 apk
|
libintl 0.22.5-r0 apk
|
||||||
libmd 1.1.0-r0 apk
|
libmd 1.1.0-r0 apk
|
||||||
libmount 2.40.2-r3 apk
|
libmount 2.40.2-r3 apk
|
||||||
libncursesw 6.5_p20240601-r1 apk
|
libncursesw 6.5_p20241006-r2 apk
|
||||||
libpanelw 6.5_p20240601-r1 apk
|
libpanelw 6.5_p20241006-r2 apk
|
||||||
libpcre2-16 10.43-r0 apk
|
libpcre2-16 10.43-r0 apk
|
||||||
libproc2 4.0.4-r2 apk
|
libproc2 4.0.4-r2 apk
|
||||||
libproxy 0.5.9-r0 apk
|
libproxy 0.5.9-r0 apk
|
||||||
libpsl 0.21.5-r3 apk
|
libpsl 0.21.5-r3 apk
|
||||||
libssl3 3.3.2-r2 apk
|
libssl3 3.3.2-r3 apk
|
||||||
libstdc++ 14.2.0-r3 apk
|
libstdc++ 14.2.0-r4 apk
|
||||||
libtorrent-rasterbar 2.0.10-r2 apk
|
libtorrent-rasterbar 2.0.10-r2 apk
|
||||||
libunistring 1.2-r0 apk
|
libunistring 1.2-r0 apk
|
||||||
linux-pam 1.6.1-r1 apk
|
linux-pam 1.6.1-r1 apk
|
||||||
mpdecimal 4.0.0-r0 apk
|
mpdecimal 4.0.0-r0 apk
|
||||||
mscorlib 6.0.3024.21525 dotnet
|
mscorlib 6.0.3524.45918 dotnet
|
||||||
musl 1.2.5-r5 apk
|
musl 1.2.5-r5 apk
|
||||||
musl-utils 1.2.5-r3 apk
|
musl-utils 1.2.5-r3 apk
|
||||||
ncurses-terminfo-base 6.5_p20240601-r1 apk
|
ncurses-terminfo-base 6.5_p20241006-r2 apk
|
||||||
netcat-openbsd 1.226-r0 apk
|
netcat-openbsd 1.226-r0 apk
|
||||||
netstandard 6.0.3024.21525 dotnet
|
netstandard 6.0.3524.45918 dotnet
|
||||||
nghttp2-libs 1.63.0-r0 apk
|
nghttp2-libs 1.64.0-r0 apk
|
||||||
oniguruma 6.9.9-r0 apk
|
oniguruma 6.9.9-r0 apk
|
||||||
pcre2 10.43-r0 apk
|
pcre2 10.43-r0 apk
|
||||||
procps-ng 4.0.4-r2 apk
|
procps-ng 4.0.4-r2 apk
|
||||||
pyc 3.12.7-r0 apk
|
pyc 3.12.7-r1 apk
|
||||||
python3 3.12.7-r0 apk
|
python3 3.12.7-r1 apk
|
||||||
python3-pyc 3.12.7-r0 apk
|
python3-pyc 3.12.7-r1 apk
|
||||||
python3-pycache-pyc0 3.12.7-r0 apk
|
python3-pycache-pyc0 3.12.7-r1 apk
|
||||||
qbittorrent-nox 5.0.0-r1 apk
|
qbittorrent-nox 5.0.1-r0 apk
|
||||||
qbt 1.8.24199.1+738bca0d7d7585cf40629f13a59b6198eaf6fe64 dotnet
|
qbt 1.8.24285.1+c5794123bd204e629729e52e7177834c4ba3bfc2 dotnet
|
||||||
qt6-qtbase 6.7.2-r2 apk
|
qt6-qtbase 6.7.2-r2 apk
|
||||||
qt6-qtbase-sqlite 6.7.2-r2 apk
|
qt6-qtbase-sqlite 6.7.2-r2 apk
|
||||||
readline 8.2.13-r0 apk
|
readline 8.2.13-r0 apk
|
||||||
scanelf 1.3.8-r0 apk
|
scanelf 1.3.8-r0 apk
|
||||||
shadow 4.16.0-r0 apk
|
shadow 4.16.0-r0 apk
|
||||||
skalibs 2.14.2.0-r2 apk
|
skalibs 2.14.2.0-r2 apk
|
||||||
sqlite-libs 3.46.1-r0 apk
|
sqlite-libs 3.47.0-r0 apk
|
||||||
ssl_client 1.36.1-r32 apk
|
ssl_client 1.36.1-r32 apk
|
||||||
tzdata 2024b-r1 apk
|
tzdata 2024b-r1 apk
|
||||||
utmps-libs 0.1.2.2-r3 apk
|
utmps-libs 0.1.2.2-r3 apk
|
||||||
|
|||||||
Reference in New Issue
Block a user