diff --git a/ChangeLog.md b/ChangeLog.md
index d6eb990..ce00f8a 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,14 @@
# Setup Manager - Change Log
+## 1.3.1
+(2025-07-17)
+
+- updates to Polish localization
+- improvements to launch process at login window
+- logs macOS version at launch
+- email addresses and urls in markdown text are not active links any more
+- documentation updates and clarifications
+
## 1.3
(2025-07-08)
diff --git a/ConfigurationProfile.md b/ConfigurationProfile.md
index 1279413..30ed57a 100644
--- a/ConfigurationProfile.md
+++ b/ConfigurationProfile.md
@@ -422,6 +422,20 @@ Example:
```
+This example is the equivalent of this command line:
+
+```
+sudo systemsetup -setTimeZone Europe/Amsterdam
+```
+
+Notes: to break the command in to its components
+
+- full path to the command
+- arguments are split into the `arguments` array, one string entry per argument, no quoting or backslash escaping
+- if the command contains a `&` it needs to be escaped with `&`
+- shell constructs such as substitution (e.g `$SHELL`), redirection (e.g `&2>1`)
+- `sudo` won't work in this context, instead set `requiresRoot` to true
+
### Jamf Policy Trigger
#### `policy`
diff --git a/Docs/Network.md b/Docs/Network.md
index 165aa5b..8e62bd5 100644
--- a/Docs/Network.md
+++ b/Docs/Network.md
@@ -3,9 +3,9 @@
Setup Manager can display the current network status in the top right corner of the main window.
By default, the icon will only appear when
-- there is no network connection
+- there is no network connection or the connection is lost
- Network Relay is configured
-- the `networkCheck` array is present in the profile
+- the `networkCheck` array is present in the profile, even when it is empty
You can always manually toggle the visibility of the network status icon with command-N.
@@ -69,6 +69,13 @@ Example:
```
+Example: empty `networkCheck` array to force Network icon to always show
+
+```xml
+networkCheck
+
+```
+
## Network Change logging
Setup Manager 1.3 adds logging for changes to network interfaces. It is possible that there will multiple entries in the log with regards to the same network change. Most changes logged will be neutral and should not affect your deployment negatively.
diff --git a/Docs/Webhooks.md b/Docs/Webhooks.md
index de67c51..af4c69e 100644
--- a/Docs/Webhooks.md
+++ b/Docs/Webhooks.md
@@ -128,3 +128,37 @@ Use this webhook format in the Setup Manager profile:
--insert url from Slack here--
```
+
+### Multiple webhooks
+
+You can send multiple services per event:
+
+```xml
+webhooks
+
+ finished
+
+ https://example.com/webhook-finish
+
+ kind
+ teams
+ url
+ --insert url from Teams Workflows here--
+
+
+ started
+
+ https://example.com/webhook-start
+
+ kind
+ teams
+ url
+ --insert url from Teams Workflows here--
+
+
+
+```
+
+### Webhooks in Debug mode
+
+Webhooks are generally _not_ sent when DEBUG is set to true. However, if you set a `DEBUG` key to `true` _inside_ the webhooks dictionary to true, webhooks will be sent, even when global DEBUG is enabled.