Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Electron version upgraded to 25.2.0 #882

Merged
merged 1 commit into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Here is the list of available arguments and its usage:
| minimized | Start the application minimized | false |
| url | url to open | [https://teams.microsoft.com/](https://teams.microsoft.com/) |
| proxyServer | Proxy Server with format address:port | None |
| useElectronDl | Use Electron dl to automatically download files to the download folder | false |
| config | config file location | ~/.config/teams-for-linux/config.json |
| chromeUserAgent | user agent string for chrome | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3831.6 Safari/537.36 |
| ntlmV2enabled | set enable-ntlm-v2 value | true |
Expand Down
5 changes: 0 additions & 5 deletions app/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ function argv(configPath) {
describe: 'Custom User Directory so that you can have multiple profiles',
type: 'string'
},
useElectronDl: {
default: false,
describe: 'Use Electron dl to automatically download files to the download folder',
type: 'boolean'
},
minimized: {
default: false,
describe: 'Start the application minimized',
Expand Down
1 change: 0 additions & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ const store = new Store({
const certificateModule = require('./certificate');
const gotTheLock = app.requestSingleInstanceLock();
const mainAppWindow = require('./mainAppWindow');
if (config.useElectronDl) require('electron-dl')();

if (config.proxyServer) app.commandLine.appendSwitch('proxy-server', config.proxyServer);
app.commandLine.appendSwitch('auth-server-whitelist', config.authServerWhitelist);
Expand Down
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "teams-for-linux",
"version": "1.1.11",
"version": "1.2.0",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",
Expand Down Expand Up @@ -36,19 +36,18 @@
"release": "electron-builder"
},
"dependencies": {
"@electron/remote": "^2.0.8",
"electron-dl": "ismaelmartinez/electron-dl",
"@electron/remote": "^2.0.10",
"electron-is-dev": "2.0.0",
"electron-store": "8.1.0",
"electron-window-state": "5.0.3",
"lucid-log": "^0.0.3",
"node-sound": "^0.0.8",
"yargs": "17.5.1"
"yargs": "17.7.2"
},
"devDependencies": {
"electron": "^21.0.1",
"electron-builder": "23.3.3",
"eslint": "8.24.0",
"electron": "^25.2.0",
"electron-builder": "24.4.0",
"eslint": "8.44.0",
"yarn": "1.22.19"
},
"build": {
Expand Down
Loading
Loading