From 190f95ee861ab0e31adc839eb7973885d3ebff6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Kn=C3=B6ppler?= <6317548+theCalcaholic@users.noreply.github.com> Date: Tue, 21 Apr 2026 18:19:41 +0200 Subject: [PATCH 1/2] Push v1.57.x to all instances --- staged_rollouts/v1.57.0.txt | 87 ++++++++++++++++++++++++++++++++++++- staged_rollouts/v1.57.1.txt | 87 ++++++++++++++++++++++++++++++++++++- 2 files changed, 172 insertions(+), 2 deletions(-) diff --git a/staged_rollouts/v1.57.0.txt b/staged_rollouts/v1.57.0.txt index 33e03b81b..731c10a03 100644 --- a/staged_rollouts/v1.57.0.txt +++ b/staged_rollouts/v1.57.0.txt @@ -1,15 +1,100 @@ +0 +1 +3 4 5 +6 7 8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 21 +22 +23 +24 +25 +26 27 +28 +29 30 31 32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 64 +65 +66 +67 68 +69 +70 71 +72 +73 +74 +75 +76 +77 +78 79 -81 \ No newline at end of file +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 +100 \ No newline at end of file diff --git a/staged_rollouts/v1.57.1.txt b/staged_rollouts/v1.57.1.txt index 33e03b81b..dcf1415f8 100644 --- a/staged_rollouts/v1.57.1.txt +++ b/staged_rollouts/v1.57.1.txt @@ -1,15 +1,100 @@ +0 +1 +2 +3 4 5 +6 7 8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 21 +22 +23 +24 +25 +26 27 +28 +29 30 31 32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 64 +65 +66 +67 68 +69 +70 71 +72 +73 +74 +75 +76 +77 +78 79 -81 \ No newline at end of file +80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 +99 \ No newline at end of file From 2328a52952e27abf9a50b27f525583ceba74182c Mon Sep 17 00:00:00 2001 From: MagelanM Date: Sun, 10 May 2026 15:14:36 +0200 Subject: [PATCH 2/2] fix for is_app_enabled(): replace hard coded 'previewgenerator' by variable Signed-off-by: MagelanM --- etc/library.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/library.sh b/etc/library.sh index 086c187ba..eb3697eef 100644 --- a/etc/library.sh +++ b/etc/library.sh @@ -503,7 +503,7 @@ function is_more_recent_than() function is_app_enabled() { local app="$1" - ncc app:list --output json | jq -r '.enabled | keys | .[]' | grep '^previewgenerator$' > /dev/null 2> /dev/null + ncc app:list --output json | jq -r '.enabled | keys | .[]' | grep "^${app}$" > /dev/null 2> /dev/null } function check_distro()