Update CI Tools

Co-authored-by: Annika Wickert <awlx@users.noreply.github.com>
This commit is contained in:
Andrei Gavrilescu 2020-04-07 14:50:37 +03:00 committed by Saúl Ibarra Corretgé
parent c40ab63f18
commit 0a18da2a9a
5 changed files with 17 additions and 6 deletions

View File

@ -1,13 +1,13 @@
matrix: matrix:
include: include:
- os: osx - os: osx
osx_image: xcode9.3 osx_image: xcode9.4
language: node_js language: node_js
node_js: '8' node_js: '12'
- os: linux - os: linux
language: node_js language: node_js
node_js: '8' node_js: '12'
addons: addons:
apt: apt:
sources: sources:

View File

@ -7,6 +7,7 @@ import React, { Component } from 'react';
import config from '../../config'; import config from '../../config';
import { openExternalLink } from '../../utils'; import { openExternalLink } from '../../utils';
import { version } from '../../../../package.json';
type State = { type State = {
@ -103,6 +104,9 @@ export default class HelpButton extends Component< *, State> {
<Item onActivate = { this._onAboutClick }> <Item onActivate = { this._onAboutClick }>
About About
</Item> </Item>
<Item>
Version: { version }
</Item>
</Group> </Group>
</Droplist> </Droplist>
); );

View File

@ -8,7 +8,7 @@ cache:
- '%USERPROFILE%\.electron' - '%USERPROFILE%\.electron'
install: install:
- ps: Install-Product node 8 x64 - ps: Install-Product node 12 x64
- npm install - npm install
build_script: build_script:

View File

@ -50,7 +50,7 @@ let mainWindow = null;
function setApplicationMenu() { function setApplicationMenu() {
if (process.platform === 'darwin') { if (process.platform === 'darwin') {
const template = [ { const template = [ {
label: app.getName(), label: app.name,
submenu: [ { submenu: [ {
label: 'Quit', label: 'Quit',
accelerator: 'Command+Q', accelerator: 'Command+Q',

View File

@ -39,6 +39,10 @@
{ {
"arch": "x64", "arch": "x64",
"target": "AppImage" "target": "AppImage"
},
{
"arch": "x64",
"target": "deb"
} }
] ]
}, },
@ -70,7 +74,10 @@
"webrtc", "webrtc",
"xmpp", "xmpp",
"electron", "electron",
"jitsi-meet" "jitsi-meet",
"conference",
"events",
"multimedia events"
], ],
"author": "Jitsi Team <support@jitsi.org>", "author": "Jitsi Team <support@jitsi.org>",
"readmeFilename": "README.md", "readmeFilename": "README.md",