Jump to content

Acidham

Member
  • Posts

    429
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Acidham

  1. @Bogga The WF output looks ok and Reminder should be created. What macOS version are you using? Are you sure that Reminders has a list "Work" and not in subfolders? You can run following test in Apple ScriptEditor and see if the reminder will be created: tell application "Reminders" set theDate to date ("12 February 2020 at 12:00:00 am") tell list "Work" make new reminder with properties {name:"Test", remind me date:theDate} end tell end tell
  2. @samvlu: Is there a GIT for that workflow to make pull request...I added "Browse in Terminal" ... not a big thing but I tend to keep my version in sync with your version
  3. @deanishe any idea how to exchange diacritics (e.g. é → e) in python?
  4. In my previous post I rejected to add subfolder scanning/searching but adding more than one folder would be a nice alternative. I will take a look into adding multiple folder in config which will be searched as well... I am using YAML front to ensure Tags: only in YAML Front will be searched for Tags. But I could add an option to allow yaml_tags_only=True. When set to False tags in the full content will be searched. Alternatively you can search for #tagname in search. This will find tags in the text. Thank you for your feedback, stay tuned ....
  5. Seems to be an issue with Image Events under Catalina: https://forums.developer.apple.com/thread/124420 To fix there is a simple solution: https://darjeelingsteve.com/articles/Fixing-"Image-Events"-AppleScripts-Broken-in-macOS-10.15-Catalina.html
  6. Finally version 1.0 including Firefox History AND Bookmarks, plus: Improved search: Now supporting white-space and & search Now supports special character search like german umlauts Download on Git
  7. With new version 0.9.9 I added support for Firefox History. Bookmarks will follow Download on Git
  8. Wow, great workflow with JS Applescript!
  9. Here we go v.2.2, let me know how it goes... New Features Added ability to paste tag from tag search into frontmost app Added new flag to settings to change search behaviour to run exact match or match any string (exact_match) Improvements Exchanged custom html to markdown converter to pandoc. The custom converter were not able to import a some webpages. Please ensure to install pandoc (the link can be found in mdhelp or README) rewrite of the search algorithm due to unicode issues Bugfixes The Search is now unicode savy, means e.g. german umlauts will now be found in md notes Improved filename normalisation Download via Git
  10. @deanishe Agree, therefore I spent the whole Saturday to solve this issue. Over night I came to conclusion to unicodedata.normalize both content of the markdown and search terms and I did some tests so far. It seems to work because both encodings are normalised in the right way. Discard all was my first idea but I am not happy because it distorts the search and results. I am running some further tests and will release hopefully today.
  11. Thank you for reporting! I have the same issue I am German. Luckily I started to work on this today and so far I am able to get this fixed for for german umlauts but Swedish is missing. I need to work on it. The current solution is I am replacing e.g. ä with ae for search terms and within the notes content .. the search can then match. Is there a similar mapping in Swedish language? Sorry but unicodes are pain in the ass with Python 2.x!
  12. With v2.0 links to multiple markdown files (File Action) can be generated into a new markdown note e.g. to collect all invoices related to an insurance Download at Git
  13. A few improvements requests: Sometimes the Workflows requires some time until results will be shown. The "Please Wait Subtext..." would help to inform the user that the workflow is executing Rename "Search Notes.app" to "Search Notes". Makes it easier do differentiate between reals apps and workflow when running Alfred with Keyword When nothing is found, means search result in 0 hits, it would be better to write back to the script filter something like "nothing was found" or "the query does not return a note". When nothing is written back the enduser is not sure if the workflow breaks or if nothing was found. Implement OneUpdater from @vitor Not sure if I am on latest version, therefore it would be great to start with using/entering version number once you release the workflow Otherwise it's a great workflow since I moved from Evernote to Apple Notes and I am using it daily!
  14. Good catch! I was not aware that grouped lists are not accessible within AppleScript. Since groups are new to Reminders it seems Apple did implemented access to groups in AppleScript so far.
  15. What is the name of your default list? (Reminders → Preferences → Default List) Please also try to get default list via Apple Script Editor and let me know: tell application "Reminders" get name of default list end tell
  16. Ok, let's proceed with two additional tests: 1. Is Alfred raising some issues in Debug Console? Open Alfred Preference → Search for Apple Reminders workflow → click on the small bug top right corner → execute workflow. Please post result in case you encounter an issue. 2. Execute following script in ScriptEditor. Open Script Editor (e.g. with Alfred of Spotlight), copy&paste the following and execute it by pressing CMD-R tell application "Reminders" set defaultList to name of default list make new reminder with properties {name:"Test"} end tell If successful you should find a reminder in Inbox with name "Test". Let me know if Script Editor throws an error.
  17. Ah ok you already tried 🤔 I am on macOS 10.15.2 but I believe that does not make different. Let's start with that: Did you visit Preferences → Privacy → Reminders and set checkmark on Alfred 4.app ?
  18. Today I experienced the same issue with Spotlight and @Vero you were right, even if I am not seeing Spotlight and/or Alfred I can type e.g. an App and it will be opened. This means Alfred and Safari is hidden after I plugged in my second monitor. It seems the issue was introduced with macOS 10.15.2 and it seems not to be related to Alfred.
  19. Yep, try it and you will see...
  20. @Vero that is a good idea... I will try it next week when I am back in the office with my second display and let you know....
  21. I think yes 🤔 1. build in search for bookmarks (url) only. 2. build in opens url in browser, this WF opens in 1Password but maybe I am missing something and it is possible there is no difference...let me know !
  22. Apple Reminders 2.1.1 is available on Git: https://github.com/Acidham/alfred-apple-reminder Packal will not be updated anymore!
  23. I am experiencing exactly the same with Alfred 4.0.7 pre-release Do you sync your preferences? yes via dropbox Do you have an external screen? Do you plug and unplug from it? yes I am using external and yes plug and unplug Do you have any errors in Console after wake? Need to check next time
  24. Another Workflow to search 1Password items and open in 1Password. Download on Git
×
×
  • Create New...