Version19.30.1

This commit is contained in:
Antonio Cañas Vargas 2019-10-01 23:05:07 +02:00
parent ec2465e84c
commit b9bd77f8c0
2 changed files with 6 additions and 4 deletions

View File

@ -483,12 +483,13 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 19.30 (2019-10-01)"
#define Log_PLATFORM_VERSION "SWAD 19.30.1 (2019-10-01)"
#define CSS_FILE "swad19.29.css"
#define JS_FILE "swad19.30.js"
/*
// TODO: Perico: poner un candado de bloqueo de creación/edición de proyectos (por ejemplo en asignaturas obsoletas)
Version 19.30.1: Oct 01, 2019 Changes in match playing. (246904 lines)
Version 19.30: Oct 01, 2019 The match refreshment time for teachers is now different from the time for students.
Code refactoring in matchs.
Code refactoring in new timeline. (246902 lines)

View File

@ -2925,9 +2925,10 @@ void Mch_ReceiveQuestionAnswer (void)
/***** Get indexes for this question from database *****/
Mch_GetIndexes (Match.MchCod,QstInd,Indexes);
/***** Check that question index is the current one being played *****/
if (QstInd == Match.Status.QstInd) // Receiving an answer
// to the current question being played
/***** Check that teacher's screen is showing answers
and question index is the current one being played *****/
if (Match.Status.Showing == Mch_ANSWERS && // Teacher's screen is showing answers
QstInd == Match.Status.QstInd) // Receiving an answer to the current question being played
{
/***** Get answer index *****/
/*