Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting https://git.osmesh.ru/MOS/OpenBoard/blame/commit/6af14c9bc11c18279aead5f297f4edcc608be452/resources/macx/growl.applescript You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard
OpenBoard/resources/macx/growl.applescript

28 lines
760 B

tell application "System Events"
set isRunning to <EFBFBD>
(count of (every process whose name is "GrowlHelperApp")) > 0
end tell
if isRunning then
tell application "GrowlHelperApp"
-- Make a list of all the notification types
-- that this script will ever send:
set the allNotificationsList to <EFBFBD>
{"Uniboard Update Install"}
set the enabledNotificationsList to <EFBFBD>
{"Uniboard Update Install"}
register as application <EFBFBD>
"Uniboard" all notifications allNotificationsList <EFBFBD>
default notifications enabledNotificationsList <EFBFBD>
icon of application "Uniboard"
notify with name <EFBFBD>
"Uniboard Update Install" title <EFBFBD>
"Uniboard" description <EFBFBD>
"Uniboard is installing a new version." application name "Uniboard"
end tell
end if