|
| 1 | +--- |
| 2 | +title: "Version 0.44 Release Notes" |
| 3 | +--- |
| 4 | + |
| 5 | +import Release from "@/components/releases/Release.astro"; |
| 6 | +import { Image, Video } from "@/components/Media"; |
| 7 | +import { mdxOverrides } from "@/components/mdxOverrides"; |
| 8 | +import { Divider, Flex } from "@synnaxlabs/pluto"; |
| 9 | + |
| 10 | +export const components = mdxOverrides; |
| 11 | + |
| 12 | +<Release |
| 13 | + version="0.44.0" |
| 14 | + date="Aug 11, 2025" |
| 15 | + title="Embedded Console" |
| 16 | +> |
| 17 | + |
| 18 | +<Image client:only="react" id="releases/0-44-0/thumbnail" themed={false} /> |
| 19 | + |
| 20 | +Synnax v0.44 introduces an embedded Console into the Synnax Cluster, which can be used |
| 21 | +in place of the desktop Console application. |
| 22 | + |
| 23 | +We've also improved the data export process by adding dedicated CSV export buttons to |
| 24 | +both ranges and line plots. |
| 25 | + |
| 26 | +As always, this release comes with a number of additional performance, stability, and |
| 27 | +user experience improvements to Synnax. |
| 28 | + |
| 29 | +<Divider.Divider x /> |
| 30 | + |
| 31 | +### Embedded Console |
| 32 | + |
| 33 | +Every Synnax cluster now comes with an embedded, browser-based Console. After starting |
| 34 | +the cluster using the default port of `9090`, you can access the Console at |
| 35 | +`http://localhost:9090`. |
| 36 | + |
| 37 | +All functionality of the desktop Console is available in the embedded Console, with the |
| 38 | +notable exception of multi-window functionality. |
| 39 | + |
| 40 | +The desktop Console will continue to be supported, and it's still our preferred way to |
| 41 | +work with a Synnax deployment. |
| 42 | + |
| 43 | +<Divider.Divider x /> |
| 44 | + |
| 45 | +### Data Export |
| 46 | + |
| 47 | +We've added dedicated CSV export buttons to both ranges and line plots, making it much |
| 48 | +easier to export data from Synnax for analysis. |
| 49 | + |
| 50 | +<Flex.Box x justify="center"> |
| 51 | + <Image |
| 52 | + client:only="react" |
| 53 | + id="releases/0-44-0/csv" |
| 54 | + themed={false} |
| 55 | + style={{ width: 350 }} |
| 56 | + /> |
| 57 | +</Flex.Box> |
| 58 | + |
| 59 | +<Divider.Divider x /> |
| 60 | + |
| 61 | +### Legend Y-Axis Indicators |
| 62 | + |
| 63 | +The line plot legend now separates lines to into groups by their corresponding y-axis. |
| 64 | + |
| 65 | +<Flex.Box x justify="center"> |
| 66 | + <Image |
| 67 | + client:only="react" |
| 68 | + id="releases/0-44-0/legend" |
| 69 | + themed={false} |
| 70 | + style={{ width: 100 }} |
| 71 | + /> |
| 72 | +</Flex.Box> |
| 73 | + |
| 74 | +<Divider.Divider x /> |
| 75 | + |
| 76 | +### Added Methods for Reading the Latest Values from a Channel |
| 77 | + |
| 78 | +We've added new methods in the Python and TypeScript clients for reading the most recent |
| 79 | +values written to one or more channels. |
| 80 | + |
| 81 | +##### Python |
| 82 | + |
| 83 | +In Python, simply call `read_latest` with the channels and the number of values you want |
| 84 | +to read. Additional documentation can be found |
| 85 | +[here](/reference/python-client/read-data). |
| 86 | + |
| 87 | +```python |
| 88 | +import synnax as sy |
| 89 | + |
| 90 | +client = sy.Synnax() |
| 91 | + |
| 92 | +print(client.read_latest(["daq_time", "ox_pt_1"], 1)) |
| 93 | +# { |
| 94 | +# "daq_time": [1723200000000000000], |
| 95 | +# "ox_pt_1": [100.0] |
| 96 | +# } |
| 97 | +``` |
| 98 | + |
| 99 | +##### TypeScript |
| 100 | + |
| 101 | +The TypeScript client has a `readLatest` method that works in the same way. Additional |
| 102 | +documentation can be found [here](/reference/typescript-client/read-data). |
| 103 | + |
| 104 | +```typescript |
| 105 | +import { Synnax } from "@synnaxlabs/client"; |
| 106 | + |
| 107 | +const client = new Synnax(); |
| 108 | + |
| 109 | +console.log(client.readLatest(["daq_time", "ox_pt_1"], 1)); |
| 110 | +// { |
| 111 | +// "daq_time": [1723200000000000000], |
| 112 | +// "ox_pt_1": [100.0] |
| 113 | +// } |
| 114 | +``` |
| 115 | + |
| 116 | +<Divider.Divider x /> |
| 117 | + |
| 118 | +### Minor Improvements and Bug Fixes |
| 119 | + |
| 120 | +- Added status indicators for devices and drivers to selection dialogs. |
| 121 | +- Made a number of updates to real-time data fetching infrastructure, improving the |
| 122 | + reactivity and performance of the cosnole. |
| 123 | +- Added `Command + W` and `Control + W` keyboard shortcuts to close modals, and added a |
| 124 | + press and hold delay to close the application on MacOS. |
| 125 | +- Fixed an issue where the Palette would not properly switch between command and search |
| 126 | + modes when closed and re-opened. |
| 127 | +- Added drag and drop importing and exporting of tasks. |
| 128 | + |
| 129 | +</Release> |
0 commit comments