From 2d6da67fe869e8a512bdd48ffb10fe18d76231bb Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Wed, 4 Apr 2012 22:30:06 +0100 Subject: [PATCH] NSSM 2.11. --- ChangeLog.txt | 4 ++++ README.txt | 4 +++- nssm.h | 5 ++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index ec9d9e1..59b679a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +Changes since 2.10 +----------------- + * Support AppEnvironment for compatibility with srvany. + Changes since 2.9 ----------------- * Fixed failure to compile messages.mc in paths containing spaces. diff --git a/README.txt b/README.txt index 5494575..444d30d 100644 --- a/README.txt +++ b/README.txt @@ -1,5 +1,5 @@ NSSM: The Non-Sucking Service Manager -Version 2.10, 2011-10-11 +Version 2.11, 2012-04-04 NSSM is a service helper program similar to srvany and cygrunsrv. It can start any application as an NT service and will restart the service if it @@ -28,6 +28,8 @@ Since version 2.8, NSSM tries harder to shut down the managed application gracefully and throttles restart attempts if the application doesn't run for a minimum amount of time. +Since version 2.11, NSSM respects srvany's AppEnvironment parameter. + Usage ----- In the usage notes below, arguments to the program may be written in angle diff --git a/nssm.h b/nssm.h index 4eba7e6..ae4114a 100644 --- a/nssm.h +++ b/nssm.h @@ -16,9 +16,8 @@ int str_equiv(const char *, const char *); #define NSSM "nssm" -#define NSSM_VERSION "2.10" -#define NSSM_DATE "2011-10-11" -#define NSSM_RUN "run" +#define NSSM_VERSION "2.11" +#define NSSM_DATE "2012-04-04" /* MSDN says the commandline in CreateProcess() is limited to 32768 characters -- 2.7.4