From 84867a7ad72bc73738944bf304692bf15c977f91 Mon Sep 17 00:00:00 2001 From: Ludy Date: Sat, 9 Nov 2024 16:07:51 +0100 Subject: [PATCH 1/9] Fix: Card has no favorite icon (#2203) fixes the bug if the card has no favorite icon --- src/main/resources/static/js/homecard.js | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/main/resources/static/js/homecard.js b/src/main/resources/static/js/homecard.js index efc5314e226..723f37176b5 100644 --- a/src/main/resources/static/js/homecard.js +++ b/src/main/resources/static/js/homecard.js @@ -83,14 +83,16 @@ function syncFavorites() { cards.forEach(card => { const isFavorite = localStorage.getItem(card.id) === "favorite"; const starIcon = card.querySelector(".favorite-icon span.material-symbols-rounded"); - if (isFavorite) { - starIcon.classList.remove("no-fill"); - starIcon.classList.add("fill"); - card.classList.add("favorite"); - } else { - starIcon.classList.remove("fill"); - starIcon.classList.add("no-fill"); - card.classList.remove("favorite"); + if (starIcon) { + if (isFavorite) { + starIcon.classList.remove("no-fill"); + starIcon.classList.add("fill"); + card.classList.add("favorite"); + } else { + starIcon.classList.remove("fill"); + starIcon.classList.add("no-fill"); + card.classList.remove("favorite"); + } } }); updateFavoritesSection(); @@ -260,4 +262,4 @@ document.addEventListener("DOMContentLoaded", function () { }, 500); showFavoritesOnly(); -}); \ No newline at end of file +}); From e534f022f54cfc4ecf3f4be7c4358690e3d146fd Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Sat, 9 Nov 2024 23:01:26 +0000 Subject: [PATCH 2/9] Rename lint-helm-charts.yml to lint-helm-charts.yml-disabled --- .../{lint-helm-charts.yml => lint-helm-charts.yml-disabled} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{lint-helm-charts.yml => lint-helm-charts.yml-disabled} (100%) diff --git a/.github/workflows/lint-helm-charts.yml b/.github/workflows/lint-helm-charts.yml-disabled similarity index 100% rename from .github/workflows/lint-helm-charts.yml rename to .github/workflows/lint-helm-charts.yml-disabled From af52652aeed3a7b9f295b42964795a7001033fe4 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Sat, 9 Nov 2024 23:01:55 +0000 Subject: [PATCH 3/9] Rename release-helm-charts.yml to release-helm-charts.yml-disabled --- .../{release-helm-charts.yml => release-helm-charts.yml-disabled} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{release-helm-charts.yml => release-helm-charts.yml-disabled} (100%) diff --git a/.github/workflows/release-helm-charts.yml b/.github/workflows/release-helm-charts.yml-disabled similarity index 100% rename from .github/workflows/release-helm-charts.yml rename to .github/workflows/release-helm-charts.yml-disabled From 0ab02e6ceb7c0ca4c563efd10d425e9601834f75 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Sat, 9 Nov 2024 23:02:12 +0000 Subject: [PATCH 4/9] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index bb0b6bacbee..db718c5cb61 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ ext { } group = "stirling.software" -version = "0.31.1" +version = "0.31.2" java { // 17 is lowest but we support and recommend 21 From c13509cf6776b61c1bdb41a0103c402549db9ede Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 23:10:30 +0000 Subject: [PATCH 5/9] :floppy_disk: Update Version (#2204) :floppy_disk: Sync Versions > Made via sync_files.yml Co-authored-by: github-actions[bot] --- chart/stirling-pdf/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chart/stirling-pdf/Chart.yaml b/chart/stirling-pdf/Chart.yaml index 1aa262e1d03..d25fa8b1590 100644 --- a/chart/stirling-pdf/Chart.yaml +++ b/chart/stirling-pdf/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: 0.31.1 +appVersion: 0.31.2 description: locally hosted web application that allows you to perform various operations on PDF files home: https://github.com/Stirling-Tools/Stirling-PDF @@ -13,4 +13,4 @@ maintainers: name: stirling-pdf-chart sources: - https://github.com/Stirling-Tools/Stirling-PDF -version: 1.0.1 +version: 1.0.2 From ba8dd0408685fa568ae24776402a913d5c69891e Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Sat, 9 Nov 2024 23:11:10 +0000 Subject: [PATCH 6/9] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index db718c5cb61..6d321618d2f 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ ext { } group = "stirling.software" -version = "0.31.2" +version = "0.32.0" java { // 17 is lowest but we support and recommend 21 From 2f92aa90ef61eb1173f06d36c925fe22bcc2f544 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 23:11:42 +0000 Subject: [PATCH 7/9] :floppy_disk: Update Version (#2205) :floppy_disk: Sync Versions > Made via sync_files.yml Co-authored-by: github-actions[bot] --- chart/stirling-pdf/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chart/stirling-pdf/Chart.yaml b/chart/stirling-pdf/Chart.yaml index d25fa8b1590..d99ddaf5518 100644 --- a/chart/stirling-pdf/Chart.yaml +++ b/chart/stirling-pdf/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: 0.31.2 +appVersion: 0.32.0 description: locally hosted web application that allows you to perform various operations on PDF files home: https://github.com/Stirling-Tools/Stirling-PDF @@ -13,4 +13,4 @@ maintainers: name: stirling-pdf-chart sources: - https://github.com/Stirling-Tools/Stirling-PDF -version: 1.0.2 +version: 1.1.0 From 862a88e2e9d39f32773647aa0d29af3fcadd21fb Mon Sep 17 00:00:00 2001 From: Ludy Date: Sun, 10 Nov 2024 14:24:12 +0100 Subject: [PATCH 8/9] Fix: missing opener for View PDF #2206 (#2207) Fix missing opener for View PDF #2206 --- src/main/resources/templates/view-pdf.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/templates/view-pdf.html b/src/main/resources/templates/view-pdf.html index 3e0b2326a59..c00f816b818 100644 --- a/src/main/resources/templates/view-pdf.html +++ b/src/main/resources/templates/view-pdf.html @@ -184,7 +184,7 @@