Skip to content

Commit

Permalink
Update search-joplin-notes extension (#10382)
Browse files Browse the repository at this point in the history
* Update search-joplin-notes extension

- fix:conflict
- fix:changelog
- fix: app path
- add:command
- Merge pull request #18 from wisdom-plus/pubilc
- add:categries
- version_up
- Merge pull request #17 from wisdom-plus/type
- fix:type
- Merge pull request #16 from wisdom-plus/cached_error
- fix:pingjoplin
- fix:cached
- Merge pull request #13 from wisdom-plus/README
- add:metadata
- add:README
- Merge pull request #11 from wisdom-plus/applescript
- rm:applescript
- change:icon image
- Merge pull request #9 from wisdom-plus/untils
- add:raycast react hooks
- fix:useGetPath
- add:usePingJoplin
- wip:refactring:api
- add:untils runAppleScript
- add:package raycast untils
- Merge pull request #1 from wisdom-plus/version_up
- fix:localhost
- upgrade: packerage
- Merge pull request #1 from tomoron/joplin
- pref:resetResult
- pref:Loading
- fix:fetch
- pref:await
- fix:description
- add:pingjoplin
- pref:port
- change:icon
- add:joplin icon and delete command icon
- add:Icon and Color
- pref:error detail
- fix:error
- add:state error
- add:api catch error
- add:toast
- add:loding
- pref:api then
- fix:letter case
- add:NoteDetail
- replace:useGetPath()
- add:useGetPath
- rename:type
- rename:notedata
- fix:typo
- add:joplinbundleid
- fix:raycastbundleid
- replece:fetchnotes
- pref:promise await
- rm:import runapplescript
- add:BundleId
- mv:runapplescripts
- add:applescripts.ts
- add:open raycast
- add:delay
- rm:comment
- fix:Joplin is running not open
- pref:NotesList
- add:fix:props
- add:noteslist
- pref:url
- add:constnts.ts
- add:api.ts
- add:types.ts
- commentout
- add:applescript
- add_packeage:run-applescript
- add:read token
- fix:type
- add:preferences token
- add:open
- add:open joplin
- rm:comment
- add:url fields
- pref:fetch search
- add:result map
- add:fetch
- add_package:node-fetch
- add:searchText
- init

* Update CHANGELOG.md and optimise images

---------

Co-authored-by: raycastbot <[email protected]>
  • Loading branch information
wisdom-plus and raycastbot authored Jan 30, 2024
1 parent 0adffea commit c8f404a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions extensions/search-joplin-notes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# search joplin notes Changelog

## [FIX Codes] - 2024-1-27

Fix App path

## [Add metadata] - 2023-9-18

Add ScrieenShots

## [New Commands] - 2023-9-17

Add support for serarch notes in Joplin
## [Add metadata] - 2023-09-18

Added metadata
Expand Down
Binary file modified extensions/search-joplin-notes/assets/Joplin_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion extensions/search-joplin-notes/src/utils/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export const useGetPath = () => {
useEffect(() => {
if (!path.cached) {
getApplications().then((res) => {
const joplinpath = res.filter((app) => app.bundleId === JoplinBundleId)[0].path;
const joplinApp = res.filter((app) => app.bundleId === JoplinBundleId)[0];
const joplinpath = joplinApp ? joplinApp.path : "/Applications/Joplin.app";
setPath(() => ({ cached: true, path: joplinpath }));
});
}
Expand Down

0 comments on commit c8f404a

Please sign in to comment.