mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Allow copying the version info in the settings page
This commit is contained in:
parent
2749afbb91
commit
cb21433dc8
2 changed files with 5 additions and 7 deletions
|
@ -2,7 +2,8 @@ nheko
|
||||||
----
|
----
|
||||||
[![Build Status](https://travis-ci.org/mujx/nheko.svg?branch=master)](https://travis-ci.org/mujx/nheko)
|
[![Build Status](https://travis-ci.org/mujx/nheko.svg?branch=master)](https://travis-ci.org/mujx/nheko)
|
||||||
[![Build status](https://ci.appveyor.com/api/projects/status/07qrqbfylsg4hw2h/branch/master?svg=true)](https://ci.appveyor.com/project/mujx/nheko/branch/master)
|
[![Build status](https://ci.appveyor.com/api/projects/status/07qrqbfylsg4hw2h/branch/master?svg=true)](https://ci.appveyor.com/project/mujx/nheko/branch/master)
|
||||||
[![Latest Release](https://img.shields.io/github/release/mujx/nheko.svg)](https://github.com/mujx/nheko/releases)
|
[![Latest Stable Version](https://img.shields.io/badge/download-stable-green.svg)](https://bintray.com/mujx/matrix/nheko/_latestVersion)
|
||||||
|
[![Nightly](https://img.shields.io/badge/download-nightly-green.svg)](https://bintray.com/mujx/matrix/nheko/nightly)
|
||||||
[![Chat on Matrix](https://img.shields.io/badge/chat-on%20matrix-blue.svg)](https://matrix.to/#/#nheko:matrix.org)
|
[![Chat on Matrix](https://img.shields.io/badge/chat-on%20matrix-blue.svg)](https://matrix.to/#/#nheko:matrix.org)
|
||||||
[![AUR: nheko](https://img.shields.io/badge/AUR-nheko-blue.svg)](https://aur.archlinux.org/packages/nheko)
|
[![AUR: nheko](https://img.shields.io/badge/AUR-nheko-blue.svg)](https://aur.archlinux.org/packages/nheko)
|
||||||
|
|
||||||
|
@ -32,7 +33,7 @@ Specifically there is support for:
|
||||||
|
|
||||||
### Releases
|
### Releases
|
||||||
|
|
||||||
You can find releases for Linux (AppImage), macOS (disk image) & Windows (x64 installer) on the [Bintray repo](https://bintray.com/mujx/matrix/nheko).
|
Releases for Linux (AppImage), macOS (disk image) & Windows (x64 installer) can be found on the [Bintray repo](https://bintray.com/mujx/matrix/nheko).
|
||||||
|
|
||||||
### Repositories
|
### Repositories
|
||||||
|
|
||||||
|
@ -85,9 +86,6 @@ If you don't want to install any external dependencies, you can generate an AppI
|
||||||
make docker-app-image
|
make docker-app-image
|
||||||
```
|
```
|
||||||
|
|
||||||
If you're on Debian you should use `make docker-debian-appimage` instead, which uses
|
|
||||||
Debian as the build host in an attempt to work around this [issue](https://github.com/AppImage/AppImageKit/wiki/Desktop-Linux-Platform-Issues#openssl).
|
|
||||||
|
|
||||||
##### Arch Linux
|
##### Arch Linux
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
|
@ -121,8 +121,8 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
|
||||||
auto heading_ = new QLabel(tr("User Settings"));
|
auto heading_ = new QLabel(tr("User Settings"));
|
||||||
heading_->setStyleSheet("font-weight: bold; font-size: 22px;");
|
heading_->setStyleSheet("font-weight: bold; font-size: 22px;");
|
||||||
|
|
||||||
auto versionInfo = new QLabel(
|
auto versionInfo = new QLabel(QString("%1 | %2").arg(nheko::version).arg(nheko::build_os));
|
||||||
QString("%1 | %2 | %3").arg(nheko::version).arg(nheko::build_user).arg(nheko::build_os));
|
versionInfo->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
||||||
|
|
||||||
topBarLayout_ = new QHBoxLayout;
|
topBarLayout_ = new QHBoxLayout;
|
||||||
topBarLayout_->setSpacing(0);
|
topBarLayout_->setSpacing(0);
|
||||||
|
|
Loading…
Reference in a new issue