Skip to content

Commit

Permalink
Update search-joplin-notes extension
Browse files Browse the repository at this point in the history
- fix:conflict
- fix:changelog
- fix: app path
- add:command
- Merge pull request raycast#18 from wisdom-plus/pubilc
- add:categries
- version_up
- Merge pull request raycast#17 from wisdom-plus/type
- fix:type
- Merge pull request raycast#16 from wisdom-plus/cached_error
- fix:pingjoplin
- fix:cached
- Merge pull request raycast#13 from wisdom-plus/README
- add:metadata
- add:README
- Merge pull request raycast#11 from wisdom-plus/applescript
- rm:applescript
- change:icon image
- Merge pull request raycast#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 raycast#1 from wisdom-plus/version_up
- fix:localhost
- upgrade: packerage
- Merge pull request raycast#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
  • Loading branch information
wisdom-plus committed Jan 27, 2024
1 parent 12fe272 commit f24c4e1
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 f24c4e1

Please sign in to comment.