From 25c683c82a9c93524195ee86c6307563e60847c3 Mon Sep 17 00:00:00 2001 From: gnomeeee Date: Sun, 15 Mar 2026 08:37:56 +0100 Subject: [PATCH 1/5] Fix: Tutorial use wrong (deprecated?) spelling of AdwaitaWindow --- Resources/Views/AdwaitaTemplate2.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Views/AdwaitaTemplate2.swift b/Resources/Views/AdwaitaTemplate2.swift index 54f46ee..bf68b31 100644 --- a/Resources/Views/AdwaitaTemplate2.swift +++ b/Resources/Views/AdwaitaTemplate2.swift @@ -20,7 +20,7 @@ struct AdwaitaTemplate: App { struct Content: View { var app: AdwaitaApp - var window: AdwaitaApplicationWindow + var window: AdwaitaWindow var view: Body { Text(Loc.helloWorld) -- 2.36.6 From 21ee14efcbf421908d750866a670c79b7c603ab7 Mon Sep 17 00:00:00 2001 From: gnomeeee Date: Sun, 15 Mar 2026 08:48:39 +0100 Subject: [PATCH 2/5] Update Resources/Views/AdwaitaTemplate3.swift --- Resources/Views/AdwaitaTemplate3.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Views/AdwaitaTemplate3.swift b/Resources/Views/AdwaitaTemplate3.swift index b51c800..0199c33 100644 --- a/Resources/Views/AdwaitaTemplate3.swift +++ b/Resources/Views/AdwaitaTemplate3.swift @@ -20,7 +20,7 @@ struct AdwaitaTemplate: App { struct Content: View { var app: AdwaitaApp - var window: AdwaitaApplicationWindow + var window: AdwaitaWindow var view: Body { Button(Loc.helloWorld) { -- 2.36.6 From f5a19b3c921bb03844a485aac851f73ac58b9d50 Mon Sep 17 00:00:00 2001 From: gnomeeee Date: Sun, 15 Mar 2026 08:49:24 +0100 Subject: [PATCH 3/5] Update Resources/Views/AdwaitaTemplate4.swift --- Resources/Views/AdwaitaTemplate4.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Views/AdwaitaTemplate4.swift b/Resources/Views/AdwaitaTemplate4.swift index 9b63557..9bfb4f4 100644 --- a/Resources/Views/AdwaitaTemplate4.swift +++ b/Resources/Views/AdwaitaTemplate4.swift @@ -21,7 +21,7 @@ struct Content: View { @State private var startAlign = false var app: AdwaitaApp - var window: AdwaitaApplicationWindow + var window: AdwaitaWindow var view: Body { Button("Toggle Start Alignment") { -- 2.36.6 From 656c1b56d4d5db940a280872d3e02766facdcf87 Mon Sep 17 00:00:00 2001 From: gnomeeee Date: Sun, 15 Mar 2026 08:50:50 +0100 Subject: [PATCH 4/5] Update Resources/Views/AdwaitaTemplate5.swift --- Resources/Views/AdwaitaTemplate5.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Views/AdwaitaTemplate5.swift b/Resources/Views/AdwaitaTemplate5.swift index 324d09d..12519d8 100644 --- a/Resources/Views/AdwaitaTemplate5.swift +++ b/Resources/Views/AdwaitaTemplate5.swift @@ -21,7 +21,7 @@ struct Content: View { @State private var startAlign = false var app: AdwaitaApp - var window: AdwaitaApplicationWindow + var window: AdwaitaWindow var view: Body { ButtonView(startAlign: $startAlign) -- 2.36.6 From 996345a86f3bf05e838835dc03ffa0320e5ff545 Mon Sep 17 00:00:00 2001 From: gnomeeee Date: Sun, 15 Mar 2026 09:33:24 +0100 Subject: [PATCH 5/5] `value of type 'any AnyView' has no member 'boxedList'` error when attempting to run --- Resources/TaskList/TaskList8.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/TaskList/TaskList8.swift b/Resources/TaskList/TaskList8.swift index 75a2c98..2f4eb2e 100644 --- a/Resources/TaskList/TaskList8.swift +++ b/Resources/TaskList/TaskList8.swift @@ -15,8 +15,8 @@ struct TaskList: View { ActionRow() .title(task.label) } - .valign(.start) .boxedList() + .valign(.start) .padding() } } -- 2.36.6