1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-14 23:33:38 +00:00

1. Updated service-manager to support installing LaunchAgents

2. Started skeleton code for MacOS message-box
This commit is contained in:
Bryan Roe
2019-05-20 17:25:25 -07:00
parent e28b5d7b0e
commit 567feba9ff
2 changed files with 84 additions and 0 deletions

View File

@@ -208,6 +208,21 @@ function linux_messageBox()
};
}
function macos_messageBox()
{
this._ObjectID = 'message-box';
this.create = function create(title, caption, timeout)
{
};
this.notify = function notify(title, caption)
{
};
this.startServer = function startServer(options)
{
};
}
switch(process.platform)
{
case 'win32':
@@ -215,6 +230,9 @@ switch(process.platform)
break;
case 'linux':
module.exports = new linux_messageBox();
break;
case 'darwin':
break;
}