Skip to content

Commit

Permalink
fix the missing icon in alt-tab (#1288)
Browse files Browse the repository at this point in the history
* fix the missing icon in alt-tab

* adding notes from MR 1287
  • Loading branch information
IsmaelMartinez committed Jun 7, 2024
1 parent 9d4db65 commit eef9d60
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
7 changes: 5 additions & 2 deletions app/mainAppWindow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,13 @@ exports.onAppReady = async function onAppReady(configGroup) {
intune.initSso(logger, config.ssoInTuneAuthUser);
}

window = await createWindow();

if (config.trayIconEnabled) {
iconChooser = new TrayIconChooser(configGroup.startupConfig);
}

window = await createWindow();

if (iconChooser) {
const m = new Menus(window, configGroup, iconChooser.getFile());
m.onSpellCheckerLanguageChanged = onSpellCheckerLanguageChanged;
}
Expand Down
8 changes: 8 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,14 @@
<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.6.1" date="2024-06-07">
<description>
<ul>
<li>FIX missing icon in alt-tab</li>
<li>Improve tweaks css file, to hide the "waffle" menu and align the logo</li>
</ul>
</description>
</release>
<release version="1.6.0" date="2024-06-06">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "teams-for-linux",
"version": "1.6.0",
"version": "1.6.1",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",
Expand Down

0 comments on commit eef9d60

Please sign in to comment.