SWADroid image updated.

This commit is contained in:
acanas 2022-05-12 09:19:09 +02:00
parent 670522e4d6
commit 8222a051cb
5 changed files with 13 additions and 5 deletions

View File

@ -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 */

BIN
icon/SWADroid300x650.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -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++;

View File

@ -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)

View File

@ -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 ();
}