Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating 0.31.0 #234

Merged
merged 29 commits into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e1b9568
970 tapchanger editor (#1166)
marcvanraalte Feb 9, 2023
cc0051f
fix(editors/substation/guess-wizard): make sure guessed content is ad…
JakobVogelsang Feb 22, 2023
d9680fa
feat(editors/ied): show all instantiated setting group values (#1155)
JakobVogelsang Feb 22, 2023
81088f0
feat(wizards/services): add read-only wizard on access point and ied …
pascalwilbrink Feb 23, 2023
479c499
fix: added translation key for phase (#1186)
Stef3st Feb 27, 2023
7118454
fix(foundation) improve ExtRef identity function (#1182)
danyill Feb 27, 2023
b71c3f3
971 edit wizard tapchanger (#1170)
marcvanraalte Feb 27, 2023
6cae0da
fix(menu/save-project): Add missing XML prolog on document save (#1173)
danyill Feb 27, 2023
fc3714c
972 create wizard tapchanger (#1172)
marcvanraalte Mar 2, 2023
aaab451
feat(editors/subscription): Support valKind and valImport on first in…
danyill Mar 7, 2023
dc8a56d
chore(release): 0.30.0
JakobVogelsang Mar 8, 2023
5bded32
chore(update-actions): Update Node from 14.x to 18.x (#1192)
apupier Mar 13, 2023
b7f1b02
Fix typos in Markdown files (#1197)
apupier Mar 22, 2023
4daadaa
docs: remove duplicated Markdown files (#1198)
apupier Mar 22, 2023
bbfde76
feat(line-editor.ts):unit_test_added (#1193)
marcvanraalte Mar 23, 2023
874be45
feat(editors/binding): Allow filtering of subscribed/unsubscribed dat…
danyill Mar 26, 2023
18bb1f5
Pretty print XML inside code editor, closes #895 (#1199)
danyill Mar 27, 2023
3ef3708
981 edit wizard line (#1204)
marcvanraalte Mar 30, 2023
03632e2
982 create wizard line (#1207)
marcvanraalte Apr 11, 2023
33e9953
983 remove line (#1209)
marcvanraalte Apr 18, 2023
fc6af77
984 add add line (#1210)
marcvanraalte Apr 19, 2023
1ec77e1
985 process editor (#1212)
marcvanraalte Apr 20, 2023
db04516
986 edit wizard process (#1215)
marcvanraalte Apr 24, 2023
2020fd3
987 create wizard process (#1216)
marcvanraalte Apr 24, 2023
efc3aa1
988 remove process (#1218)
marcvanraalte Apr 24, 2023
6ce2105
989 add process (#1219)
marcvanraalte Apr 25, 2023
9017128
chore(release): 0.31.0
pascalwilbrink May 2, 2023
8032163
Updated to v0.31.0
pascalwilbrink May 2, 2023
5f3eb47
Merge branch 'main' into updating_0310
pascalwilbrink May 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build and Deploy
on:
push:
branches:
- main

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.1

- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '18.x'

- name: Install and Build
run: |
npm ci
npm run-script build

- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: master
folder: build
repository-name: openscd/openscd.github.io
ssh-key: ${{ secrets.DEPLOY_KEY }}
19 changes: 19 additions & 0 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test and Build
on: pull_request

jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.1

- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '18.x'

- name: Install and Build
run: |
npm ci
npm run-script build
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test
on:
push:
branches-ignore:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.1

- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '18.x'

- name: Install and Test
run: |
npm ci
npm run-script test
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

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.

## [0.31.0](https://github.com/openscd/open-scd/compare/v0.30.0...v0.31.0) (2023-05-02)


### Features

* **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)

## [0.30.0](https://github.com/openscd/open-scd/compare/v0.29.0...v0.30.0) (2023-03-08)


### Features

* **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))
* **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)
* **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))


### Bug Fixes

* added translation key for phase ([#1186](https://github.com/openscd/open-scd/issues/1186)) ([479c499](https://github.com/openscd/open-scd/commits/479c49991a2f4e3e0b70ddd39e90deda3ec935ec))
* **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))
* **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)

## [0.29.0](https://github.com/openscd/open-scd/compare/v0.28.0...v0.29.0) (2023-02-08)


Expand Down
4 changes: 2 additions & 2 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Feature Wishes

Feeature ideas for the OpenSCD project. They are currently not prioritized.
Feature ideas for the OpenSCD project. They are currently not prioritized.

- Add the remaining [process elements to the substation editor](https://github.com/openscd/open-scd/projects/1)
- [Edit wizard for `Services` element](https://github.com/openscd/open-scd/projects/17)
- General purpose [SCL diffing tool](https://github.com/openscd/open-scd/projects/16)
- Finish the [Publisher Plugin](https://github.com/openscd/open-scd/projects/14)
- Improve [IED Editor](https://github.com/openscd/open-scd/projects/11) user experience
- Implement a more featureful [Single Line Diagram](https://github.com/openscd/open-scd/projects/7) editor that can make changes
- Implement a more fully-featured [Single Line Diagram](https://github.com/openscd/open-scd/projects/7) editor that can make changes
- Implement [Log Control Block manipulation](https://github.com/openscd/open-scd/issues/148)
- Implement [Setting Group manipulation](https://github.com/openscd/open-scd/issues/149)
- Implement [Role Based Access](https://github.com/openscd/open-scd/issues/167) Control
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@
"purpose": "maskable"
}
],
"version": "0.29.0"
"version": "0.31.0"
}
Loading