Removed arm/32 support.
Some checks failed
Docker Image CI / build (push) Has been cancelled

This commit is contained in:
Roger Versluis 2023-09-03 13:09:04 -06:00
parent b0a0772931
commit 4bea2f444f
7 changed files with 11 additions and 5 deletions

View file

@ -13,4 +13,6 @@ assignees: ''
**Are you using Docker or as a service?** **Are you using Docker or as a service?**
**Which debrid provider are you using?**
**Please attach a log file here with the log setting set to debug** **Please attach a log file here with the log setting set to debug**

View file

@ -11,7 +11,7 @@ permissions:
env: env:
APP_NAME: rdtclient APP_NAME: rdtclient
DOCKER_FILE: ./Dockerfile DOCKER_FILE: ./Dockerfile
DOCKER_PLATFORMS: "linux/arm/v7,linux/arm64/v8,linux/amd64" DOCKER_PLATFORMS: "linux/arm64/v8,linux/amd64"
ENABLE_DOCKERHUB: 1 ENABLE_DOCKERHUB: 1
ENABLE_GHCR: 1 ENABLE_GHCR: 1

View file

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.0.35] - 2023-08-02
### Removed
- Docker arm32/v7 images because the base image does not support it anymore: https://www.linuxserver.io/blog/a-farewell-to-arm-hf
## [2.0.34] - 2023-08-01 ## [2.0.34] - 2023-08-01
### Changed ### Changed
- Update docker image to alpine 3.14. - Update docker image to alpine 3.14.

View file

@ -55,7 +55,7 @@
<a class="navbar-item" routerLink="profile"> Profile </a> <a class="navbar-item" routerLink="profile"> Profile </a>
<a class="navbar-item" (click)="logout()"> Logout </a> <a class="navbar-item" (click)="logout()"> Logout </a>
<hr class="navbar-divider" /> <hr class="navbar-divider" />
<a href="https://github.com/rogerfar/rdt-client" target="_blank" class="navbar-item">Version 2.0.34</a> <a href="https://github.com/rogerfar/rdt-client" target="_blank" class="navbar-item">Version 2.0.35</a>
</div> </div>
</div> </div>
</div> </div>

View file

@ -34,7 +34,7 @@
param( param(
[string]$Version = "", [string]$Version = "",
[string]$DockerAccount = "rogerfar", [string]$DockerAccount = "rogerfar",
[string]$Platforms = "linux/arm/v7,linux/arm64/v8,linux/amd64", [string]$Platforms = "linux/arm64/v8,linux/amd64",
[string]$Dockerfile = "Dockerfile", [string]$Dockerfile = "Dockerfile",
[switch]$SkipPush, [switch]$SkipPush,
[switch]$SkipCache, [switch]$SkipCache,

View file

@ -1,6 +1,6 @@
{ {
"name": "rdt-client", "name": "rdt-client",
"version": "2.0.34", "version": "2.0.35",
"description": "This is a web interface to manage your torrents on Real-Debrid.", "description": "This is a web interface to manage your torrents on Real-Debrid.",
"main": "index.js", "main": "index.js",
"dependencies": { "dependencies": {

View file

@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<UserSecretsId>94c24cba-f03f-4453-a671-3640b517c573</UserSecretsId> <UserSecretsId>94c24cba-f03f-4453-a671-3640b517c573</UserSecretsId>
<Version>2.0.34</Version> <Version>2.0.35</Version>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>