Dean Jackson
Dean Jackson
- Add latest version of alfred.py to fix Unicode normalisation problems - Enable workflow to manage its own configuration (editing JSON is tricky and TextEdit breaks it by default due...
The workflow doesn't normalise the query, so a query containing, e.g., `ü` will not match a filename containing `ü`. OS X filepaths are NFD-normalised Unicode, Python Unicode is NFC-normalised by...
When first installing the workflow, it fails to create its configuration file. I suspect it may be because you're sending `!config` in the code but looking for `!setup` in the...
Add description of how the workflow and extension work to docs.
Add mutual compatibility check to workflow and extension. - [ ] Replace `ping` command with `version` command - [ ] Add "minimum compatible extension version" to workflow - [ ]...
Are there any use cases for calling the workflow—or third-party workflows—from the extension?
If cached items exist, fetch new data in background and use cached data until update is complete
Some fields (description, …?) can contain HTML. - [ ] Render field HTML in the Quicklook preview. - [ ] Sanitise HTML with bluemonday for privacy/security. - [ ] URLs...