ipfs-desktop: Taskbar icon not working
- OS: Windows 10 x64
- Version of IPFS Desktop: 0.30.2
Describe the bug I’m unable to right-click on the IPFS icon on the taskbar to quit the application. No menu appears. I’m only able to open the GUI with left-click!
To Reproduce Steps to reproduce the behavior:
- Start IPFS
- Right-click on the icon on the taskbar
- Nothing happens!
Expected behavior Menu with options should appear!
Screenshots
Additional context The icon also don’t change color when I’m connected! The version 0.30.1 works fine!
Thanks
About this issue
- Original URL
- State: closed
- Created 10 months ago
- Reactions: 1
- Comments: 17 (10 by maintainers)
Try to change
C:\Users\<USER NAME FILE>\AppData\Roaming\IPFS Desktop\config.json
language to""
, is was work for me.My guess is that this is another one of those bugs in the translation configuration.
Seems like the language system has been screwed up since version 0.30.0 #2600 FYI
The fix is out: https://github.com/ipfs/ipfs-desktop/pull/2650. It’s a super simple fix for an odd behavior from i18next: it shows an error when it cannot find a file for a language, even if it successfully resolves to a file for that language.
Thanks for submitting this issue @Dominiquini and thanks for providing a resolution @Azulan, this sounds like the correct assumption. IPFS-Desktop started lazy-lazy loading app-context which makes the loads much more faster and reduces the amount of initial load tasks.
However, this transition has not been as smooth as we’d hoped for, especially on the taskbar issues as testing taskbar in a cross-env fashion is hard. Taskbar was not covered with tests and hence it has seen a regression. There is an issue to tracking this.
This issue is currently not reproducible on a mac, and maybe is limited to windows only. Based on the logs you provided, looks like
i18n
is not initializing properly (which is not the case on a mac):@SgtPooki I think there is a weird race condition (on windows) where the
i18n
is not being initialized properly.