From 76e5750931ce3ad9f1bc5ea652fe87571e4bfee3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Thu, 24 Mar 2016 18:46:57 +0100 Subject: [PATCH] Version 15.161.3 --- swad_changelog.h | 7 ++++--- swad_layout.c | 4 ++-- swad_survey.c | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/swad_changelog.h b/swad_changelog.h index b968f85c4..7b257784a 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -130,20 +130,21 @@ // TODO: Move info about number of files to bottom of file browsers // TODO: In MESSAGES > Announcements, any user should see obsolete announcements, not only system admins -// TODO: Change icon to reset survey (distinct from recycle, color red) -// TODO: Put contextual icon "update" integrate in frame in other options /*****************************************************************************/ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.161.2 (2016-03-24)" +#define Log_PLATFORM_VERSION "SWAD 15.161.3 (2016-03-24)" #define CSS_FILE "swad15.160.2.css" #define JS_FILE "swad15.131.3.js" // Number of lines (includes comments but not blank lines) has been got with the following command: // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1 /* + Version 15.161.3: Mar 24, 2016 Changed icon to reset survey. (196577 lines) +Copy file recycle64x64.png to icon directory + Version 15.161.2: Mar 24, 2016 Removed contextual icon "update" integrated in frame in "enrollment requests". (196577 lines) Version 15.161.1: Mar 24, 2016 Code refactoring in forms to select roles. Put contextual icon "update" integrated in frame in "enrollment requests". (196598 lines) diff --git a/swad_layout.c b/swad_layout.c index 75c1cf27a..296e6f611 100644 --- a/swad_layout.c +++ b/swad_layout.c @@ -1077,10 +1077,10 @@ void Lay_PutIconWithText (const char *Icon,const char *Alt,const char *Text) void Lay_PutCalculateIcon (const char *Alt) { fprintf (Gbl.F.Out,"
" - "\"%s\"" - "\"%s\"" // Animated icon hidden "
" diff --git a/swad_survey.c b/swad_survey.c index 8c872bedc..515259883 100644 --- a/swad_survey.c +++ b/swad_survey.c @@ -752,7 +752,7 @@ static void Svy_PutFormsToRemEditOneSvy (long SvyCod,bool Visible) Txt_Remove,NULL); /***** Put form to reset survey *****/ - Lay_PutContextualLink (ActReqRstSvy,Svy_PutParams,"reset16x16.gif", + Lay_PutContextualLink (ActReqRstSvy,Svy_PutParams,"recycle64x64.png", Txt_Reset,NULL); /***** Put form to hide/show survey *****/ @@ -1332,7 +1332,7 @@ static void Svy_PutButtonToResetSurvey (void) Act_FormStart (ActRstSvy); Svy_PutParams (); - Lay_PutConfirmButton (Txt_Reset_survey); + Lay_PutRemoveButton (Txt_Reset_survey); Act_FormEnd (); }