From 0a18da2a9aedd9493bd3753e70fbf97dc7e53fc5 Mon Sep 17 00:00:00 2001 From: Andrei Gavrilescu Date: Tue, 7 Apr 2020 14:50:37 +0300 Subject: [PATCH] Update CI Tools Co-authored-by: Annika Wickert --- .travis.yml | 6 +++--- app/features/navbar/components/HelpButton.js | 4 ++++ appveyor.yml | 2 +- main.js | 2 +- package.json | 9 ++++++++- 5 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index f3cfcdc..47e2221 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,13 @@ matrix: include: - os: osx - osx_image: xcode9.3 + osx_image: xcode9.4 language: node_js - node_js: '8' + node_js: '12' - os: linux language: node_js - node_js: '8' + node_js: '12' addons: apt: sources: diff --git a/app/features/navbar/components/HelpButton.js b/app/features/navbar/components/HelpButton.js index fa07fde..469f2fd 100644 --- a/app/features/navbar/components/HelpButton.js +++ b/app/features/navbar/components/HelpButton.js @@ -7,6 +7,7 @@ import React, { Component } from 'react'; import config from '../../config'; import { openExternalLink } from '../../utils'; +import { version } from '../../../../package.json'; type State = { @@ -103,6 +104,9 @@ export default class HelpButton extends Component< *, State> { About + + Version: { version } + ); diff --git a/appveyor.yml b/appveyor.yml index 433c9a5..0f8d4a5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,7 +8,7 @@ cache: - '%USERPROFILE%\.electron' install: - - ps: Install-Product node 8 x64 + - ps: Install-Product node 12 x64 - npm install build_script: diff --git a/main.js b/main.js index 2cc4eeb..edff987 100644 --- a/main.js +++ b/main.js @@ -50,7 +50,7 @@ let mainWindow = null; function setApplicationMenu() { if (process.platform === 'darwin') { const template = [ { - label: app.getName(), + label: app.name, submenu: [ { label: 'Quit', accelerator: 'Command+Q', diff --git a/package.json b/package.json index 4c93abf..e37a17d 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,10 @@ { "arch": "x64", "target": "AppImage" + }, + { + "arch": "x64", + "target": "deb" } ] }, @@ -70,7 +74,10 @@ "webrtc", "xmpp", "electron", - "jitsi-meet" + "jitsi-meet", + "conference", + "events", + "multimedia events" ], "author": "Jitsi Team ", "readmeFilename": "README.md",