Skip to content

v1.1.0

Latest
Compare
Choose a tag to compare
@joetannenbaum joetannenbaum released this 10 Oct 17:59
7a517f9

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();