mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Update manager: report Linux separately
I know the plan is to do much better OS detection - but at least Linux in general should be called out and not be treated as "unknown". Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
ede6a38bcf
commit
4ee94167f1
1 changed files with 2 additions and 0 deletions
|
@ -19,6 +19,8 @@ void UpdateManager::checkForUpdates()
|
|||
os = "win";
|
||||
#elif defined(Q_OS_MAC)
|
||||
os = "osx";
|
||||
#elif defined(Q_OS_LINUX)
|
||||
os = "linux";
|
||||
#else
|
||||
os = "unknown";
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue