Fixed compilation of messages.mc.
[nssm.git] / ChangeLog.txt
1 Changes since 2.9
2 -----------------
3   * Fixed failure to compile messages.mc in paths containing spaces.
4
5   * Fixed edge case with CreateProcess().
6
7     Correctly handle the case where the application executable is under
8     a path which contains space and an executable sharing the initial
9     part of that path (up to a space) exists.
10
11 Changes since 2.8
12 -----------------
13   * Fixed failure to run on Windows versions prior to Vista.
14
15 Changes since 2.7
16 -----------------
17   * Read Application, AppDirectory and AppParameters before each restart so
18     a change to any one doesn't require restarting NSSM itself.
19
20   * Fixed messages not being sent to the event log correctly in some
21     cases.
22
23   * Try to handle (strictly incorrect) quotes in AppDirectory.
24
25     Windows directories aren't allowed to contain quotes so CreateProcess()
26     will fail if the AppDirectory is quoted.  Note that it succeeds even if
27     Application itself is quoted as the application plus parameters are
28     interpreted as a command line.
29
30   * Fixed failed to write full arguments to AppParameters when
31     installing a service.
32
33   * Throttle restarts.
34
35     Back off from restarting the application immediately if it starts
36     successfully but exits too soon.  The default value of "too soon" is
37     1500 milliseconds.  This can be configured by adding a DWORD value
38     AppThrottle to the registry.
39     
40     Handle resume messages from the service console to restart the
41     application immediately even if it is throttled.
42
43   * Try to kill the process tree gracefully.
44
45     Before calling TerminateProcess() on all processes assocatiated with
46     the monitored application, enumerate all windows and threads and
47     post appropriate messages to them.  If the application bothers to
48     listen for such messages it has a chance to shut itself down gracefully.
49
50 Changes since 2.6
51 -----------------
52   * Handle missing registry values.
53
54     Warn if AppParameters is missing.  Warn if AppDirectory is missing or
55     unset and choose a fallback directory.
56     First try to find the parent directory of the application.  If that
57     fails, eg because the application path is just "notepad" or something,
58     start in the Windows directory.
59
60   * Kill process tree when stopping service.
61
62     Ensure that all child processes of the monitored application are
63     killed when the service stops by recursing through all running
64     processes and terminating those whose parent is the application
65     or one of its descendents.
66
67 Changes since 2.5
68 -----------------
69   * Removed incorrect ExpandEnvironmentStrings() error.
70
71     A log_event() call was inadvertently left in the code causing an error
72     to be set to the eventlog saying that ExpandEnvironmentStrings() had
73     failed when it had actually succeeded.
74
75 Changes since 2.4
76 -----------------
77   * Allow use of REG_EXPAND_SZ values in the registry.
78
79   * Don't suicide on exit status 0 by default.
80
81     Suiciding when the application exits 0 will cause recovery actions to be
82     taken.  Usually this is inappropriate.  Only suicide if there is an
83     explicit AppExit value for 0 in the registry.
84     
85     Technically such behaviour could be abused to do something like run a
86     script after successful completion of a service but in most cases a
87     suicide is undesirable when no actual failure occurred.
88
89   * Don't hang if startup parameters couldn't be determined.
90     Instead, signal that the service entered the STOPPED state.
91     Set START_PENDING state prior to actual startup.
92
93 Changes since 2.3
94 -----------------
95   * Ensure systems recovery actions can happen.
96
97     In Windows versions earlier than Vista the service manager would only
98     consider a service failed (and hence eligible for recovery action) if
99     the service exited without setting its state to SERVICE_STOPPED, even if
100     it signalled an error exit code.
101     In Vista and later the service manager can be configured to treat a
102     graceful shutdown with error code as a failure but this is not the
103     default behaviour.
104
105     Try to configure the service manager to use the new behaviour when
106     starting the service so users who set AppExit to Exit can use recovery
107     actions as expected.
108
109     Also recognise the new AppExit option Suicide for use on pre-Vista
110     systems.  When AppExit is Suicide don't stop the service but exit
111     inelegantly, which should be seen as a failure.
112
113 Changes since 2.2
114 -----------------
115   * Send properly formatted messages to the event log.
116
117   * Fixed truncation of very long path lengths in the registry.
118
119 Changes since 2.1
120 -----------------
121  *  Decide how to handle application exit.
122
123     When the service exits with exit code n look in
124     HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters\AppExit\<n>,
125     falling back to the unnamed value if no such code is listed.  Parse the
126     (string) value of this entry as follows:
127
128         Restart: Start the application again (NSSM default).
129         Ignore:  Do nothing (srvany default).
130         Exit:    Stop the service.
131
132 Changes since 2.0
133 -----------------
134   * Added support for building a 64-bit executable. 
135
136   * Added project files for newer versions of Visual Studio.