Version 14.104

This commit is contained in:
Antonio Cañas Vargas 2015-03-29 13:57:24 +02:00
parent 2859d080de
commit ba28858f22
3 changed files with 617 additions and 606 deletions

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.103 (2015/03/28)"
#define Log_PLATFORM_VERSION "SWAD 14.104 (2015/03/29)"
// 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 14.104: Mar 29, 2015 Changes in layout of record cards. (184021 lines)
Version 14.103: Mar 29, 2015 New table to ban users out of ranking. (184014 lines)
1 change necessary in database:
CREATE TABLE IF NOT EXISTS usr_banned (UsrCod INT NOT NULL,UNIQUE INDEX(UsrCod));

File diff suppressed because it is too large Load Diff

View File

@ -36,16 +36,16 @@
/*****************************************************************************/
#define Rec_RECORD_WIDTH_WIDE 560
#define Rec_C1_WIDTH_WIDE 52
#define Rec_C2_WIDTH_WIDE 144
#define Rec_C3_WIDTH_WIDE 210
#define Rec_C4_WIDTH_WIDE 154
#define Rec_C1_TOP_WIDE 52
#define Rec_C2_TOP_WIDE 354
#define Rec_C3_TOP_WIDE 154
#define Rec_C1_BOTTOM_WIDE (160-2)
#define Rec_C2_BOTTOM_WIDE (400-2)
#define Rec_RECORD_WIDTH_NARROW 460
#define Rec_C1_WIDTH_NARROW 52
#define Rec_C2_WIDTH_NARROW 94
#define Rec_C3_WIDTH_NARROW 160
#define Rec_C4_WIDTH_NARROW 154
#define Rec_C1_TOP_NARROW 52
#define Rec_C2_TOP_NARROW 254
#define Rec_C3_TOP_NARROW 154
#define Rec_MAX_LENGTH_NAME_FIELD 255
#define Rec_MIN_LINES_IN_EDITION_FIELD 1