From eeeeae78e6e0b3617e92a927205a4cf434e6433d Mon Sep 17 00:00:00 2001 From: Andreas Dueren Date: Sat, 31 Jan 2026 15:45:14 -0600 Subject: [PATCH] v0.6.0 - Fresh build with latest ente sources --- CHANGELOG.md | 5 +++++ CloudronManifest.json | 2 +- Dockerfile | 6 +++++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89f1602..0056006 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.6.0 (2025-06-29) + +* Fresh build with latest Ente upstream sources (main branch) +* Rebuild all web frontends and Museum binary against current codebase + ## 0.5.7 (2025-11-20) * Bundle the Ente Families web app so `family.` serves the correct invite/management UI instead of the placeholder photos build. diff --git a/CloudronManifest.json b/CloudronManifest.json index 62b0cae..887a0f1 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -7,7 +7,7 @@ "contactEmail": "contact@ente.io", "website": "https://ente.io", "tagline": "Open source, end-to-end encrypted photo backup", - "version": "0.5.6", + "version": "0.6.0", "upstreamVersion": "git-main", "healthCheckPath": "/health", "httpPort": 3080, diff --git a/Dockerfile b/Dockerfile index 7eaf8c5..c0a7a92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,8 +53,12 @@ ENV NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=https://albums.localhost.invalid COPY --from=ente-source /src /ente WORKDIR /ente/web RUN apt-get update && \ - apt-get install -y --no-install-recommends build-essential python3 && \ + apt-get install -y --no-install-recommends build-essential python3 curl ca-certificates && \ rm -rf /var/lib/apt/lists/* +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal && \ + . "$HOME/.cargo/env" && \ + cargo install wasm-pack +ENV PATH="/root/.cargo/bin:${PATH}" RUN corepack enable RUN yarn install --network-timeout 1000000 RUN mkdir -p /build/web/photos /build/web/accounts /build/web/auth /build/web/cast /build/web/albums /build/web/family /build/web/share /build/web/embed /build/web/payments