Version18.112.2

This commit is contained in:
Antonio Cañas Vargas 2019-04-12 10:45:51 +02:00
parent 75d802bb7c
commit f3b0648bc1
3 changed files with 9 additions and 5 deletions

1
icon/user-slash.svg Normal file
View File

@ -0,0 +1 @@
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="user-slash" class="svg-inline--fa fa-user-slash fa-w-20" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="#404040" d="M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"></path></svg>

After

Width:  |  Height:  |  Size: 559 B

View File

@ -435,7 +435,6 @@ Lo de mutear anuncios, en principio prefiero hacer una opci
// Bloquear individualmente la edición con una casilla de configuración para cada TFG, sólo el profesor de la asignatura (Perico) podría bloquear/desbloquear
// Que haya una opción general que los bloquee todos y que los desbloquee todos
// Para bloquear/desbloquear se usará un icono candado
// Para preasignado/no preasignado usar otro icono (usuario/usuario tachado, por ej.)
/*****************************************************************************/
/****************************** Public constants *****************************/
@ -456,11 +455,15 @@ En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 18.112.1 (2019-04-12)"
#define Log_PLATFORM_VERSION "SWAD 18.112.2 (2019-04-12)"
#define CSS_FILE "swad18.112.1.css"
#define JS_FILE "swad18.92.js"
/*
Version 18.112.1: Apr 12, 2019 Minor changes in layout of projects. (? lines)
Version 18.112.2: Apr 12, 2019 Changed icons for preassigned/non-preassigned projects. (242783 lines)
Copy the following icon to icon public directory:
sudo cp icon/user-slash.svg /var/www/html/swad/icon/
Version 18.112.1: Apr 12, 2019 Changes in layout of projects. (242781 lines)
Version 18.112: Apr 11, 2019 Code refactoring related to attendance. (242538 lines)
Version 18.111: Apr 11, 2019 New option to select users to compose an email to them. (242541 lines)
1 change necessary in database:

View File

@ -91,8 +91,8 @@ static const char *Prj_Proposal_DB[Prj_NUM_PROPOSAL_TYPES] =
/***** Image for preassigned and non-preassigned projects *****/
static const char *PreassignedNonpreassigImage[Prj_NUM_PREASSIGNED_NONPREASSIG] =
{
"lock.svg", // Prj_PREASSIGNED
"unlock.svg", // Prj_NONPREASSIG
"user.svg", // Prj_PREASSIGNED
"user-slash.svg", // Prj_NONPREASSIG
};
/*****************************************************************************/