Skip to content
Closed
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
26 changes: 6 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,33 +81,19 @@ Prerequisites:

**DEB packages** for currently supported Ubuntu versions are available for amd64, arm64 platforms via [Ubuntu PPA](https://launchpad.net/~foldyna/+archive/ubuntu/qlog). Ubuntu users can use following commands:

```bash
sudo add-apt-repository ppa:foldyna/qlog
sudo apt -U install qlog
```
`sudo add-apt-repository ppa:foldyna/qlog`

`sudo apt update`

`sudo apt install qlog`

Fedora **RPM packages** are available via GitHub [Releases](https://github.com/foldynl/QLog/releases/latest)

<a href='https://flathub.org/apps/io.github.foldynl.QLog'> <img width='120' alt='Download on Flathub' src='https://dl.flathub.org/assets/badges/flathub-badge-en.png'/></a>

**Flatpak** package is available via [Flathub](https://flathub.org/apps/io.github.foldynl.QLog). The package contains built-in TrustedQSL.

The above packages are maintained by the application maintainer. If your distribution is neither Ubuntu or Fedora, Flatpak is the recommended way of getting QLog.

However, there are many other unofficial packages available for other distributions — see the Unofficial Repositories on [QLog Wiki](https://github.com/foldynl/QLog/wiki) or [Repology](https://repology.org/project/qlog/versions).

> [!CAUTION]
> Beware that these are unofficial packages!

On **Debian** forky or newer:
```bash
sudo apt -U install qlog
```

On **openSUSE** Tumbleweed:
```bash
sudo zypper install QLog
```
The above packages are maintained by the application maintainer. However, there are many other unofficial packages available for other distributions — see the Unofficial Repositories on [QLog Wiki](https://github.com/foldynl/QLog/wiki).

### Windows

Expand Down
4 changes: 3 additions & 1 deletion service/lotw/Lotw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ QString LotwBase::findTQSLPath()
QDir::homePath() + "/AppData/Local/Programs/TQSL/tqsl.exe"
#elif defined(Q_OS_MACOS)
"/Applications/tqsl.app/Contents/MacOS/tqsl",
"/Applications/TQSL.app/Contents/MacOS/tqsl"
"/Applications/TQSL.app/Contents/MacOS/tqsl",
"/Applications/TrustedQSL/tqsl.app/Contents/MacOS/tqsl",
"/Applications/TrustedQSL/TQSL.app/Contents/MacOS/tqsl"
#else
"/usr/bin/tqsl",
"/usr/local/bin/tqsl",
Expand Down