Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions extensions/pieces-raycast/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Pieces for Raycast Changelog

## [0.3.0] - 2025-02-27

- Fixes website link color contrast in search results
- Notifies user to update Raycast permissions if unable to select text in frontmost app

## [0.2.0] - 2025-02-03

- Renames commands according to new branding guidelines
Expand Down
4 changes: 2 additions & 2 deletions extensions/pieces-raycast/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion extensions/pieces-raycast/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"version": "0.2.0",
"version": "0.3.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version field is useless for Raycast extensions. Feel free to remove it.

"name": "pieces-raycast",
"title": "Pieces for Raycast",
"description": "Pieces for Developers Raycast Extension",
Expand Down
2 changes: 1 addition & 1 deletion extensions/pieces-raycast/src/save-selection-to-pieces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default async function Command() {

if (!text?.trim()) {
return await Notifications.getInstance().errorToast(
"There is no text selected in the frontmost application!",
"No text detected. Ensure 'Accessibility' permissions are enabled for Raycast on your device",
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export default function getDraftMetadata(
key={el.url}
text={el.url}
onAction={() => open(el.url)}
color={"#0000EE"}
/>
))}
</Detail.Metadata.TagList>,
Expand Down
Loading