From 36d0fff48025f8c70199ab1a69e5d998c8a24e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Mon, 3 Mar 2025 13:12:29 -0800 Subject: [PATCH 1/7] Bump platform to 8.1 --- io.elementary.tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.elementary.tasks.json b/io.elementary.tasks.json index 280c443f5..fb25085cc 100644 --- a/io.elementary.tasks.json +++ b/io.elementary.tasks.json @@ -1,7 +1,7 @@ { "app-id": "io.elementary.tasks", "runtime": "io.elementary.Platform", - "runtime-version": "8", + "runtime-version": "8.1", "sdk": "io.elementary.Sdk", "command": "io.elementary.tasks", "finish-args": [ From 7f3ec516987c3dc533837a0ae949e9a50e8ae608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Mon, 3 Mar 2025 13:13:05 -0800 Subject: [PATCH 2/7] Update release.yml --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9b431b4d3..889043ce1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: fail-fast: false container: - image: ghcr.io/elementary/flatpak-platform/runtime:8-${{ matrix.configuration.arch }} + image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} options: --privileged steps: From ea61a1a9b8fe9277fb4f5c5640755d98ac0a88c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Mon, 3 Mar 2025 13:13:23 -0800 Subject: [PATCH 3/7] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f31169bc..5419409e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: fail-fast: false container: - image: ghcr.io/elementary/flatpak-platform/runtime:8-${{ matrix.configuration.arch }} + image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} options: --privileged steps: From 1c22435eb8ebe1d601f71bb578dc0bbfd69f6821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Mon, 3 Mar 2025 13:13:52 -0800 Subject: [PATCH 4/7] Update merge.yml --- .github/workflows/merge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 208943b47..e87cec49c 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false container: - image: ghcr.io/elementary/flatpak-platform/runtime:8-${{ matrix.configuration.arch }} + image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} options: --privileged steps: From 0b8a3fc5fd52a1dccf29a4f1d5dd25f34533b5f9 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 26 Jul 2025 21:59:27 +0900 Subject: [PATCH 5/7] Set libdir globally --- io.elementary.tasks.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/io.elementary.tasks.json b/io.elementary.tasks.json index d666e526f..128046560 100644 --- a/io.elementary.tasks.json +++ b/io.elementary.tasks.json @@ -22,6 +22,9 @@ "*.a", "*.la" ], + "build-options": { + "libdir": "/app/lib" + }, "modules": [ { "name": "libical", @@ -31,7 +34,6 @@ ], "config-opts": [ "-DCMAKE_BUILD_TYPE=RelWithDebInfo", - "-DCMAKE_INSTALL_LIBDIR=/app/lib", "-DBUILD_SHARED_LIBS=ON", "-DICAL_GLIB=true", "-DICAL_GLIB_VAPI=true", From 6a550ea579a8b4d597aa337e10002c6c7375a02a Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 26 Jul 2025 22:06:25 +0900 Subject: [PATCH 6/7] Bump to platform 8.2 --- .github/workflows/ci.yml | 2 +- .github/workflows/merge.yml | 2 +- .github/workflows/release.yml | 2 +- io.elementary.tasks.json | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99bfb1f1f..4bc0d648b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: fail-fast: false container: - image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} + image: ghcr.io/elementary/flatpak-platform/runtime:8.2-${{ matrix.configuration.arch }} options: --privileged steps: diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index abd32347a..f33ac4bdd 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false container: - image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} + image: ghcr.io/elementary/flatpak-platform/runtime:8.2-${{ matrix.configuration.arch }} options: --privileged steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d59a53647..b4389c44d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: fail-fast: false container: - image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} + image: ghcr.io/elementary/flatpak-platform/runtime:8.2-${{ matrix.configuration.arch }} options: --privileged steps: diff --git a/io.elementary.tasks.json b/io.elementary.tasks.json index 128046560..303117d22 100644 --- a/io.elementary.tasks.json +++ b/io.elementary.tasks.json @@ -1,7 +1,7 @@ { - "app-id": "io.elementary.tasks", + "id": "io.elementary.tasks", "runtime": "io.elementary.Platform", - "runtime-version": "8.1", + "runtime-version": "8.2", "sdk": "io.elementary.Sdk", "command": "io.elementary.tasks", "finish-args": [ @@ -74,8 +74,8 @@ "sources": [ { "type": "archive", - "url": "https://download.gnome.org/sources/evolution-data-server/3.52/evolution-data-server-3.52.4.tar.xz", - "sha256": "1b36a839db1c8d898066e19be78b995930a0a2f2a886f149e4f64e1755f064f7" + "url": "https://download.gnome.org/sources/evolution-data-server/3.57/evolution-data-server-3.57.1.tar.xz", + "sha256": "e23534f87599a16c17790aca05ea253781daca6fbe57ab318628e36aa064e8bd" } ], "modules": [ From 12cfb9ee8718e59c59274c62005e4e5798005b8f Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 27 Jul 2025 21:41:49 +0900 Subject: [PATCH 7/7] Do not use development release of EDS --- io.elementary.tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io.elementary.tasks.json b/io.elementary.tasks.json index 303117d22..29d2150bb 100644 --- a/io.elementary.tasks.json +++ b/io.elementary.tasks.json @@ -74,8 +74,8 @@ "sources": [ { "type": "archive", - "url": "https://download.gnome.org/sources/evolution-data-server/3.57/evolution-data-server-3.57.1.tar.xz", - "sha256": "e23534f87599a16c17790aca05ea253781daca6fbe57ab318628e36aa064e8bd" + "url": "https://download.gnome.org/sources/evolution-data-server/3.56/evolution-data-server-3.56.2.tar.xz", + "sha256": "df4ec29950f29a76eac6fbe0f814c48d2cef7d3fdb905002a4a883dd761ce93c" } ], "modules": [