Skip to content

Commit

Permalink
Added changelog items, put changelog into rc.3, removed unnecessary test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lizardguard committed Nov 8, 2023
1 parent 38fae7f commit effe86d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 33 deletions.
53 changes: 33 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ The AdLer Engine uses [Semantic Versioning](http://semver.org/).

### Added

- dynamic NPC image matching the 3D model in the space to Adaptivity Element
- bulletpoint list for learning outcomes in LearningSpaceMenu and LearningSpace
-

### Changed

Expand All @@ -27,42 +26,56 @@ The AdLer Engine uses [Semantic Versioning](http://semver.org/).

### Fixed

- Break Notifications should behave correctly now
-

### Security

-

</details>

## Version 2.0.0-rc.3

### Added

- dynamic NPC image matching the 3D model in the space to Adaptivity Element.
- bulletpoint list for learning outcomes in LearningSpaceMenu and LearningSpace.
- Support for Display of Learningelements which are not in the displayed room has been added.
- Learning Goals can now be displayed by clicking the spacescore panel.

### Fixed

- Break Notifications should behave correctly now.
- Fontsizes in Adaptivity elements should be displayed correctly now.

## Version 2.0.0-rc.1

### Added

- Adaptivity Element:

- specific icon for adaptivity element
- 3D representation of NPC
- 2D representation of NPC
- dialog line
- progressmeter
- task selection with icons for question status
- question selection with adaptive hints
- three different diffculties for questions
- question answer mask for single and multiple choice
- responsive UI
- specific icon for adaptivity element.
- 3D representation of NPC.
- 2D representation of NPC.
- dialog line.
- progressmeter.
- task selection with icons for question status.
- question selection with adaptive hints.
- three different diffculties for questions.
- question answer mask for single and multiple choice.
- responsive UI.

- Time Spent Element:
- break notification every 30 minutes
- 3 types of break advices for short, medium and long breaks
- 13 different break advices
- randomized selection of break advice
- up to four slides per break notification
- responsive UI
- break notification every 30 minutes.
- 3 types of break advices for short, medium and long breaks.
- 13 different break advices.
- randomized selection of break advice.
- up to four slides per break notification.
- responsive UI.

### Fixed

- bug that prevented update of score panel when scoring h5p elements
- bug that prevented update of score panel when scoring h5p elements.

## Version 1.3.0 - 08.09.2023

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import LearningSpaceGoalPanelController from "./LearningSpaceGoalPanelController";
import LearningSpaceGoalPanelViewModel from "./LearningSpaceGoalPanelViewModel";
import goalIcon from "../../../../../../Assets/icons/20-goal/goal-icon-nobg.svg";
import useObservable from "../../ReactRelated/CustomHooks/useObservable";
import useBuilder from "~ReactComponents/ReactRelated/CustomHooks/useBuilder";
import BUILDER_TYPES from "~DependencyInjection/Builders/BUILDER_TYPES";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,6 @@ const viewModelMock = new LearningSpaceGoalPanelViewModel();
const controllerMock = new LearningSpaceGoalPanelController(viewModelMock);

describe("LearningSpaceGoalPanel", () => {
test("should render", () => {
viewModelMock.goals.Value = ["Lernziel"];
viewModelMock.isOpen.Value = true;
useBuilderMock([viewModelMock, undefined]);

const componentUnderTest = render(<LearningSpaceGoalPanel />);

expect(
componentUnderTest.getByAltText("Learning-Goal-Icon")
).toBeInTheDocument();
});

test("should not render, if isOpen is false", () => {
viewModelMock.goals.Value = ["Lernziel"];
viewModelMock.isOpen.Value = false;
Expand Down

0 comments on commit effe86d

Please sign in to comment.