Adds provider name to fix welcomepage text.

* Removes unused ADD_PEOPLE_APP_NAME
* Moves deep-link header background and logo size as variables.
* Fixes more numbers page space in the header.
* Fixes left padding on deep-linking mobile page.
This commit is contained in:
damencho 2019-03-15 11:07:45 +00:00 committed by Hristo Terezov
parent f94db0da2c
commit f5a7e0bccb
7 changed files with 14 additions and 13 deletions

View File

@ -156,3 +156,9 @@ $welcomePageDescriptionColor: #fff;
$welcomePageFontFamily: inherit; $welcomePageFontFamily: inherit;
$welcomePageHeaderBackground: linear-gradient(-90deg, #1251AE 0%, #0074FF 50%, #1251AE 100%); $welcomePageHeaderBackground: linear-gradient(-90deg, #1251AE 0%, #0074FF 50%, #1251AE 100%);
$welcomePageTitleColor: #fff; $welcomePageTitleColor: #fff;
/**
* Deep-linking page variables.
*/
$deepLinkingMobileLogoHeight: 40px;
$deepLinkingMobileHeaderBackground: #f1f2f5;

View File

@ -8,13 +8,13 @@
.header { .header {
width: 100%; width: 100%;
height: 70px; height: 70px;
background-color: #f1f2f5; background-color: $deepLinkingMobileHeaderBackground;
text-align: center; text-align: center;
.logo { .logo {
margin-top: 15px; margin-top: 15px;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
height: 40px; height: $deepLinkingMobileLogoHeight;
} }
} }
@ -133,6 +133,7 @@
.dial-in-numbers-list { .dial-in-numbers-list {
color: $unsupportedBrowserTextColor; color: $unsupportedBrowserTextColor;
padding-left: 20px;
} }
.dial-in-numbers-body { .dial-in-numbers-body {

View File

@ -193,6 +193,7 @@
.dial-in-conference-id { .dial-in-conference-id {
text-align: center; text-align: center;
min-width: 200px; min-width: 200px;
margin-top: 40px;
} }
.dial-in-conference-name, .dial-in-conference-name,

View File

@ -19,10 +19,6 @@ edit /etc/jitsi/jicofo/sip-communicator.properties (or similar), set the appropr
peopleSearchQueryTypes: ['conferenceRooms'], peopleSearchQueryTypes: ['conferenceRooms'],
peopleSearchUrl: 'https://api.yourdomain.com/testpath/searchpeople', peopleSearchUrl: 'https://api.yourdomain.com/testpath/searchpeople',
``` ```
- interface_config.js:
```
ADD_PEOPLE_APP_NAME: 'Jitsi'
```
The combination of the above settings and providing a jwt token will enable a button under invite option which will show the dialog 'Add people'. The combination of the above settings and providing a jwt token will enable a button under invite option which will show the dialog 'Add people'.

View File

@ -29,6 +29,7 @@ var interfaceConfig = {
DISPLAY_WELCOME_PAGE_CONTENT: true, DISPLAY_WELCOME_PAGE_CONTENT: true,
APP_NAME: 'Jitsi Meet', APP_NAME: 'Jitsi Meet',
NATIVE_APP_NAME: 'Jitsi Meet', NATIVE_APP_NAME: 'Jitsi Meet',
PROVIDER_NAME: 'Jitsi',
LANG_DETECTION: false, // Allow i18n to detect the system language LANG_DETECTION: false, // Allow i18n to detect the system language
INVITATION_POWERED_BY: true, INVITATION_POWERED_BY: true,
@ -153,11 +154,6 @@ var interfaceConfig = {
*/ */
CONNECTION_INDICATOR_DISABLED: false, CONNECTION_INDICATOR_DISABLED: false,
/**
* The name of the application connected to the "Add people" search service.
*/
// ADD_PEOPLE_APP_NAME: "",
/** /**
* If true, hides the video quality label indicating the resolution status * If true, hides the video quality label indicating the resolution status
* of the current large video. * of the current large video.

View File

@ -758,7 +758,7 @@
}, },
"calendar": "Calendar", "calendar": "Calendar",
"connectCalendarButton": "Connect your calendar", "connectCalendarButton": "Connect your calendar",
"connectCalendarText": "Connect your calendar to view all your meetings in __app__. Plus, add __app__ meetings to your calendar and start them with one click.", "connectCalendarText": "Connect your calendar to view all your meetings in __app__. Plus, add __provider__ meetings to your calendar and start them with one click.",
"enterRoomTitle": "Start a new meeting", "enterRoomTitle": "Start a new meeting",
"go": "GO", "go": "GO",
"join": "JOIN", "join": "JOIN",

View File

@ -189,7 +189,8 @@ class CalendarList extends AbstractPage<Props> {
<div className = 'meetings-list-empty'> <div className = 'meetings-list-empty'>
<p className = 'description'> <p className = 'description'>
{ t('welcomepage.connectCalendarText', { { t('welcomepage.connectCalendarText', {
app: interfaceConfig.APP_NAME app: interfaceConfig.APP_NAME,
provider: interfaceConfig.PROVIDER_NAME
}) } }) }
</p> </p>
<div <div