adium/adium

Updated Changes.txt for 1.5.10.4.
adium-1.5.10.4
2017-04-25, Robert Vehse
09440b7b46e0
Updated Changes.txt for 1.5.10.4.
global HandyAdiumScripts
on run
tell application "Adium"
set c to count accounts
tell service "AIM"
set newAccount to make new account with properties {name:"test"}
end tell
if (count accounts) is not c + 1 then
--for some reason, I failed to make an account.
--no cleanup is necessary
error
end
delete newAccount
end tell
end run