Version 18.34.2

This commit is contained in:
Antonio Cañas Vargas 2019-02-12 00:06:27 +01:00
parent e4684af54e
commit 7c069094ac
3 changed files with 11 additions and 7 deletions

1
icon/heart-red.svg Normal file
View File

@ -0,0 +1 @@
<svg aria-hidden="true" data-prefix="fas" data-icon="heart" class="svg-inline--fa fa-heart fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#e0245e" d="M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"></path></svg>

After

Width:  |  Height:  |  Size: 415 B

View File

@ -353,7 +353,6 @@ Buenos d
// TODO: Mensajes > Anuncios cuando no estás identificado, deberían salir algunos, ¿por qué no indicar que se muestren para todos?
// TODO: En el timeline, cambiar el icono de favorito de estrella a corazón (¿cambiar a "Me gusta"?
// TODO: Actualizar ayuda en GitHub, por ejemplo Preferencias ahora es Ajustes.
@ -384,10 +383,14 @@ En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 18.34.1 (2019-02-11)"
#define Log_PLATFORM_VERSION "SWAD 18.34.2 (2019-02-11)"
#define CSS_FILE "swad18.33.css"
#define JS_FILE "swad18.32.1.js"
/*
Version 18.34.2: Feb 11, 2019 Fav icon in timeline changed from star to heart. (239108 lines)
Copy the following icon to icon public directory:
sudo cp icon/heart-red.svg /var/www/html/swad/icon/
Version 18.34.1: Feb 11, 2019 Fixed problem in students attendance. (239106 lines)
Version 18.34: Feb 11, 2019 Fixed bug in test results. (239110 lines)
Version 18.33.3: Feb 11, 2019 Changed Type to Role in some stats. (239093 lines)

View File

@ -2690,7 +2690,7 @@ static void Soc_PutFormToFavSocialComment (long PubCod)
Soc_FormStart (ActFavSocComGbl,ActFavSocComUsr);
Soc_PutHiddenParamPubCod (PubCod);
Ico_PutDivIconLink ("SOCIAL_ICO_FAV",
"star.svg",Txt_Mark_as_favourite);
"heart.svg",Txt_Mark_as_favourite);
Frm_EndForm ();
}
@ -2735,7 +2735,7 @@ static void Soc_PutDisabledIconFav (unsigned NumFavs)
/***** Disabled icon to mark as favourite *****/
Ico_PutDivIcon ("SOCIAL_ICO_FAV_DISABLED",
"star.svg",Gbl.Title);
"heart.svg",Gbl.Title);
}
/*****************************************************************************/
@ -2768,7 +2768,7 @@ static void Soc_PutFormToFavSocialNote (long NotCod)
Soc_FormStart (ActFavSocNotGbl,ActFavSocNotUsr);
Soc_PutHiddenParamNotCod (NotCod);
Ico_PutDivIconLink ("SOCIAL_ICO_FAV",
"star.svg",Txt_Mark_as_favourite);
"heart.svg",Txt_Mark_as_favourite);
Frm_EndForm ();
}
@ -2802,7 +2802,7 @@ static void Soc_PutFormToUnfavSocialNote (long NotCod)
Soc_FormStart (ActUnfSocNotGbl,ActUnfSocNotUsr);
Soc_PutHiddenParamNotCod (NotCod);
Ico_PutDivIconLink ("SOCIAL_ICO_FAV",
"star-yellow.svg",Txt_SOCIAL_NOTE_Favourite);
"heart-red.svg",Txt_SOCIAL_NOTE_Favourite);
Frm_EndForm ();
}
@ -2819,7 +2819,7 @@ static void Soc_PutFormToUnfavSocialComment (long PubCod)
Soc_FormStart (ActUnfSocComGbl,ActUnfSocComUsr);
Soc_PutHiddenParamPubCod (PubCod);
Ico_PutDivIconLink ("SOCIAL_ICO_FAV",
"star-yellow.svg",Txt_SOCIAL_NOTE_Favourite);
"heart-red.svg",Txt_SOCIAL_NOTE_Favourite);
Frm_EndForm ();
}