Merge branch 'unstable' into develop

Original commit: 14e0c62f51
This commit is contained in:
Adam Obuchowicz 2021-06-25 17:38:04 +02:00
commit a1e611ac35
4 changed files with 10 additions and 8 deletions

View File

@ -452,7 +452,6 @@ jobs:
- version_assertions
- lint
- test
- wasm-test
- build
release_to_cdn:
name: CDN Release
@ -517,5 +516,4 @@ jobs:
- version_assertions
- lint
- test
- wasm-test
- build

View File

@ -9,8 +9,6 @@
<kbd>ctrl</kbd>+<kbd>p</kbd>. This mode does not display any information yet.
In the future, it will display the running times of nodes and maybe more
useful statistics.
- [Signed builds.][1366] Our builds are signed and will avoid warnings from the
operating system about being untrusted.
- [Area selection][1588]. You can now select multiple nodes at once. Just click
and drag on the background of your graph and see the beauty of the area
selection appear.
@ -35,7 +33,6 @@
[1588]: https://github.com/enso-org/ide/pull/1588
[1577]: https://github.com/enso-org/ide/pull/1577
[1587]: https://github.com/enso-org/ide/pull/1587
[1366]: https://github.com/enso-org/ide/pull/1366
[1602]: https://github.com/enso-org/ide/pull/1602
# Enso 2.0.0-alpha.5 (2021-05-14)
@ -50,6 +47,8 @@
clicking with mouse or selecting and pressing enter, a new unnamed project
will be created and opened in the application. Then you can give a name to
this project.
- [Signed builds.][1366] Our builds are signed and will avoid warnings from the
operating system about being untrusted.
#### EnsoGL (rendering engine)
@ -61,7 +60,8 @@
#### Visual Environment
- [Delete key will delete selected nodes][1538].
- [Delete key will delete selected nodes][1538]. Only the non-intuitive
backspace key was assigned to this action before.
- [It is possible to move around after deleting a node with a selected
visualization][1556]. Deleting a node while its attached visualization was
selected made it impossible to pan or zoom around the stage afterwards. This
@ -78,6 +78,7 @@ If you're interested in the enhancements and fixes made to the Enso compiler,
you can find their release notes
[here](https://github.com/enso-org/enso/blob/main/RELEASES.md).
[1366]: https://github.com/enso-org/ide/pull/1366
[1541]: https://github.com/enso-org/ide/pull/1541
[1538]: https://github.com/enso-org/ide/pull/1538
[1524]: https://github.com/enso-org/ide/pull/1524

View File

@ -498,7 +498,7 @@ let workflow = {
assertReleaseDoNotExists,
uploadGitHubRelease,
],{ if:releaseCondition,
needs:['version_assertions','lint','test','wasm-test','build']
needs:['version_assertions','lint','test','build']
}),
release_to_cdn: job_on_ubuntu_18_04("CDN Release", [
downloadArtifacts,
@ -506,7 +506,7 @@ let workflow = {
prepareAwsSessionCDN,
uploadToCDN('index.js.gz','style.css','ide.wasm','wasm_imports.js.gz'),
],{ if:releaseCondition,
needs:['version_assertions','lint','test','wasm-test','build']
needs:['version_assertions','lint','test','build']
})
}
}

View File

@ -96,6 +96,7 @@ mod prompt_background {
// =============
// =============
// === Model ===
// =============
@ -264,6 +265,8 @@ impl Model {
}
}
mod js {
// use super::*;
use wasm_bindgen::prelude::*;