Skip to content

Commit

Permalink
Merge pull request #140 from KQMATH/development
Browse files Browse the repository at this point in the history
v0.4.0
  • Loading branch information
andstor authored Jul 30, 2019
2 parents bfd5f53 + 8351fcf commit 27a529e
Show file tree
Hide file tree
Showing 62 changed files with 4,871 additions and 112 deletions.
24 changes: 16 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ language: php

sudo: true

dist: trusty

services:
- mysql

addons:
firefox: "47.0.1"
postgresql: "9.4"
Expand All @@ -28,12 +33,15 @@ env:
- DB=pgsql MOODLE_BRANCH=MOODLE_36_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_36_STABLE

- DB=pgsql MOODLE_BRANCH=MOODLE_37_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE

- DB=pgsql MOODLE_BRANCH=master
- DB=mysqli MOODLE_BRANCH=master

allow_failures:
- DB=pgsql MOODLE_BRANCH=master
- DB=mysqli MOODLE_BRANCH=master
- DB=pgsql MOODLE_BRANCH=master
- DB=mysqli MOODLE_BRANCH=master

before_install:
- phpenv config-rm xdebug.ini
Expand All @@ -49,23 +57,23 @@ jobs:
# pgsql
- stage: develop
php: 7.0
env: DB=pgsql MOODLE_BRANCH=MOODLE_36_STABLE
env: DB=pgsql MOODLE_BRANCH=MOODLE_37_STABLE
install:
- moodle-plugin-ci install
script:
- bash $TRAVIS_BUILD_DIR/.travis/script.sh

- stage: develop
php: 7.1
env: DB=pgsql MOODLE_BRANCH=MOODLE_36_STABLE
env: DB=pgsql MOODLE_BRANCH=MOODLE_37_STABLE
install:
- moodle-plugin-ci install
script:
- bash $TRAVIS_BUILD_DIR/.travis/script.sh

- stage: develop
php: 7.2
env: DB=pgsql MOODLE_BRANCH=MOODLE_36_STABLE
env: DB=pgsql MOODLE_BRANCH=MOODLE_37_STABLE
install:
- moodle-plugin-ci install
script:
Expand All @@ -74,23 +82,23 @@ jobs:
# mysql
- stage: develop
php: 7.0
env: DB=mysqli MOODLE_BRANCH=MOODLE_36_STABLE
env: DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE
install:
- moodle-plugin-ci install
script:
- bash $TRAVIS_BUILD_DIR/.travis/script.sh

- stage: develop
php: 7.1
env: DB=mysqli MOODLE_BRANCH=MOODLE_36_STABLE
env: DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE
install:
- moodle-plugin-ci install
script:
- bash $TRAVIS_BUILD_DIR/.travis/script.sh

- stage: develop
php: 7.2
env: DB=mysqli MOODLE_BRANCH=MOODLE_36_STABLE
env: DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE
install:
- moodle-plugin-ci install
script:
Expand Down
3 changes: 2 additions & 1 deletion .travis/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ moodle-plugin-ci validate || EXIT=$?
moodle-plugin-ci savepoints || EXIT=$?
moodle-plugin-ci mustache || EXIT=$?
moodle-plugin-ci grunt -t eslint:amd -t stylelint:css || EXIT=$?
#moodle-plugin-ci phpdoc || EXIT=$?
moodle-plugin-ci phpunit --coverage-clover || EXIT=$?
moodle-plugin-ci behat || EXIT=$?

exit ${EXIT}
exit ${EXIT}
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [0.4.0] - 2019-07-30
### Added
- Framework for CAPQuiz **report** sub-plugins
- New **Attempts** report sub-plugin where one can view/generate reports on CAPQuiz attempts made within the activity.
- New **Questions** report sub-plugin where one can view/generate reports on the development of CAPQuiz question ratings over time.
- Ability to manage the question bank in the context of the CAPQuiz activity, via new link in the navigation menu.
- Check out the commented question in the comments pane (teacher view) by providing link to question preview.

### Changed
-
- Minor styling changes

### Fixed
- Add some missing language strings
- Wrong contexts were exported when exporting user data through the Privacy API (GDPR)

## [0.3.2] - 2019-07-01

Expand Down Expand Up @@ -65,8 +78,9 @@ and this project adheres to [Semantic Versioning](https://semver.org).

## 0.1.0 - 2018-09-28

[Unreleased]: https://github.com/KQMATH/moodle-mod_capquiz/compare/v0.3.2...HEAD
[Unreleased]: https://github.com/KQMATH/moodle-mod_capquiz/compare/v0.4.0...HEAD

[0.4.0]: https://github.com/KQMATH/moodle-mod_capquiz/compare/v0.3.2...v0.4.0
[0.3.2]: https://github.com/KQMATH/moodle-mod_capquiz/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/KQMATH/moodle-mod_capquiz/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/KQMATH/moodle-mod_capquiz/compare/v0.2.0...v0.3.0
Expand Down
Loading

0 comments on commit 27a529e

Please sign in to comment.