Skip to content

Commit b2737e4

Browse files
Prot10claude
andcommitted
release: v0.1.0 - Initial beta with banner removed
- Removed PermissionBanner from HomeView - Removed PermissionStatusView from header - Update notification button in toolbar Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 95c4dcf commit b2737e4

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
lines changed

MyMacCleaner/Features/Home/HomeView.swift

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,9 @@ struct HomeView: View {
1414
headerSection
1515
.staggeredAnimation(index: 0, isActive: isVisible)
1616

17-
// Permission banner (if needed)
18-
if !viewModel.hasFullDiskAccess && !viewModel.showPermissionPrompt {
19-
PermissionBanner(permissionsService: PermissionsService.shared)
20-
.staggeredAnimation(index: 1, isActive: isVisible)
21-
}
22-
2317
// Smart Scan Button
2418
smartScanSection
25-
.staggeredAnimation(index: 2, isActive: isVisible)
19+
.staggeredAnimation(index: 1, isActive: isVisible)
2620

2721
// Scan Results (if available)
2822
if viewModel.showScanResults {
@@ -33,16 +27,16 @@ struct HomeView: View {
3327
print("View details for \(result.category.rawValue)")
3428
}
3529
)
36-
.staggeredAnimation(index: 3, isActive: isVisible)
30+
.staggeredAnimation(index: 2, isActive: isVisible)
3731
}
3832

3933
// Quick Stats
4034
quickStatsSection
41-
.staggeredAnimation(index: viewModel.showScanResults ? 4 : 3, isActive: isVisible)
35+
.staggeredAnimation(index: viewModel.showScanResults ? 3 : 2, isActive: isVisible)
4236

4337
// Quick Actions
4438
quickActionsSection
45-
.staggeredAnimation(index: viewModel.showScanResults ? 5 : 4, isActive: isVisible)
39+
.staggeredAnimation(index: viewModel.showScanResults ? 4 : 3, isActive: isVisible)
4640
}
4741
.padding(Theme.Spacing.lg)
4842
}
@@ -129,8 +123,6 @@ struct HomeView: View {
129123
.padding(.vertical, Theme.Spacing.xxs)
130124
.background(.ultraThinMaterial, in: Capsule())
131125

132-
PermissionStatusView(hasFullDiskAccess: viewModel.hasFullDiskAccess)
133-
134126
SystemHealthPill(
135127
status: viewModel.systemHealthStatus,
136128
color: viewModel.systemHealthColor

appcast.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@
88

99
<item>
1010
<title>Version 0.1.0</title>
11-
<pubDate>Fri, 23 Jan 2026 10:20:26 +0100</pubDate>
11+
<pubDate>Thu, 23 Jan 2026 10:50:00 +0100</pubDate>
1212
<sparkle:version>1</sparkle:version>
1313
<sparkle:shortVersionString>0.1.0</sparkle:shortVersionString>
1414
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
1515
<description><![CDATA[
1616
<h2>What's New in Version 0.1.0</h2>
1717
<ul>
1818
<li>Initial beta release with all core features</li>
19+
<li>Update notification button in toolbar</li>
1920
</ul>
2021
]]></description>
21-
<enclosure url="https://github.com/Prot10/MyMacCleaner/releases/download/v0.1.0/MyMacCleaner-v0.1.0.zip" sparkle:edSignature="CBrelHhbYlvzEC7CRa8dtt5Qek2CiIAKcsOsH6ByxDGdT0K013atk/Zs6nFpfgFCe42EAMub9HSm1Hb4UWc7Cw==" length="4452540" type="application/octet-stream"/>
22+
<enclosure url="https://github.com/Prot10/MyMacCleaner/releases/download/v0.1.0/MyMacCleaner-v0.1.0.zip" sparkle:edSignature="+J5deyDoTc2yXmPs5L21J48YvNS1jJnfHkyIdrIC63NWh+WVakRqpoOt1f4akFTREto/3uOvmkXksNQPTP/yDw==" length="4440120" type="application/octet-stream"/>
2223
</item>
2324

2425
</channel>

website/public/data/releases.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"downloads": {
1010
"dmg": {
1111
"url": "https://github.com/Prot10/MyMacCleaner/releases/download/v0.1.0/MyMacCleaner-v0.1.0.dmg",
12-
"size": "4.7 MB"
12+
"size": "4.9 MB"
1313
}
1414
},
1515
"changelog": [
16-
{ "type": "added", "description": "Initial beta release with all core features" }
16+
{ "type": "added", "description": "Initial beta release with all core features" },
17+
{ "type": "added", "description": "Update notification button in toolbar" }
1718
]
1819
}
1920
]

0 commit comments

Comments
 (0)