Download
Enso IDE
Enso IDE is the main product of the Enso project. The packages are stand-alone, they contain both GUI and the backend.
Download links:
This is the recommended download for most users.
Enso Engine
If you are interested in using Enso Engine command line tools only, download the Enso Engine bundle.
Download links:
These are archives containing the Enso portable distribution. User is responsible for setting up the environment variables and adding the bin
directory to the PATH
.
Note that these distributions do not allow you to use the Enso IDE.
It is recommended only for advanced users, who want to just try the compiler CLI.
Anonymous Data Collection
Please note that this release collects anonymous usage data which will be used to improve Enso and prepare it for a stable release. We will switch to opt-in data collection in stable version releases. The usage data will not contain your code (expressions above nodes), however, reported errors may contain brief snippets of out of context code that specifically leads to the error, like "the method 'foo' does not exist on Number". The following data will be collected:
- Session length.
- Graph editing events (node creation, deletion, position change, connect, disconnect, collapse, edit start, edit end). This will not include any information about node expressions used.
- Navigation events (camera movement, scope change).
- Visualization events (visualization open, close, switch). This will not include any information about the displayed data nor the rendered visualization itself.
- Project management events (project open, close, rename).
- Errors (IDE crashes, WASM panics, Project Manager errors, Language Server errors, Compiler errors).
- Performance statistics (minimum, maximum, average GUI refresh rate).
Changelog
Enso IDE
- Table Editor Widget displayed in `Table.new` component.
- New design of Component Browser - the component list is under the
input and shown only in the initial "component browsing" mode - in this mode
the entire input is a filtering pattern (it is not interpreted as parts of
code). After picking any suggestion with Tab or new button the mode is
switched to "code editing", where visualization preview is displayed instead.
Also the component browser help is now displayed in the right-side dock panel. - Drilldown for XML
- Fixed issue where switching edited widget with <kbd>tab</kbd> key did not
updated actual code - Added fullscreen modes to documentation editor and code editor
- Fixed issue with node name assignment when uploading multiple files.
- Cloud file browser inserts `enso:` paths
- Fixed issue where drag'n'dropped files were not uploaded in cloud
projects.
Enso Standard Library
- Implemented in-memory and database mixed `Decimal` column
comparisons. - Relative paths are now resolved relative to the project location, also in the
Cloud. - Added Newline option to Text_Cleanse/Text_Replace.
- Support for reading from Tableau Hyper files.
- Mixed Decimal/Float arithmetic now throws an error; mixed comparisons now
attach warnings. - Support for creating Atoms in expressions.
- IO.print without new line
- Add `Text.to_decimal`.
- Added .floor, .ceil, .trunc to the in-memory `Decimal` column.
- Added vectorized .round to the in-memory `Decimal` column.