aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-08 15:49:56 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-08 15:49:56 +0200
commit75deaa0c850d374f526102b0b38402b2632f9751 (patch)
tree255076e5c17f5671adc10b65dbbc0c64028b7171
parent39ece81cd42ff1c700a39e2197dd28bf53ad43dd (diff)
downloadkristall-75deaa0c850d374f526102b0b38402b2632f9751.tar.gz
Adds some notes about MacOS in bug section, adds patch for more casserts!
-rw-r--r--README.md12
-rw-r--r--src/browsertab.cpp2
-rw-r--r--src/documentoutlinemodel.cpp2
-rw-r--r--src/documentstyle.cpp2
-rw-r--r--src/geminiclient.cpp2
-rw-r--r--src/gophermaprenderer.cpp2
-rw-r--r--src/mainwindow.cpp2
7 files changed, 15 insertions, 9 deletions
diff --git a/README.md b/README.md
index af6b79a..b7ad7e5 100644
--- a/README.md
+++ b/README.md
@@ -125,6 +125,12 @@ Just use QtCreator to build `./src/kristall.pro`. Default settings should be fin
> <styan> xq: When using torsocks(1) on kristall QNetworkInterface complains loudly about not being permitted to create an IPv6 socket..
-- Include <memory> in browsertab.hpp
-- Build "document not found message" without markdown
-- DocumentOutlineModel needs to include <cassert> \ No newline at end of file
+> Build on MacOS outputs kristall.app, not kristall
+> Same for windows probably with kristall.exe
+> <IceMichael> ah, ist unter mac ein kristall.app
+
+MAC needs different default font
+
+https://usercontent.irccloud-cdn.com/file/OrkuXDfQ/image.png
+
+<IceMichael> Andale Mono, falls du das für mac irgendwie voreinstellen willst (aber kA, ob die überall diese ist) \ No newline at end of file
diff --git a/src/browsertab.cpp b/src/browsertab.cpp
index 3c36ff2..26f1ab2 100644
--- a/src/browsertab.cpp
+++ b/src/browsertab.cpp
@@ -4,7 +4,7 @@
#include "geminirenderer.hpp"
#include "settingsdialog.hpp"
#include "gophermaprenderer.hpp"
-
+#include <cassert>
#include <QTabWidget>
#include <QMenu>
#include <QMessageBox>
diff --git a/src/documentoutlinemodel.cpp b/src/documentoutlinemodel.cpp
index e98f072..604ca6f 100644
--- a/src/documentoutlinemodel.cpp
+++ b/src/documentoutlinemodel.cpp
@@ -1,5 +1,5 @@
#include "documentoutlinemodel.hpp"
-
+#include <cassert>
#include <QModelIndex>
DocumentOutlineModel::DocumentOutlineModel() :
diff --git a/src/documentstyle.cpp b/src/documentstyle.cpp
index 6a8e8bf..c7ec17b 100644
--- a/src/documentstyle.cpp
+++ b/src/documentstyle.cpp
@@ -1,5 +1,5 @@
#include "documentstyle.hpp"
-
+#include <cassert>
#include <QDebug>
#include <QString>
#include <QStringList>
diff --git a/src/geminiclient.cpp b/src/geminiclient.cpp
index fd11f6b..6e63991 100644
--- a/src/geminiclient.cpp
+++ b/src/geminiclient.cpp
@@ -1,5 +1,5 @@
#include "geminiclient.hpp"
-
+#include <cassert>
#include <QDebug>
GeminiClient::GeminiClient(QObject *parent) : QObject(parent)
diff --git a/src/gophermaprenderer.cpp b/src/gophermaprenderer.cpp
index e02e3fc..96e0557 100644
--- a/src/gophermaprenderer.cpp
+++ b/src/gophermaprenderer.cpp
@@ -1,5 +1,5 @@
#include "gophermaprenderer.hpp"
-
+#include <cassert>
#include <QTextList>
#include <QTextBlock>
#include <QList>
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index a2cb1ab..9171924 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -2,7 +2,7 @@
#include "ui_mainwindow.h"
#include "browsertab.hpp"
#include "settingsdialog.hpp"
-
+#include <cassert>
#include <QMessageBox>
#include <memory>
#include <QShortcut>