diff options
author | ankitjavalkar | 2019-02-07 16:20:47 +0530 |
---|---|---|
committer | ankitjavalkar | 2019-02-07 16:20:47 +0530 |
commit | 08132b25e2510554a13ba0764dfb6d649f274e1d (patch) | |
tree | 4d377a90eb1401bf263209f4dc4a6000578946cd | |
parent | 34a8dcac95c215432a32662310648f69f6dc504a (diff) | |
download | online_test-08132b25e2510554a13ba0764dfb6d649f274e1d.tar.gz online_test-08132b25e2510554a13ba0764dfb6d649f274e1d.tar.bz2 online_test-08132b25e2510554a13ba0764dfb6d649f274e1d.zip |
Release 0.9.1 related changes
- Added Changelog for version 0.9.1
- Added migrations
- Changed version number in __init__.py
-rw-r--r-- | CHANGELOG.txt | 25 | ||||
-rw-r--r-- | online_test/__init__.py | 2 | ||||
-rw-r--r-- | yaksh/migrations/0014_release_0_9_1.py | 21 |
3 files changed, 46 insertions, 2 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 5aa0cc3..d122a9f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,27 @@ -=== 0.9 (13-07-2018) === +=== 0.9.1 (07-02-2019) === + +* Changed routing so that opening the base URL will redirect user to /exam +* Updated storage hierarchy of uploaded assignments so that they are stored + per course and per quiz +* Deprecated yaksh cli.py script +* Changed and Upgraded UI +* Fixed a bug where assigning moderator privileges with create_moderator + command did not set is_moderator to True +* Fixed a bug that caused incorrect rendering of Unit Completion +* Fixed a bug to allow escaping of special characters in rendered answers +* Fixed a bug that fetched the same course multiple times when the user is + creator and teacher +* Deprecated the 'course_completion_percent' custom template tag +* Fixed overall Course Completion percentage in Student interface +* Fixed the broken Monitor interface UI +* Fixed a bug to remove user as teacher of any course if is_moderator is set + to False +* Fixed the broken Create Question Paper interface UI +* Improve the Question Legend in Exam interface +* Fixed embed video link modal alignment in Add Lesson and Add Module + interface + +=== 0.9.0 (13-07-2018) === * Questions can be searched using tags while creating/editing question papers. * Fixed a bug that would not select all questions in Question page. diff --git a/online_test/__init__.py b/online_test/__init__.py index e46aee1..8969d49 100644 --- a/online_test/__init__.py +++ b/online_test/__init__.py @@ -1 +1 @@ -__version__ = '0.9' +__version__ = '0.9.1' diff --git a/yaksh/migrations/0014_release_0_9_1.py b/yaksh/migrations/0014_release_0_9_1.py new file mode 100644 index 0000000..a15c0e0 --- /dev/null +++ b/yaksh/migrations/0014_release_0_9_1.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2019-02-07 10:41 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('yaksh', '0013_release_0_9_0'), + ] + + operations = [ + migrations.AddField( + model_name='assignmentupload', + name='course', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='yaksh.Course'), + ), + ] |