Releases: joetannenbaum/alfred-workflow
Releases · joetannenbaum/alfred-workflow
v1.1.0
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
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
0.1.3 make clear that this library can be used for any version of alfred
Make filtering case insensitive
Merge pull request #5 from godbout/master Make the filtering case insensitive
Added variable support
Merge pull request #2 from wensonsmith/master add variables support
First Official Release
0.1.0 doc blocks for result