Skip to content

Commit

Permalink
Update CI Tools
Browse files Browse the repository at this point in the history
Co-authored-by: Annika Wickert <[email protected]>
  • Loading branch information
2 people authored and saghul committed Apr 7, 2020
1 parent c40ab63 commit 0a18da2
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 4 additions & 0 deletions app/features/navbar/components/HelpButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import React, { Component } from 'react';

import config from '../../config';
import { openExternalLink } from '../../utils';
import { version } from '../../../../package.json';

type State = {

Expand Down Expand Up @@ -103,6 +104,9 @@ export default class HelpButton extends Component< *, State> {
<Item onActivate = { this._onAboutClick }>
About
</Item>
<Item>
Version: { version }
</Item>
</Group>
</Droplist>
);
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cache:
- '%USERPROFILE%\.electron'

install:
- ps: Install-Product node 8 x64
- ps: Install-Product node 12 x64
- npm install

build_script:
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
{
"arch": "x64",
"target": "AppImage"
},
{
"arch": "x64",
"target": "deb"
}
]
},
Expand Down Expand Up @@ -70,7 +74,10 @@
"webrtc",
"xmpp",
"electron",
"jitsi-meet"
"jitsi-meet",
"conference",
"events",
"multimedia events"
],
"author": "Jitsi Team <[email protected]>",
"readmeFilename": "README.md",
Expand Down

0 comments on commit 0a18da2

Please sign in to comment.