forked from raycast/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tidyread---streamline-your-daily-reading extension (raycast#10568
) * Update tidyread---streamline-your-daily-reading extension - Merge branch \'contributions/merge-1707060463863168000\' - Pull contributions - fix: fix RSS pull 406 error code * Update tidyread---streamline-your-daily-reading extension - change default - chore: change prompt to remove ads - chore: improve feedback and digest content - feat: digest can be categorized by tags - feat: add defaultSearchText context for search rss page - chore: change desc - feat: export digest as markdown - fix: feed with only summary cause empty content * Update tidyread---streamline-your-daily-reading extension - change title - chore: change title * chore: improve speed of parse RSS and fix abort on RSS pull failed * chore: add tips * fix lint --------- Co-authored-by: jaredliu <jaredliu233@gmail.com>
- Loading branch information
1 parent
1e9358c
commit bde81ef
Showing
18 changed files
with
320 additions
and
106 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
extensions/tidyread---streamline-your-daily-reading/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
extensions/tidyread---streamline-your-daily-reading/src/add-source.command.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import { LaunchProps } from "@raycast/api"; | ||
import RSSSearch from "./components/RSSSearch"; | ||
import RedirectRoute from "./components/RedirectRoute"; | ||
|
||
export default function CreateSourceForm() { | ||
export default function CreateSourceForm(props: LaunchProps<{ launchContext: { defaultSearchText: string } }>) { | ||
const defaultSearchText = props?.launchContext?.defaultSearchText ?? ""; | ||
return ( | ||
<RedirectRoute> | ||
<RSSSearch /> | ||
<RSSSearch defaultSearchText={defaultSearchText} /> | ||
</RedirectRoute> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.