Skip to content

Commit

Permalink
Merge pull request #34 from Gradiant/33-support-to-image-multiple-cho…
Browse files Browse the repository at this point in the history
…ice-activity

feat(33): Add support to image (map) multiple choice
  • Loading branch information
dookie23 authored Jun 22, 2023
2 parents d379a42 + f4df6d4 commit 2d36073
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,22 @@
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.


## [1.14.0](https://github.com/Gradiant/gradiant-xapi-dsl/compare/v1.12.2...v1.14.0) (2022-11-14)
## [1.15.0](https://github.com/Gradiant/gradiant-xapi-dsl/compare/v1.14.0...v1.15.0) (2023-06-22)

### Features

* **[33](https://github.com/Gradiant/gradiant-xapi-dsl/issues/33):** Support image multiple choice activities



## [1.14.0](https://github.com/Gradiant/gradiant-xapi-dsl/compare/v1.12.2...v1.14.0) (2023-03-13)

### Features

* **[30](https://github.com/Gradiant/gradiant-xapi-dsl/issues/30):** Support upload file activities



## [1.12.0](https://github.com/Gradiant/gradiant-xapi-dsl/compare/v1.11.2...v1.12.0) (2022-11-14)


Expand Down
1 change: 1 addition & 0 deletions dsl-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"fillInTheGaps": "https://w3id.org/xapi/smart/activity/fill-in-the-gaps",
"matchingPairs": "https://w3id.org/xapi/smart/activity/matching-pairs",
"multipleChoice": "https://w3id.org/xapi/smart/activity/multiple-choice",
"imageMultipleChoice": "https://w3id.org/xapi/smart/activity/image-multiple-choice",
"openAnswer": "https://w3id.org/xapi/smart/activity/open-answer",
"singleChoice": "https://w3id.org/xapi/smart/activity/single-choice",
"wordsBank": "https://w3id.org/xapi/smart/activity/words-bank",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gradiant/xapi-dsl",
"version": "1.14.0",
"version": "1.15.0",
"description": "Gradiant XAPI constants for xAPI",
"license": "UNLICENSED",
"author": "Lorens León <lleon@gradiant.org>",
Expand Down
1 change: 1 addition & 0 deletions src/dsl/activity-types/smart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export namespace smart {
export const fillInTheGaps = 'https://w3id.org/xapi/smart/activity/fill-in-the-gaps';
export const matchingPairs = 'https://w3id.org/xapi/smart/activity/matching-pairs';
export const multipleChoice = 'https://w3id.org/xapi/smart/activity/multiple-choice';
export const imageMultipleChoice = 'https://w3id.org/xapi/smart/activity/image-multiple-choice';
export const openAnswer = 'https://w3id.org/xapi/smart/activity/open-answer';
export const singleChoice = 'https://w3id.org/xapi/smart/activity/single-choice';
export const wordsBank = 'https://w3id.org/xapi/smart/activity/words-bank';
Expand Down

0 comments on commit 2d36073

Please sign in to comment.