Skip to content

Commit

Permalink
Fix #992
Browse files Browse the repository at this point in the history
  • Loading branch information
jijojosephk committed Nov 6, 2023
1 parent f53a2c5 commit c92be00
Show file tree
Hide file tree
Showing 5 changed files with 124 additions and 103 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# teams-for-linux

This is an unofficial Microsoft Teams client. The official client for Linux from Microsoft is retired by the end of 2022 and be replaced with PWA. Read the blog [here](https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-teams-progressive-web-app-now-available-on-linux/ba-p/3669846).
This is an unofficial Microsoft Teams client. The official one from Microsoft is retired and got replaced with PWA. Read the blog [here](https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-teams-progressive-web-app-now-available-on-linux/ba-p/3669846).

Please report bugs and questions in the issues section. We will attend them as soon as possible.
Please report bugs and questions in the issues section. We will attend them as soon as possible. Kindly go through the open issues before raising a new one and avoid duplicates. We encourage everyone to join our chat room in [matrix](https://matrix.to/#/#teams-for-linux_community:gitter.im) and ask your questions. That's probably the quickest way to find solutions.

As this is a wrapper around the web version of teams, we would not be able to add certain features. It's not because we don't want to, but we're fully dependant on Microsoft in certain cases. We may close the issue stating the same reason.

PRs and suggestions are welcomed. We will continue to support the community.

Expand Down
16 changes: 8 additions & 8 deletions app/menus/application.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
exports = module.exports = (Menus) => ({
label: 'Application',
submenu: [
{
label: 'About',
click: () => Menus.about(),
},
{
type: 'separator',
},
{
label: 'Open',
accelerator: 'ctrl+O',
Expand Down Expand Up @@ -36,7 +29,14 @@ exports = module.exports = (Menus) => ({
{
type: 'separator',
},
getQuitMenu(Menus)
getQuitMenu(Menus),
{
type: 'separator',
},
{
label: 'About',
click: () => Menus.about(),
}
],
});

Expand Down
9 changes: 9 additions & 0 deletions com.github.IsmaelMartinez.teams_for_linux.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@
<url type="bugtracker">https://github.com/IsmaelMartinez/teams-for-linux/issues</url>
<launchable type="desktop-id">com.github.IsmaelMartinez.teams_for_linux.desktop</launchable>
<releases>
<release version="1.3.19" date="2023-11-06">
<description>
<ul>
<li>New: Moved about menu entry to bottom</li>
<li>Update: Upgraded electron version to 27.0.3</li>
<li>Update: Edited documentation</li>
</ul>
</description>
</release>
<release version="1.3.18" date="2023-10-31">
<description>
<ul>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "teams-for-linux",
"version": "1.3.18",
"version": "1.3.19",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",
Expand Down Expand Up @@ -48,9 +48,9 @@
"yargs": "17.7.2"
},
"devDependencies": {
"electron": "27.0.2",
"electron": "27.0.3",
"electron-builder": "24.6.4",
"eslint": "8.51.0",
"eslint": "8.53.0",
"yarn": "1.22.19"
},
"build": {
Expand Down
Loading

0 comments on commit c92be00

Please sign in to comment.