Skip to content

Commit d2606b2

Browse files
author
Rob Tjalma
authored
Merge pull request #164 from com-pas/merge_upstream_v0180
Merge Upstream v0.18.0 into CoMPAS OpenSCD
2 parents f9f13f7 + 318c232 commit d2606b2

File tree

237 files changed

+22053
-6370
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+22053
-6370
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [0.18.0](https://github.com/openscd/open-scd/compare/v0.17.0...v0.18.0) (2022-06-30)
6+
7+
8+
### Features
9+
10+
* **104-plugin:** add some German translations ([5b0a43b](https://github.com/openscd/open-scd/commits/5b0a43bd7d438580007c52db7057b1cce4b55ba5))
11+
* **104/values:** Added List of IEDs and 104-related DAI to values screen. ([adbc4a4](https://github.com/openscd/open-scd/commits/adbc4a4da06f9b5dadd27de686e70409ea86c57d))
12+
* **editors/104:** Show/edit subnetworks without redundancy ([638fbf4](https://github.com/openscd/open-scd/commits/638fbf42ffa74eb63f83f5033dd25ddf32e04c5e))
13+
* **plugins/SampledValues:** Switch publisher and subscriber in SV subscription editor ([a5ce813](https://github.com/openscd/open-scd/commits/a5ce813fb27c597b7f8bd8399b92c5d884ba1b5e))
14+
* prevent losing data on user navigation ([#800](https://github.com/openscd/open-scd/issues/800)) ([8ffcbbb](https://github.com/openscd/open-scd/commits/8ffcbbb21263e70f43d791434d88a9e21641fc30))
15+
* **wizards/ied:** added new textfields for IED properties ([#822](https://github.com/openscd/open-scd/issues/822)) ([1cd6fb7](https://github.com/openscd/open-scd/commits/1cd6fb72b0ecae47106425ecff1b1d8523f7d50e))
16+
* **wizards/sampledvaluecontrol:** add create wizard ([#744](https://github.com/openscd/open-scd/issues/744)) ([f510446](https://github.com/openscd/open-scd/commits/f510446da42d20b45c57b41c4463a663b6bc712d))
17+
18+
19+
### Bug Fixes
20+
21+
* **communication:** display changes to ConnectedAPs in SubNetworks ([#819](https://github.com/openscd/open-scd/issues/819)) ([f082d20](https://github.com/openscd/open-scd/commits/f082d20871641f4819fc9623eb88d5b126bb5936))
22+
* **editing:** reactively update after changes to doc ([#814](https://github.com/openscd/open-scd/issues/814)) ([78e8f0f](https://github.com/openscd/open-scd/commits/78e8f0f655e039580e2c26f4d42517a6d40f3862))
23+
* **iededitor:** Refreshing components after update IED or DAI Element ([67f5ed4](https://github.com/openscd/open-scd/commits/67f5ed43931c807b1f244f8cc5dd291919020abf))
24+
525
## [0.17.0](https://github.com/openscd/open-scd/compare/v0.16.0...v0.17.0) (2022-05-30)
626

727

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ npm start
3333

3434
This will start a local development server and open a browser window which will automatically be reloaded as soon as you save any changes to your local source code files.
3535

36-
If you use VSCode to develop, we recommend you install and use the [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) and [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) extensions in order to automatically lint and format your code as you edit it.
36+
### Linting & Formatting
37+
38+
If you use VSCode to develop, we recommend you install and use the [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) and [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) extensions in order to automatically lint and format your code as you edit it. There are similar plugins available for using [ESLint](https://eslint.org/) and [Prettier](https://prettier.io/) from within other IDEs and text editors.
3739

3840
### Scripts
3941

index.html

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<meta http-equiv="Expires" content="0">
1010

1111
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
12-
<meta name="Description" content="Open Substation Communication Designer is a bottom-up system configuration tool for projects described using IEC 61850-6 Edition 2 or greater.">
12+
<meta name="Description"
13+
content="Open Substation Communication Designer is a bottom-up system configuration tool for projects described using IEC 61850-6 Edition 2 or greater.">
1314
<base href="/">
1415

1516
<!-- Original URL from Google: https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&family=Roboto:wght@300;400;500&display=swap -->
@@ -42,6 +43,15 @@
4243
if ('serviceWorker' in navigator)
4344
navigator.serviceWorker.register('/sw.js');
4445
</script>
46+
<script>
47+
const openScd = document.querySelector("open-scd");
48+
addEventListener("beforeunload", e => {
49+
if (openScd && openScd.doc) {
50+
e.preventDefault();
51+
return e.returnValue = "Are you sure you want to exit?";
52+
}
53+
});
54+
</script>
4555
</body>
4656

47-
</html>
57+
</html>

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
"purpose": "maskable"
4141
}
4242
],
43-
"version": "0.17.0"
43+
"version": "0.18.0"
4444
}

0 commit comments

Comments
 (0)