From 22d7ad0278c4a629d344507ed8fc086e78083f10 Mon Sep 17 00:00:00 2001 From: boredazfcuk Date: Mon, 16 Sep 2024 21:21:43 +0100 Subject: [PATCH] Please check change.log --- build_version.txt | 2 +- change.log | 6 ++++++ icloudpd.dockerfile | 3 ++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/build_version.txt b/build_version.txt index c6141fc..1c0d81f 100644 --- a/build_version.txt +++ b/build_version.txt @@ -1 +1 @@ -977_11-09-2024 +979_16-09-2024 diff --git a/change.log b/change.log index 593074a..73e50a0 100644 --- a/change.log +++ b/change.log @@ -1,3 +1,9 @@ + +16/09/2024 + + - Change: Rebase to Alpine Linux 3.20.3 + - Change: Installed libheif 1.18.2-r0 from Edge repository which should allow for HEIC to JPEG conversion on iOS 18 + 11/09/2024 - Change: Merged PR submitted by RICwang which adds the Chinese translations for the remote sync feature and also enables the feature. diff --git a/icloudpd.dockerfile b/icloudpd.dockerfile index 0c05239..a664264 100644 --- a/icloudpd.dockerfile +++ b/icloudpd.dockerfile @@ -5,12 +5,13 @@ ENV XDG_DATA_HOME="/config" TZ="UTC" ENV="/etc/profile" ARG icloudpd_version="1.23.4" ARG build_dependencies="gcc python3-dev libc-dev libffi-dev cargo openssl-dev" -ARG app_dependencies="findutils nano nano-syntax py3-pip exiftool coreutils tzdata curl imagemagick shadow jq libheif jpeg bind-tools expect inotify-tools msmtp" +ARG app_dependencies="findutils nano nano-syntax py3-pip exiftool coreutils tzdata curl imagemagick shadow jq jpeg bind-tools expect inotify-tools msmtp" RUN echo "$(date '+%d/%m/%Y - %H:%M:%S') | ***** Build started for boredazfcuk's docker-icloudpd *****" && \ echo "$(date '+%d/%m/%Y - %H:%M:%S') | Install requirements" && \ apk add --no-progress --no-cache --virtual build ${build_dependencies} && \ apk add --no-progress --no-cache ${app_dependencies} && \ + apk add libheif --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community && \ find /usr/share/nano -name '*.nanorc' -printf "include %p\n" >>/etc/nanorc && \ echo "$(date '+%d/%m/%Y - %H:%M:%S') | Install iCloudPD latest release" && \ python -m venv /opt/icloudpd && \