diff --git a/CHANGELOG.md b/CHANGELOG.md index c3faf72..677fc8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.5.1] - 2026-06-04 + +### Changes +- Added sleek SF Symbol icons to the Settings capsule tabs to improve visual scannability and modernize the interface. + ## [0.5.0] - 2026-06-04 ### New features diff --git a/Sources/Firelink/SettingsView.swift b/Sources/Firelink/SettingsView.swift index ae78847..38d58fe 100644 --- a/Sources/Firelink/SettingsView.swift +++ b/Sources/Firelink/SettingsView.swift @@ -12,9 +12,13 @@ struct SettingsPaneContainer: View { Button { activeTab = filter } label: { - Text(filter.rawValue) - .padding(.horizontal, 12) - .padding(.vertical, 6) + HStack(spacing: 6) { + Image(systemName: filter.symbolName) + Text(filter.rawValue) + } + .padding(.horizontal, 14) + .padding(.vertical, 8) + .font(.system(size: 13, weight: .medium)) } .buttonStyle(.plain) .background(activeTab == filter ? Color.accentColor : Color.clear)