diff options
-rw-r--r-- | CHANGELOG.txt | 15 | ||||
-rw-r--r-- | online_test/__init__.py | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 87a2c47..d6232cb 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,18 @@ +=== 0.29.2 (19-11-2020) === + +* Add dropdown selection for lesson video options +* Show total visits per student in lesson statistics. +* Remove settimeout ajax calls for tracking video positions. +* Show initial views per lesson in the course modules section. +* Add tinymce editor for all the textareas. + +=== 0.29.1 (12-11-2020) === + +* Fixed issue onclick toc jump to player time. +* Used bootstrap modal instead of jquery dialog for responsive interface. +* Disallow empty question submission for lesson quiz. +* Fixed issue where the videos other than youtube does not get the duration. + === 0.29.0 (07-11-2020) === * Add feature to track lesson video views diff --git a/online_test/__init__.py b/online_test/__init__.py index c96a9aa..41b7f9c 100644 --- a/online_test/__init__.py +++ b/online_test/__init__.py @@ -4,4 +4,4 @@ from online_test.celery_settings import app as celery_app __all__ = ('celery_app',) -__version__ = '0.29.0' +__version__ = '0.29.2' |