Changelog 3 1 5 » History » Version 2
  Torbjorn Carlqvist Admin, 12/02/2022 07:46 PM 
  
| 1 | 1 | Torbjorn Carlqvist Admin | h1. Changelog 3.1.5 | 
|---|---|---|---|
| 2 | |||
| 3 | version:3.1.5 (2022-12-02) | ||
| 4 | |||
| 5 | * New features: | ||
| 6 | # A new JS proxy function for doing DTX Re-Init from JS: | ||
| 7 | <pre><code class="javascript"> | ||
| 8 | Controller.reInit(); | ||
| 9 | </code></pre> | ||
| 10 | # IP change watchdog | ||
| 11 | Added a possibility to control the watchdog that restart DTX when an bounded system IP address changes and stay changed for over 1 minute. This is now a checkbox in settings page. | ||
| 12 | |||
| 13 | * Smaller feature changes | ||
| 14 | # #10 Additional settings for Email SMTP TLS connection fro settings page | ||
| 15 | 2 | Torbjorn Carlqvist Admin | # Added os process id (PID) in the response from Controller.execCommand() executions. This PID can be used to track the process in OS. | 
| 16 | 1 | Torbjorn Carlqvist Admin | Example of exec: | 
| 17 | <pre><code class="javascript"> | ||
| 18 | print(Controller.execCommand("ping google.com")); | ||
| 19 | </code></pre> | ||
| 20 | Response: | ||
| 21 | {"exit_code":0, *"pid":15260* ,"lines": | ||
| 22 | ["","Pinging google.com [216.58.207.206] with 32 bytes of data:", | ||
| 23 | "Reply from 216.58.207.206: bytes=32 time=14ms TTL=53", | ||
| 24 | "Reply from 216.58.207.206: bytes=32 time=14ms TTL=53", | ||
| 25 | "Reply from 216.58.207.206: bytes=32 time=14ms TTL=53", | ||
| 26 | "Reply from 216.58.207.206: bytes=32 time=13ms TTL=53", | ||
| 27 | "", | ||
| 28 | "Ping statistics for 216.58.207.206:", | ||
| 29 | " Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), | ||
| 30 | ", | ||
| 31 | "Approximate round trip times in milli-seconds:", | ||
| 32 | " Minimum = 13ms, Maximum = 14ms, Average = 13ms"]} | ||
| 33 | |||
| 34 | |||
| 35 | * Bug fixes: | ||
| 36 | #11 Fixed the save of log files from UI | ||
| 37 | |||
| 38 | * Build: | ||
| 39 | No change |