Skip to content

Commit 03279a6

Browse files
Merge remote-tracking branch 'origin/Fetch_BTComponents' into Fetch_BTComponents
2 parents 8731f79 + 0cd1e82 commit 03279a6

File tree

119 files changed

+90946
-8552
lines changed

Some content is hidden

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

119 files changed

+90946
-8552
lines changed

.github/workflows/build-project.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
build:
1717
name: Build
1818
runs-on: ubuntu-latest
19-
timeout-minutes: 30
19+
timeout-minutes: 45
2020

2121
steps:
2222
- name: Checkout
@@ -39,13 +39,15 @@ jobs:
3939
node-version: '14.x'
4040

4141
- name: Test application with npm
42+
timeout-minutes: 45
4243
if: ${{ github.event_name == 'push' }}
4344
run: |
4445
npm ci
4546
npm run-script test
4647
4748
- name: Build application with npm
4849
if: ${{ github.event_name == 'pull_request' }}
50+
timeout-minutes: 45
4951
run: |
5052
npm ci
5153
npm run-script build

.github/workflows/release-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
push_to_registry:
1313
name: Build and publish
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 30
15+
timeout-minutes: 45
1616

1717
steps:
1818
- name: Checkout
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Test and Build
2+
on: pull_request
3+
4+
jobs:
5+
test-and-build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/[email protected]
10+
11+
- name: Use Node.js 18.x
12+
uses: actions/setup-node@v1
13+
with:
14+
node-version: '18.x'
15+
16+
- name: Install and Build
17+
run: |
18+
npm ci
19+
npm run-script build

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Test
2+
on:
3+
push:
4+
branches-ignore:
5+
- main
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/[email protected]
13+
14+
- name: Use Node.js 18.x
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: '18.x'
18+
19+
- name: Install and Test
20+
run: |
21+
npm ci
22+
npm run-script test

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
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.31.0](https://github.com/openscd/open-scd/compare/v0.30.0...v0.31.0) (2023-05-02)
6+
7+
8+
### Features
9+
10+
* **editors/binding:** Allow filtering of subscribed/unsubscribed data in binding editors ([#1149](https://github.com/openscd/open-scd/issues/1149)) ([874be45](https://github.com/openscd/open-scd/commits/874be4518c7574846abbaed4cf597c779c747d5e)), closes [#1062](https://github.com/openscd/open-scd/issues/1062)
11+
12+
## [0.30.0](https://github.com/openscd/open-scd/compare/v0.29.0...v0.30.0) (2023-03-08)
13+
14+
15+
### Features
16+
17+
* **editors/ied:** show all instantiated setting group values ([#1155](https://github.com/openscd/open-scd/issues/1155)) ([d9680fa](https://github.com/openscd/open-scd/commits/d9680fa1195650aeef6a5ec0290ec6cc321303ef))
18+
* **editors/subscription:** Support valKind and valImport on first instances, improve instance use counting and allow Val updates ([#1169](https://github.com/openscd/open-scd/issues/1169)) ([aaab451](https://github.com/openscd/open-scd/commits/aaab451ca01bcd29b1bb2dc73299a0b171b30389)), closes [#1161](https://github.com/openscd/open-scd/issues/1161) [#1162](https://github.com/openscd/open-scd/issues/1162)
19+
* **wizards/services:** add read-only wizard on access point and ied ([#1109](https://github.com/openscd/open-scd/issues/1109)) ([81088f0](https://github.com/openscd/open-scd/commits/81088f06bbae8ca022525fe29d59589ba87647a9))
20+
21+
22+
### Bug Fixes
23+
24+
* added translation key for phase ([#1186](https://github.com/openscd/open-scd/issues/1186)) ([479c499](https://github.com/openscd/open-scd/commits/479c49991a2f4e3e0b70ddd39e90deda3ec935ec))
25+
* **editors/substation/guess-wizard:** make sure guessed content is added to the substation ([#1148](https://github.com/openscd/open-scd/issues/1148)) ([cc0051f](https://github.com/openscd/open-scd/commits/cc0051f54a89984af9676ed2209a0481f49fa7a2))
26+
* **menu/save-project:** Add missing XML prolog on document save ([#1173](https://github.com/openscd/open-scd/issues/1173)) ([6cae0da](https://github.com/openscd/open-scd/commits/6cae0da557ef69029312a854e94bc5ecc9558909)), closes [#1163](https://github.com/openscd/open-scd/issues/1163)
27+
528
## [0.29.0](https://github.com/openscd/open-scd/compare/v0.28.0...v0.29.0) (2023-02-08)
629

730

ROADMAP.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Feature Wishes
22

3-
Feeature ideas for the OpenSCD project. They are currently not prioritized.
3+
Feature ideas for the OpenSCD project. They are currently not prioritized.
44

55
- Add the remaining [process elements to the substation editor](https://github.com/openscd/open-scd/projects/1)
66
- [Edit wizard for `Services` element](https://github.com/openscd/open-scd/projects/17)
77
- General purpose [SCL diffing tool](https://github.com/openscd/open-scd/projects/16)
88
- Finish the [Publisher Plugin](https://github.com/openscd/open-scd/projects/14)
99
- Improve [IED Editor](https://github.com/openscd/open-scd/projects/11) user experience
10-
- Implement a more featureful [Single Line Diagram](https://github.com/openscd/open-scd/projects/7) editor that can make changes
10+
- Implement a more fully-featured [Single Line Diagram](https://github.com/openscd/open-scd/projects/7) editor that can make changes
1111
- Implement [Log Control Block manipulation](https://github.com/openscd/open-scd/issues/148)
1212
- Implement [Setting Group manipulation](https://github.com/openscd/open-scd/issues/149)
1313
- Implement [Role Based Access](https://github.com/openscd/open-scd/issues/167) Control

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.29.0"
43+
"version": "0.31.0"
4444
}

0 commit comments

Comments
 (0)