rice.shawn Posted July 25, 2014 Share Posted July 25, 2014 Since more people are starting to get access to Yosemite, perhaps we can accumulate some relevant data here about what is relevant to workflows and Alfred. To start: Bash: 3.2.51 PHP: 5.5.9 Python: 2.7.6 Ruby: ruby 2.0.0p481 Zsh: 5.0.5 Link to comment
ClintonStrong Posted August 5, 2014 Share Posted August 5, 2014 (edited) Yosemite no longer includes Ruby 1.8, so extensions relying on that (or frameworks like RubyCocoa that were only installed for 1.8) will no longer work. They've also dropped Python 2.3 and 2.5, but 2.6 (specifically 2.6.9) is still installed alongside 2.7.6. Safari now stores its history in a database rather than a property list, but I expect most workflows searching Safari's history just use a file filter on ~/Library/Caches/Metadata/Safari/History. That still seems to be working. Edited August 5, 2014 by Clinton Strong Link to comment
rice.shawn Posted August 5, 2014 Author Share Posted August 5, 2014 No sign of it at all. Link to comment
Carlos-Sz Posted August 24, 2014 Share Posted August 24, 2014 It seems Yosemite is not creating a plist file using System Events (AppleScript), although it can write and read. The example below does not work under Yosemite. Note that _data is the path of the plist: tell application "System Events" set parentElement to make new property list item with properties {kind:record} set plistFile to make new property list file with properties {contents:parentElement, name:my _data & "settings.plist”} end tell But the code below works and can be used to create the plist if it does not exist: do shell script "defaults write " & quoted form of (my _data & "settings.plist") & space & "WorkflowSettings" & space & "OK" Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now