fix: Add missing action icons
This commit is contained in:
@@ -2,10 +2,13 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.1.3] - 2024-02-05
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Display Linear notification reason
|
- Display Linear notification reason
|
||||||
- Display Linear project on notification item
|
- Display Linear project on notification item
|
||||||
|
- Add missing action icons
|
||||||
|
|
||||||
## [0.1.2] - 2024-02-01
|
## [0.1.2] - 2024-02-01
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"description": "Manage your notifications in a single Universal Inbox",
|
"description": "Manage your notifications in a single Universal Inbox",
|
||||||
"icon": "ui-logo-transparent.png",
|
"icon": "ui-logo-transparent.png",
|
||||||
"author": "dax42",
|
"author": "dax42",
|
||||||
"version": "0.1.1",
|
"version": "0.1.3",
|
||||||
"categories": [
|
"categories": [
|
||||||
"Productivity"
|
"Productivity"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ export function NotificationActions({ notification, detailsTarget, mutate }: Not
|
|||||||
return (
|
return (
|
||||||
<ActionPanel>
|
<ActionPanel>
|
||||||
<Action.OpenInBrowser url={notificationHtmlUrl} />
|
<Action.OpenInBrowser url={notificationHtmlUrl} />
|
||||||
<Action.Push title="Show Details" target={detailsTarget} />
|
<Action.Push title="Show Details" icon={Icon.AppWindowSidebarRight} target={detailsTarget} />
|
||||||
<Action
|
<Action
|
||||||
title="Delete Notification"
|
title="Delete Notification"
|
||||||
icon={Icon.Trash}
|
icon={Icon.Trash}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export function NotificationTaskActions({ notification, detailsTarget, mutate }:
|
|||||||
return (
|
return (
|
||||||
<ActionPanel>
|
<ActionPanel>
|
||||||
<Action.OpenInBrowser url={notificationHtmlUrl} />
|
<Action.OpenInBrowser url={notificationHtmlUrl} />
|
||||||
<Action.Push title="Show Details" target={detailsTarget} />
|
<Action.Push title="Show Details" icon={Icon.AppWindowSidebarRight} target={detailsTarget} />
|
||||||
<Action
|
<Action
|
||||||
title="Delete Notification"
|
title="Delete Notification"
|
||||||
icon={Icon.Trash}
|
icon={Icon.Trash}
|
||||||
@@ -44,7 +44,7 @@ export function NotificationTaskActions({ notification, detailsTarget, mutate }:
|
|||||||
/>
|
/>
|
||||||
<Action
|
<Action
|
||||||
title="Complete Task"
|
title="Complete Task"
|
||||||
icon={Icon.Calendar}
|
icon={Icon.CheckCircle}
|
||||||
shortcut={{ modifiers: ["ctrl"], key: "c" }}
|
shortcut={{ modifiers: ["ctrl"], key: "c" }}
|
||||||
onAction={() => completeTask(notification, mutate)}
|
onAction={() => completeTask(notification, mutate)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
import { Action, ActionPanel, Detail, Icon, List, getPreferenceValues, openExtensionPreferences } from "@raycast/api";
|
||||||
import { GoogleMailNotificationListItem } from "./integrations/google-mail/listitem/GoogleMailNotificationListItem";
|
import { GoogleMailNotificationListItem } from "./integrations/google-mail/listitem/GoogleMailNotificationListItem";
|
||||||
import { Action, ActionPanel, Detail, List, getPreferenceValues, openExtensionPreferences } from "@raycast/api";
|
|
||||||
import { TodoistNotificationListItem } from "./integrations/todoist/listitem/TodoistNotificationListItem";
|
import { TodoistNotificationListItem } from "./integrations/todoist/listitem/TodoistNotificationListItem";
|
||||||
import { GithubNotificationListItem } from "./integrations/github/listitem/GithubNotificationListItem";
|
import { GithubNotificationListItem } from "./integrations/github/listitem/GithubNotificationListItem";
|
||||||
import { LinearNotificationListItem } from "./integrations/linear/listitem/LinearNotificationListItem";
|
import { LinearNotificationListItem } from "./integrations/linear/listitem/LinearNotificationListItem";
|
||||||
@@ -23,7 +23,7 @@ export default function Command() {
|
|||||||
markdown={"API key incorrect. Please update it in extension preferences and try again."}
|
markdown={"API key incorrect. Please update it in extension preferences and try again."}
|
||||||
actions={
|
actions={
|
||||||
<ActionPanel>
|
<ActionPanel>
|
||||||
<Action title="Open Extension Preferences" onAction={openExtensionPreferences} />
|
<Action title="Open Extension Preferences" icon={Icon.Gear} onAction={openExtensionPreferences} />
|
||||||
</ActionPanel>
|
</ActionPanel>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user