Auto-commit before update (2026-04-03 15:47)

This commit is contained in:
Dallas Groot 2026-04-03 15:47:48 -07:00
parent 7bc999af6b
commit 34f9cb4232
3 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@
<key>NSMicrophoneUsageDescription</key>
<string>Identify songs playing on the radio using Shazam</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Choose cover images for your radio stations</string>
<string>Choose cover images for your Album Art, Radio Stations and Artist Covers.</string>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>

View file

@ -367,7 +367,7 @@ struct AlbumDetailView: View {
}
}
}) {
Label(song.starred != nil ? "Unstar" : "Star", systemImage: song.starred != nil ? "heart.slash" : "heart")
Label(song.starred != nil ? "Remove" : "Add to", systemImage: song.starred != nil ? "heart.slash" : "heart")
}
Divider()

View file

@ -455,7 +455,7 @@ struct MyMusicView: View {
}
if filtered.isEmpty && !isLoading {
emptyState(searchText.isEmpty ? "No favourites yet — star songs to see them here" : "No matches")
emptyState(searchText.isEmpty ? "No favourites yet — Heart songs to see them here" : "No matches")
}
}
.padding(.top, 4)