Jump to content

mikedvzo

Member
  • Posts

    207
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by mikedvzo

  1. Just finished an install of Alfred on another machine which the preferences are synced but that should not affect Permissions and I have the same result. No calendar entries show just the version number.
  2. Just to be clear did you get a list of the Calendars or just the version number.
  3. That was my feeling from the start but I never denied Alfred any privileges. Not sure where to go from here. Went to Request permissions and the one thing Alfred 4 has that Alfred 3 does not is in the image but there is no way to change this.
  4. Here you go. It is as basic as possible. https://www.dropbox.com/s/pnx2xgm987nmii6/TEST.alfredworkflow?dl=0
  5. That was my initial thinking and I checked all the Privacy permissions and most seem to coincide with Alfred 3. The only one that was granted for Alfred 3 and not for Alfred 4 was under Automation "Script Editor" and there is no way to grant it unless it is requested that I know of. Alfred 4 is granted access to Calendar and also to Full Disk but still does not work. I tried testing and ran a simple BASH Script workflow that printed the output and it runs the command: /usr/local/bin/icalBuddy -V fine When I try to print out the list of Calendars in Alfred with a BASH script it outputs nothing: /usr/local/bin/icalBuddy calendars So yes it does look like it cannot even access the list of Calendars from Alfred or it does not like the fact that the iCalBuddy programs spits file access errors when running but eta was not an issue with Alfred 3. Here are the errors: [DIVINCEM-mac] ~ > more test.sh /usr/local/bin/icalBuddy -ic 32ED81EC-A838-452B-9ECC-34EB7161267C eventsNow 2> /dev/null | grep -m 1 "https" | sed 's/.*https\(.*\)/https\1/' | sed 's/\(.*\)[ |>].*/\1/' | cut -d ' ' -f 1 [DIVINCEM-mac] ~ > /usr/local/bin/icalBuddy calendars 2019-05-31 13:18:34.250 icalBuddy[7977:2367870] Error loading /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation: dlopen(/System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation, 265): no suitable image found. Did find: /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation: mach-o, but wrong architecture /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/CalendarFoundation: mach-o, but wrong architecture • Birthdays type: Birthday UID: B85D65E7-1609-4A4C-A15D-6C31C29CEE98 • Found in Natural Language type: Local UID: C0781289-C29D-48EE-80CB-FBF462BBC002 • Found in Apps I did try suppressing the errors like this but still no good: /usr/local/bin/icalBuddy calendars 2> /dev/null
  6. I wanted to see if anyone else has run into issues with Alfred 3 workflows not functioning in Alfred 4. So far I only have the 1 broken and it appears as if Alfred does not like the iCalBuddy program. I tested and called the program from a BASH script in Alfred and it fails. It works fine in Alfred 3 so I suspect it has something to do with Alfred 4 burping at the fact the program throws errors when it runs even though it still works. The 1st command in BASH shell script in Alfred outputs the version but the second fails to output the calendar entries. Both work fine in Terminal /usr/local/bin/icalBuddy -V /usr/local/bin/icalBuddy calendars
  7. I have a workflow that stopped working in Alfred 4 upgrade. It use icalBuddy and now that seems to not be able to parse Calendars in Alfred. The workflow was written by someone in Python for Alfred 3 to query the Exchange Calendar and list the meeting invites and allow you to select one and join a WebEx meeting. It is broken since upgrading to Alfred 4. I tried doing some testing since it relies on iCalBuddy and when I try a simple BASH script in Alfred to output the Calendar entries in Alfred it fails. However all other generic arguments to iCalBuddy seem to work. I am wondering if it is some kind of permission issue that Alfred 4 does not have. I have checked everything in Privacy Settings and see nothing. The 1st command in BASH shell script in Alfred outputs the version but the second fails to output the calendar entries. Both work fine in Terminal /usr/local/bin/icalBuddy -V /usr/local/bin/icalBuddy calendars
  8. It would be nice if the Annotation option in Quicklook which is available in Finder worked directly in Alfred.
  9. The "ERROR_OVER_QUERY_LIMIT" appears to be an issue with the Google Location API lookup according to the GITHUB posts. The workflow works but you cannot query other locations.
  10. I would be nice if the Web Search feature supported choosing your browser for each search instead of the default browser. Some sites are not supported with Safari which is my default. I often need to create a workflow just to do this.
  11. I have had this issue too and if I quit all apps it goes away. Still yet to figure out the culprit.
  12. Looks like Google Maps now requires a API. Is there a way to add an API to the workflow? 12:57:19 search.go:181: querying "Google Maps (English)" for "sprat " ... 12:57:19 search.go:133: response={ "error_message" : "This service requires an API key.", "predictions" : [], "status" : "REQUEST_DENIED"
  13. Same workflow just act I had the API setup along time ago with a different workflow and had forgotten
  14. Looks like I fixed it. I did some searching and it appears since I had set the Google Translate API up along time ago the Billing was not tied toe the API and I had to enable it under Quotas. Thanks it works great now. ?
  15. The install succeeded without errors but the Workflow still throws the following errors. I checked the GCP and said the Translation API was enabled. Starting debug for 'Translate service' [2018-04-02 08:51:30][ERROR: input.scriptfilter] Code 1: 08:51:30 workflow.py:2225 DEBUG Workflow version : 1.1.2 08:51:30 workflow.py:1628 DEBUG Reading settings from `/Users/divincem/Library/Application Support/Alfred 3/Workflow Data/com.sozora.google-translate/settings.json` ... 08:51:30 workflow.py:2514 DEBUG Update check not due 08:51:30 workflow.py:1859 DEBUG Loading cached data from : /Users/divincem/Library/Caches/com.runningwithcrayons.Alfred-3/Workflow Data/com.sozora.google-translate/__workflow_update_status.cpickle 08:51:30 workflow.py:2444 DEBUG update_data : {u'available': False} 08:51:30 workflow.py:2633 DEBUG Got password : com.sozora.google-translate:google_translate_api_key 08:51:30 workflow.py:2633 DEBUG Got password : com.sozora.google-translate:google_translate_api_key 08:51:30 workflow.py:2243 ERROR HTTP Error 403: Forbidden Traceback (most recent call last): File "/Users/divincem/Dropbox/Sync/Alfred 3/Alfred.alfredpreferences/workflows/user.workflow.F91D9C36-8081-42D3-A160-36CD90205402/workflow/workflow.py", line 2236, in run func(self) File "base_translate.py", line 102, in main translations = api.get_translations() File "/Users/divincem/Dropbox/Sync/Alfred 3/Alfred.alfredpreferences/workflows/user.workflow.F91D9C36-8081-42D3-A160-36CD90205402/google_translate.py", line 102, in get_translations max_age=MAX_AGE_CACHE) File "/Users/divincem/Dropbox/Sync/Alfred 3/Alfred.alfredpreferences/workflows/user.workflow.F91D9C36-8081-42D3-A160-36CD90205402/workflow/workflow.py", line 1865, in cached_data data = data_func() File "/Users/divincem/Dropbox/Sync/Alfred 3/Alfred.alfredpreferences/workflows/user.workflow.F91D9C36-8081-42D3-A160-36CD90205402/google_translate.py", line 50, in __get_translations raise e HTTPError: HTTP Error 403: Forbidden 08:51:30 workflow.py:2267 DEBUG Workflow finished in 0.325 seconds.
  16. I keep getting this error message during install. It does install but when I try to run the workflow I get an : HTTP Error 403: Forbidden. MY Key is set right becaeu when I set it incorrectly I get a bad key error. Herre is the install NPM Error message I get. I would appreciate any help. This error says my Alfred preferences file are not found at the top but the file definitely exists. [DIVINCEM-MAC] /usr/local…ib/node_modules/npm > sudo /usr/local/bin/npm install -g alfred-polyglot > alfred-polyglot@1.1.5 postinstall /usr/local/lib/node_modules/alfred-polyglot > alfy-init { Error: Command failed: alfred-link Error: Alfred preferences not found at location /Users/divincem/Library/Preferences/com.runningwithcrayons.Alfred-Preferences-3.plist at pathExists.then.exists (/usr/local/lib/node_modules/alfred-polyglot/node_modules/resolve-alfred-prefs/index.js:15:10) at <anonymous> at Promise.all.then.arr (/usr/local/lib/node_modules/alfred-polyglot/node_modules/execa/index.js:201:11) at <anonymous> at process._tickCallback (internal/process/next_tick.js:188:7) code: 1, killed: false, stdout: '', stderr: 'Error: Alfred preferences not found at location /Users/divincem/Library/Preferences/com.runningwithcrayons.Alfred-Preferences-3.plist\n at pathExists.then.exists (/usr/local/lib/node_modules/alfred-polyglot/node_modules/resolve-alfred-prefs/index.js:15:10)\n at <anonymous>\n', failed: true, signal: null, cmd: 'alfred-link', timedOut: false } npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! alfred-polyglot@1.1.5 postinstall: `alfy-init` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the alfred-polyglot@1.1.5 postinstall script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in: npm ERR! /Users/divincem/.npm/_logs/2018-04-01T23_31_41_596Z-debug.log
  17. Andrew, The Delay of .9s is not long enough in 3.6 for OneNote and I must still leave the "Auto Expansion Option to Restore Clipboard tuned off.
  18. Quite often I have run into a situation where I have assigned a Hotkey to a specific app only and do not recall what I did. I am then forced to comb through all my workflows, and I have a lot, to find out where it is being used. Is there a way to check which Workflow is using a specific hotkey?
  19. Thanks that is exactly what I was looking for. I did not think in that frame and was stuck on making Hangouts to be the default Mac OS Dial program.
  20. I know this is not specific to Alfred but does anyone know if there is a way to associate the tel:{query} Phone field under Contacts Features with Google Hangouts. When I used to work for Cisco I had this tied to Cisco Jabber so I could dial from Alfred Contact search with Jabber. I want too do the same with Google Hangouts which I run in Chrome to Dial a phone Number. I have Jabra USB headset connection to my Laptop and the only missing piece is the convenient Dialer from Alfred. I have my Contacts uploaded to Google so I can Dial with Hangouts form Chrome by name but Alfred is far more convenient. I am thinking if there is way to make Google Hangouts the Default for Calls in FaceTime. However, since Hangouts is not a resister Dialer applications not sure how to accomplish or if there is a possible workaround.
  21. I use BTT (BetterTouch Tool) and this program has a Remote iPhone control too. It does exactly what I am asking for where it allows me to have 2 entries on my iPhone, one Direct over the Internet and one local over Bonjour.
  22. Any chance this feature can be implemented? I have been asking for this feature since the Remote App was first introduced. Seems like it should be doable.
×
×
  • Create New...