Skip to content

Releases: joetannenbaum/alfred-workflow

v1.1.0

10 Oct 17:59
7a517f9
Compare
Choose a tag to compare

Add the ability to set arguments, variables, and config from a Script Action. Behaves just like the JSON Utility:

https://www.alfredapp.com/help/workflows/utilities/json/

$workflow->setFromRunScript()
            ->arg('{query}')
            ->variables([
                'color' => 'blue',
                'size'  => 'xl',
            ])
            ->config([
                'url'  => '{query}',
                'utf8' => true,
            ])
            ->output();

v1.0.0

25 Aug 03:04
e2c6252
Compare
Choose a tag to compare

This is a huge re-write of the existing library. It removes a lot of the "magic" that was happening in pre-1.0.0 releases and opts instead for increased clarity and a better IDE experience. It also catches the library up to speed with the latest Alfred features.

You can find a list of the changes in the changelog, a full upgrade guide at alfredphpworkflows.com/docs/upgrading.

For complete documentation, please visit alfredphpworkflows.com.

Bump PHP requirements

02 Aug 18:50
Compare
Choose a tag to compare
0.1.3

make clear that this library can be used for any version of alfred

Make filtering case insensitive

14 Aug 14:29
88e042d
Compare
Choose a tag to compare
Merge pull request #5 from godbout/master

Make the filtering case insensitive

Added variable support

16 May 16:35
Compare
Choose a tag to compare
Merge pull request #2 from wensonsmith/master

add variables support

First Official Release

19 May 20:47
Compare
Choose a tag to compare
0.1.0

doc blocks for result