diff --git a/extensions/jira/CHANGELOG.md b/extensions/jira/CHANGELOG.md index 66859cf1198..57439dbd745 100644 --- a/extensions/jira/CHANGELOG.md +++ b/extensions/jira/CHANGELOG.md @@ -1,15 +1,23 @@ # Jira Changelog +## [Avatars now display with a circular mask] - 2025-02-10 + +- To be consistent with avatars with initials, the profile pictures now show with a circular mask. + ## [Fix Git branch name format] - 2025-02-10 + - Fixed an issue where the Git branch name format, specifically the issue summary, was not slugified. ## [Add ability to configuring Git branch name format] - 2025-01-09 + - Implemented the ability to configure the Git branch name format in the extension settings. ## [Add ability to open issues in other application defined in extension preferences] - 2024-12-25 + - Implemented the ability to open by default in any other application (e.g. other browser) any issue. ## [Add ability to copy newly created issue url to clipboard as an optional config] - 2024-12-12 + - If you want to copy the newly created issue URL to the clipboard, you can now enable this feature in the extension settings. ## [Added Parent Issue support] - 2024-12-02 diff --git a/extensions/jira/src/helpers/avatars.ts b/extensions/jira/src/helpers/avatars.ts index bfbf4ebf636..d19b7b72b75 100644 --- a/extensions/jira/src/helpers/avatars.ts +++ b/extensions/jira/src/helpers/avatars.ts @@ -1,4 +1,4 @@ -import { Icon } from "@raycast/api"; +import { Icon, Image } from "@raycast/api"; import { getAvatarIcon } from "@raycast/utils"; import { Project } from "../api/projects"; @@ -9,7 +9,7 @@ export function getUserAvatar(user?: User | null) { if (!user.avatarUrls) return getAvatarIcon(user.displayName); - return user.avatarUrls["32x32"]; + return { source: user.avatarUrls["32x32"], mask: Image.Mask.Circle }; } export function getProjectAvatar(project: Project) {