Skip to content

Commit

Permalink
docs: changelog
Browse files Browse the repository at this point in the history
chore: renaming to DataSpaceConnector UI
BastianWel committed Jul 21, 2021
1 parent 9d787b9 commit ebe1f25
Showing 9 changed files with 18 additions and 16 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,13 +2,15 @@
All notable changes to this project will be documented in this file.
(Skipped major version 1, 2 and 3 to match versioning of IDS DataSpaceConnector)

## [8.0.0] - XXX-XX-XX
## [8.0.0] - 2021-07-21

### Added
- Columns "Creation date" & "keywords" in resource table

### Changes
- All API calls changed to DSC API
- Resources are added to a default catalog
- Settings: Loglevel & Connector Deploy Mode read-only

### Removed
- Column "description" in resource table
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to the IDS ConfigManager UI
# Contributing to the DataSpaceConnector UI

The following is a set of guidelines for contributing to The Dataspace Connector. This is an ongoing project of the [Human Machine Systems](https://www.fkie.fraunhofer.de/en/departments/mms.html) department of the [Fraunhofer FKIE](https://www.fkie.fraunhofer.de/en.html) hosted on [GitHub](https://github.com/fkie/???). You are very welcome to contribute to this project when you find a bug, want to suggest an improvement, or have an idea for a useful feature. For this, always create an issue and a corresponding pull request, and follow our style guides as described below.

6 changes: 3 additions & 3 deletions DEVELOPMENT_GUIDE.md
Original file line number Diff line number Diff line change
@@ -73,7 +73,7 @@ Here you can place assets (images, fonts, ...) that you like to use for the UI.

------------
### `src/backend/`
This is the code of the UI backend. It is just a small node express server to receive API call from the UI and forward those call to the configmanager. This is needed because of the Same-Origin-Policy.
This is the code of the UI backend. It is just a small node express server to receive API call from the UI and forward those call to the DataSpaceConnector. This is needed because of the Same-Origin-Policy.

------------
### `src/components/`
@@ -82,7 +82,7 @@ Reusable custom vue components.
------------
### `src/datamodel/`

Client data model. Data received from the configmanager at API calls is converted into simple objects (UI data model).
Client data model. Data received from the DataSpaceConnector at API calls is converted into simple objects (UI data model).

------------
### `src/pages/`
@@ -112,4 +112,4 @@ Set colors of current theme.
------------
### `src/utils/`
Utility scripts that can be used in all vue components.
The most important is `dataUtils.js` where all API calls to the configmanager are defined.
The most important is `dataUtils.js` where all API calls to the DataSpaceConnector are defined.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -57,12 +57,12 @@ Run docker image:
sudo docker-compose up
```

### Change host & port of IDS Configurationmanager & UI backend on docker start
### Change host & port of DataSpaceConnector & UI backend on docker start

Change in `docker-compose.yml`:
```bash
environment:
- CONFIGMANAGER_URL=http://localhost:8081
- CONNECTOR_URL=http://localhost:8080
- UI_BACKEND_URL=http://localhost:80
```

2 changes: 1 addition & 1 deletion buildDockerImage.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
sudo docker build -t configmanager-ui .
sudo docker build -t dataspaceconnector-ui .
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: '3.5'

services:
configmanager-ui:
image: configmanager-ui
dataspaceconnector-ui:
image: dataspaceconnector-ui
network_mode: host
environment:
- CONFIGMANAGER_URL=http://localhost:8081
- CONNECTOR_URL=http://localhost:8080
- UI_BACKEND_URL=http://localhost:80
- UI_TITLE=IDS Configuration Manager
- UI_TITLE=DataSpaceConnector UI
ports:
- "8080:8080"
- "8081:8081"
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ids-configmanager-ui",
"name": "dataspaceconnector-ui",
"version": "8.0.0",
"private": true,
"scripts": {
2 changes: 1 addition & 1 deletion src/components/infobox/InfoBox.html
Original file line number Diff line number Diff line change
@@ -79,7 +79,7 @@
</v-card-text>
<v-card-text v-if="currentRoute == 'settings'">
<v-card-text>
General settings of the configmanager.
General settings of the DataSpaceConnector.
</v-card-text>
</v-card-text>
</v-card>

0 comments on commit ebe1f25

Please sign in to comment.