diff options
-rw-r--r-- | CHANGELOG.txt | 18 | ||||
-rw-r--r-- | online_test/__init__.py | 2 | ||||
-rw-r--r-- | yaksh/migrations/0015_release_0_10_0.py | 25 |
3 files changed, 44 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d122a9f..78ae41e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,21 @@ +=== 0.10.0 (24-04-2019) === + +* Upgraded Django version from 1.10 to 1.11.18. +* Upgraded JQuery-UI version from 1.9.1 to 1.12.1 +* Changed UI to show alert on clicking "Undo changes" button on programming questions in quiz. +* Fixed download link for files in questions +* Added Preview Questionpaper to Edit Quiz interface +* Added a toggle option to allow moderator to hide grades +* Changed UI on Student Dashboard +* Added a link to edit Question while designing Question Paper +* Removed custom Fonts used in new UI +* Changed UI on View Module screen and Quiz screen interface for students +* Add Download Course button in Course Module template +* Fixed the bug that prevented students from opening a quiz if status is inprogress +* Changed UI on Course Status Page and Monitor Page +* Added functionality to restrict access to next module based on passing previous module +* Fixed the CSV upload bug that preventeduser from being added to a new course in case the user was aready enrolled in another course + === 0.9.1 (07-02-2019) === * Changed routing so that opening the base URL will redirect user to /exam diff --git a/online_test/__init__.py b/online_test/__init__.py index 8969d49..9d1bb72 100644 --- a/online_test/__init__.py +++ b/online_test/__init__.py @@ -1 +1 @@ -__version__ = '0.9.1' +__version__ = '0.10.0' diff --git a/yaksh/migrations/0015_release_0_10_0.py b/yaksh/migrations/0015_release_0_10_0.py new file mode 100644 index 0000000..9a97a60 --- /dev/null +++ b/yaksh/migrations/0015_release_0_10_0.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2019-04-24 10:41 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('yaksh', '0014_release_0_9_1'), + ] + + operations = [ + migrations.AddField( + model_name='course', + name='view_grade', + field=models.BooleanField(default=False), + ), + migrations.AddField( + model_name='learningmodule', + name='check_prerequisite_passes', + field=models.BooleanField(default=False), + ), + ] |