From f3b0648bc1381ad32ea32b6a3244b05b16682058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Fri, 12 Apr 2019 10:45:51 +0200 Subject: [PATCH] Version18.112.2 --- icon/user-slash.svg | 1 + swad_changelog.h | 9 ++++++--- swad_project.c | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 icon/user-slash.svg diff --git a/icon/user-slash.svg b/icon/user-slash.svg new file mode 100644 index 00000000..fef89791 --- /dev/null +++ b/icon/user-slash.svg @@ -0,0 +1 @@ + diff --git a/swad_changelog.h b/swad_changelog.h index 94e5a94c..92a4b3f2 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -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: diff --git a/swad_project.c b/swad_project.c index 2efbc4f2..f7b3bcd4 100644 --- a/swad_project.c +++ b/swad_project.c @@ -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 }; /*****************************************************************************/