Skip to content

Releases: deanishe/alfred-workflow

Add self-updating ability

25 Sep 09:51
Compare
Choose a tag to compare

If your workflow uses GitHub releases, with version 1.9 of Alfred-Workflow it will be able to update itself.

See the documentation for information on setting up and using the self-updating feature.

Thanks to @fniephaus

Reorganise documentation

14 Sep 12:27
Compare
Choose a tag to compare

Move documentation out of source code and into the docs.

Split docs into several smaller files.

Change theme to Read the Docs theme.

Mirror documentation on Read the Docs.

Clarify behaviour of Workflow.filter()

13 Sep 22:23
Compare
Choose a tag to compare

Workflow.filter() now raises a ValueError if query is empty or a blank string.

Improve and clarify documentation.

Documentation is now also available on Read the Docs (beta).

Fix filter sort regression

13 Sep 09:35
Compare
Choose a tag to compare

Work from within non-ASCII directories

29 Aug 19:55
Compare
Choose a tag to compare

Fix bug #29 where non-ASCII characters in the path to the workflow's directory would cause Workflow to fail.

Add support for Large Type and Copy Text

17 Aug 18:49
Compare
Choose a tag to compare

Add largetext and copytext arguments to Workflow.add_item().

If Script Filter results have a specified copytext, this will be copied to the clipboard (instead of arg) when CMD+C is pressed on the item.

If results have a specified largetext, this will be shown in Alfred's large text pop-up (instead of the query) when CMD+L is pressed on the item.

Allow workflow.py to work from outside the workflow

17 Aug 15:31
Compare
Choose a tag to compare

This will enable Alfred-Workflow to be installed via pip and the bundler.

Improve encoding detection of HTTP resources

17 Aug 12:01
Compare
Choose a tag to compare
  • Better parsing of HTTP headers
  • Better sniffing of HTML/XML document headers
  • Better fallback default encodings for common mimetypes

Improve docs; make Settings.save() method public

16 Aug 21:38
Compare
Choose a tag to compare

Add improved documentation regarding settings, stored data, background processes

Add data storage methods and custom serializers

08 Aug 20:30
Compare
Choose a tag to compare
  • Add new Workflow.store_data(name, data) and Workflow.stored_data(name) methods.
  • Add SerializerManager to enable custom serialization formats for stored and cached data.

Implements #17