diff --git a/README.md b/README.md index bea8b229e0..4177efc16c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Fluent UI Apple contains native UIKit and AppKit controls aligned with [Microsof #### Requirements - iOS 15+ or macOS 12+ -- Xcode 15.0.1+ +- Xcode 15.2+ - Swift 5.9+ #### Using Swift Package Manager diff --git a/SECURITY.md b/SECURITY.md index f78304ea7a..29ed9e13c5 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,7 +4,7 @@ Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). -If you believe you have found a security vulnerability in any Microsoft-owned repository that meets Microsoft's [Microsoft's definition of a security vulnerability](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)) of a security vulnerability, please report it to us as described below. +If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)), please report it to us as described below. ## Reporting Security Issues diff --git a/ios/FluentUI/Navigation/Views/AvatarTitleView.swift b/ios/FluentUI/Navigation/Views/AvatarTitleView.swift index 96e6c05bbf..cf4ec12c7d 100644 --- a/ios/FluentUI/Navigation/Views/AvatarTitleView.swift +++ b/ios/FluentUI/Navigation/Views/AvatarTitleView.swift @@ -76,7 +76,13 @@ class AvatarTitleView: UIView, TokenizedControlInternal, TwoLineTitleViewDelegat didSet { updateAppearance() twoLineTitleView.currentStyle = style == .primary ? .primary : .system - avatar?.state.style = style == .primary ? .default : .accent + let avatarStyle: MSFAvatarStyle + if let avatarOverrideStyle { + avatarStyle = avatarOverrideStyle + } else { + avatarStyle = (style == .primary) ? .default : .accent + } + avatar?.state.style = avatarStyle } } diff --git a/scripts/xcode_select_current_version.sh b/scripts/xcode_select_current_version.sh index f7c1667c21..99ecee7307 100755 --- a/scripts/xcode_select_current_version.sh +++ b/scripts/xcode_select_current_version.sh @@ -3,7 +3,7 @@ if [ -n "$XCODE_PATH_OVERRIDE" ]; then # If someone calls this with the XCODE_PATH_OVERRIDE variable set to a path to a developer dir, use it instead XCODE_PATH="$XCODE_PATH_OVERRIDE" else - XCODE_PATH='/Applications/Xcode_15.0.1.app/Contents/Developer' + XCODE_PATH='/Applications/Xcode_15.2.app/Contents/Developer' fi echo "Running command: sudo xcode-select --switch $XCODE_PATH"