Paper wallet for Hush, which you can use with no internet access while wearing a tinfoil hat inside of a Faraday cage. https://hush.is
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
867 B

4 years ago
// Copyright (c) 2016-2020 The Hush developers
// Distributed under the GPLv3 software license, see the accompanying
// file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
5 years ago
#include "mainwindow.h"
#include "version.h"
5 years ago
#include <QApplication>
int main(int argc, char *argv[])
{
5 years ago
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
4 years ago
QCoreApplication::setOrganizationDomain("hush.is");
QCoreApplication::setOrganizationName("Hush");
5 years ago
#ifdef Q_OS_LINUX
QFontDatabase::addApplicationFont(":/fonts/res/Ubuntu-R.ttf");
qApp->setFont(QFont("Ubuntu", 11, QFont::Normal, false));
#endif
5 years ago
QApplication a(argc, argv);
MainWindow w;
4 years ago
w.setWindowTitle(QString("Extreme Privacy: SilentDragonPaper ") + APP_VERSION);
5 years ago
w.show();
return a.exec();
}