Version19.145.5

This commit is contained in:
acanas 2020-03-10 22:30:42 +01:00
parent da5d5eaafc
commit 5fea7a0c77
6 changed files with 14849 additions and 24836 deletions

14838
fotomaton_data/cascade.xml Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1
icon/twitch-brands.svg Normal file
View File

@ -0,0 +1 @@
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="twitch" class="svg-inline--fa fa-twitch fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#404040" d="M391.17,103.47H352.54v109.7h38.63ZM285,103H246.37V212.75H285ZM120.83,0,24.31,91.42V420.58H140.14V512l96.53-91.42h77.25L487.69,256V0ZM449.07,237.75l-77.22,73.12H294.61l-67.6,64v-64H140.14V36.58H449.07Z"></path></svg>

After

Width:  |  Height:  |  Size: 428 B

View File

@ -1250,7 +1250,7 @@ CREATE TABLE IF NOT EXISTS tl_notes_fav (
--
CREATE TABLE IF NOT EXISTS tl_posts (
PstCod INT NOT NULL AUTO_INCREMENT,
Content LONGTEXT NOT NULL,
Txt LONGTEXT NOT NULL,
MedCod INT NOT NULL DEFAULT -1,
UNIQUE INDEX(PstCod),
FULLTEXT(Content),

View File

@ -526,10 +526,16 @@ Param
// TODO: Oresti Baños: cambiar ojos por candados en descriptores para prohibir/permitir y dejar los ojos para poder elegir descriptores
// TODO: Comprobar los resultados de partidas de juegos con preguntas eliminadas
Version 19.145.5: Mar 10, 2020 Changed icon to comment in timeline. (282390 lines)
1 change necessary in database:
ALTER TABLE tl_posts CHANGE COLUMN Content Txt LONGTEXT NOT NULL;
Copy the following icon to icon public directory:
sudo cp icon/comment-regular.svg /var/www/html/swad/icon/
Version 19.145.4: Mar 09, 2020 Changes in edition of games. (282385 lines)
Version 19.145.3: Mar 09, 2020 Increased maximum size of title of projects. (282369 lines)
1 change necessary in database:
ALTER TABLE projects CHANGE Title Title VARCHAR(4095) NOT NULL;
ALTER TABLE projects CHANGE COLUMN Title Title VARCHAR(4095) NOT NULL;
Version 19.145.2: Mar 09, 2020 Fixed bug in database table with users' data. (282366 lines)
Version 19.145.1: Mar 08, 2020 Changes in edition of games. (282365 lines)
@ -537,7 +543,7 @@ ALTER TABLE projects CHANGE Title Title VARCHAR(4095) NOT NULL;
Fixed bug in matches, reported by Eva Martínez Ortigosa. (282346 lines)
Version 19.144.3: Mar 06, 2020 New social network: twitch. (282286 lines)
2 changes necessary in database:
ALTER TABLE usr_webs CHANGE Web Web ENUM('www', '500px', 'delicious', 'deviantart', 'diaspora', 'edmodo', 'facebook', 'flickr', 'foursquare', 'github', 'gnusocial', 'googleplus', 'googlescholar', 'identica', 'instagram', 'linkedin', 'orcid', 'paperli', 'pinterest', 'researchgate', 'researcherid', 'scoopit', 'slideshare', 'stackoverflow', 'storify', 'tumblr', 'twitch', 'twitter', 'wikipedia', 'youtube') NOT NULL;
ALTER TABLE usr_webs CHANGE COLUMN Web Web ENUM('www', '500px', 'delicious', 'deviantart', 'diaspora', 'edmodo', 'facebook', 'flickr', 'foursquare', 'github', 'gnusocial', 'googleplus', 'googlescholar', 'identica', 'instagram', 'linkedin', 'orcid', 'paperli', 'pinterest', 'researchgate', 'researcherid', 'scoopit', 'slideshare', 'stackoverflow', 'storify', 'tumblr', 'twitch', 'twitter', 'wikipedia', 'youtube') NOT NULL;
Copy the following icon to icon public directory:
sudo cp icon/twitch-brands.svg /var/www/html/swad/icon/

View File

@ -2521,7 +2521,7 @@ static void TL_PutIconToToggleCommentNote (const char UniqueId[Frm_MAX_BYTES_ID
HTM_DIV_Begin ("id=\"%s_ico\" class=\"TL_ICO_COM_OFF\"",UniqueId);
HTM_A_Begin ("href=\"\" onclick=\"toggleNewComment ('%s');return false;\"",
UniqueId);
Ico_PutIcon ("edit.svg",Txt_Comment,"CONTEXT_ICO_16x16");
Ico_PutIcon ("comment-regular.svg",Txt_Comment,"CONTEXT_ICO_16x16");
HTM_A_End ();
HTM_DIV_End ();
}