Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ $a-&gt;zone_filter("{query}");</string>
<key>script</key>
<string>set temp to "{query}"
if temp is "" then
tell application "Alfred 3" to search "azone"
tell application "Alfred" to search "azone"
end if</string>
<key>type</key>
<integer>6</integer>
Expand Down Expand Up @@ -623,7 +623,7 @@ $a-&gt;workspace_filter("{query}");</string>
<key>script</key>
<string>set temp to "{query}"
if temp is "" then
tell application "Alfred 3" to search "anew"
tell application "Alfred" to search "anew"
end if</string>
<key>type</key>
<integer>6</integer>
Expand Down
6 changes: 3 additions & 3 deletions workflows.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Name: Workflows
* Description: This PHP class object provides several useful functions for retrieving, parsing,
* and formatting data to be used with Alfred 3 Workflows.
* and formatting data to be used with Alfred Workflows.
* Author: David Ferguson (@jdfwarrior)
* Revised: 2/27/2013
* Version: 0.3.2
Expand Down Expand Up @@ -38,8 +38,8 @@ function __construct()
$this->bundle = basename( $this->path );
endif;

$this->cache = $this->home. "/Library/Caches/com.runningwithcrayons.Alfred-3/Workflow Data/".$this->bundle;
$this->data = $this->home. "/Library/Application Support/Alfred 3/Workflow Data/".$this->bundle;
$this->cache = $this->home. "/Library/Caches/com.runningwithcrayons.Alfred/Workflow Data/".$this->bundle;
$this->data = $this->home. "/Library/Application Support/Alfred/Workflow Data/".$this->bundle;

if ( !file_exists( $this->cache ) ):
exec("mkdir '".$this->cache."'");
Expand Down