Releases: deanishe/alfred-workflow
Releases · deanishe/alfred-workflow
Optimise caching performance
v1.7.1
Add support for Alfred 2.4's environmental variables
See this thread for more information.
Here is Alfred-Workflow's corresponding documentation.
Allow duplicate items in `filter`
Fix multiple calls to `Response.content`
v1.6.1 v1.6.1
Add `iter_content` method to web.py
Implement #14
Enable deletion of individual cache files
By passing None
as the data argument to Workflow.cache_data()
, you can force the deletion of the corresponding cache file:
from workflow import Workflow
wf = Workflow()
wf.cache_data('test', None)
will delete the cache file for name/key test
.
This may be useful in forcing your workflow to update its cache data.
Multi-word queries
v1.5
Revert default filter matching to MATCH_ALL
Add support for modifier subtitles
You can now specify subtitles to be shown when modifier keys are pressed
Fix JSON decoding in web.py
v1.4.2