diff --git a/css/swad21.95.css b/css/swad21.95.4.css similarity index 99% rename from css/swad21.95.css rename to css/swad21.95.4.css index 3bdb14cd..12caaeab 100644 --- a/css/swad21.95.css +++ b/css/swad21.95.4.css @@ -4914,6 +4914,10 @@ button.PAG_DARK:hover, .PAG_CUR_DARK {background-color:#707070;} width:100%; } +/****************************** SWADroid banner ******************************/ +.SWADROID {width:150px; height:325px; opacity:0.6;} +.SWADROID:hover {opacity:1;} + /********************************* Page foot *********************************/ @media only screen and (max-width: 800px) { /* For mobile-phones */ diff --git a/icon/SWADroid300x650.png b/icon/SWADroid300x650.png new file mode 100644 index 00000000..44d8a8e0 Binary files /dev/null and b/icon/SWADroid300x650.png differ diff --git a/swad_autolink.c b/swad_autolink.c index a3cc40a8..88948a54 100644 --- a/swad_autolink.c +++ b/swad_autolink.c @@ -205,7 +205,7 @@ void ALn_InsertLinks (char *Txt,unsigned long MaxLength,size_t MaxCharsURLOnScre if ((Link->Type = ALn_CheckNickname (&PtrSrc,PrevCh, &Link,&LastLink)) == ALn_LINK_UNKNOWN) /* The next char is not the start of a URL or a nickname */ - if (*PtrSrc) // If not end reached + if (*PtrSrc) // If the end has not been reached { PrevCh = *PtrSrc; PtrSrc++; diff --git a/swad_changelog.h b/swad_changelog.h index f16d87d9..287028ff 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -606,10 +606,14 @@ TODO: Fix bug: error al enviar un mensaje a dos recipientes, error on duplicate TODO: Attach pdf files in multimedia. */ -#define Log_PLATFORM_VERSION "SWAD 21.95.2 (2022-05-09)" -#define CSS_FILE "swad21.95.css" +#define Log_PLATFORM_VERSION "SWAD 21.95.4 (2022-05-12)" +#define CSS_FILE "swad21.95.4.css" #define JS_FILE "swad21.92.js" /* + Version 21.95.4: May 12, 2022 SWADroid image updated. (323445 lines) +Copy the following icons to icon public directory: +sudo cp icon/SWADroid300x650.png /var/www/html/swad/icon/ + Version 21.95.3: May 09, 2022 Fixed bug inserting automatic links. Reported by Javier Fernández Baldomero and others. (323439 lines) Version 21.95.2: Apr 30, 2022 Fixed issue in most frequent actions. Reported by Pablo Millán Cubero. (323423 lines) Version 21.95.1: Apr 27, 2022 Fixing design of dark theme. (323406 lines) diff --git a/swad_layout.c b/swad_layout.c index 2b5cce1f..3d3fda4b 100644 --- a/swad_layout.c +++ b/swad_layout.c @@ -1162,8 +1162,8 @@ static void Lay_ShowRightColumn (void) HTM_A_Begin ("href=\"https://play.google.com/store/apps/details?id=es.ugr.swad.swadroid\"" " target=\"_blank\" title=\"%s\"", Txt_If_you_have_an_Android_device_try_SWADroid); - HTM_IMG (Cfg_URL_ICON_PUBLIC,"SWADroid120x200.png","SWADroid", - "style=\"width:150px; height:250px;\""); + HTM_IMG (Cfg_URL_ICON_PUBLIC,"SWADroid300x650.png","SWADroid", + "class=\"SWADROID\""); HTM_A_End (); HTM_DIV_End (); }