Skip to content

Commit a731234

Browse files
Update README.md for 1.5.0, Up version in package.json to 1.5.0
1 parent 40e8b75 commit a731234

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,17 @@ The `name` parameter specifies the name of the created service. The optional
206206
to install a service
207207
* `username` - For Windows platforms a username and password can be specified,
208208
the service will be run using these credentials when started, see the
209-
`CreatedService()` functions [win32 API documentation][createdservice] for
209+
`CreateService()` functions [win32 API documentation][createservice] for
210210
details on the format of the username, on all other platforms this parameter
211211
is ignored
212212
* `password` - See the `username` parameter
213213
* `systemdWantedBy` - For when systemd will be used a target can be specified
214214
for the `WantedBy` attribute under the `[Install]` section in the generated
215215
systemd unit file, defaults to `multi-user.target`
216+
* `dependencies` - AN array of strings specifying other services this service
217+
depends on, this is optional
216218

217-
[createdservice]: https://msdn.microsoft.com/en-us/library/windows/desktop/ms682450(v=vs.85).aspx "CreatedService()"
219+
[createservice]: https://msdn.microsoft.com/en-us/library/windows/desktop/ms682450(v=vs.85).aspx "CreateService()"
218220

219221
The service will be set to automatically start at boot time, but not started.
220222
The service can be started using the `net start "my-service"` command on
@@ -377,6 +379,13 @@ Bug reports should be sent to <stephen.vickers.sv@gmail.com>.
377379
(added `WantedBy` attribute to generated systemd unit)
378380
* Umask not set in system 5 init script
379381

382+
## Version 1.5.0 - 06/01/2018
383+
384+
* Address warnings for 'v8::Value::ToUint32 was declared deprecated'
385+
* Override the stdout/stderr handles instead of using the deprecated
386+
`__defineGetter__()` function
387+
* Specify dependancies when adding a service
388+
380389
# Roadmap
381390

382391
Suggestions and requirements should be sent to <stephen.vickers.sv@gmail.com>.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "os-service",
3-
"version": "1.4.2",
3+
"version": "1.5.0",
44
"description": "Run Node.JS programs as native Operating System Services.",
55
"main": "index.js",
66
"directories": {

0 commit comments

Comments
 (0)