aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorConfuSomu2024-06-18 15:29:10 -0400
committerConfuSomu2024-06-18 15:29:10 -0400
commitfab51b41f54c425bd35ca1912c479afa21b87eb1 (patch)
tree89dcdb125425def56b5dbd49606b808fac0e2055
parent456293a8ef286fa9db9b44bdd466a00e81c8e14f (diff)
downloadActorViewer-master.tar
ActorViewer-master.tar.gz
ActorViewer-master.zip
Build with Qt 6 by defaultHEADmaster
Readme has been updated with new indications. We still mention that it builds with Qt 5.
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 67f1399..87088bf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,7 +12,7 @@ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # For Kate's LSP
-find_package(QT NAMES Qt5 REQUIRED COMPONENTS Widgets Concurrent)
+find_package(QT NAMES Qt6 REQUIRED COMPONENTS Widgets Concurrent)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets Concurrent)
# Compile option for mastodonpp support
diff --git a/README.md b/README.md
index bbead54..116b96e 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# ActorViewer
-ActorViewer is a tool that allows one to explore their Fediverse data exports. It uses the Qt 5 library for its user interface, and builds fine with Qt 6. Currently, ActorViewer allows doing the following:
+ActorViewer is a tool that allows one to explore their Fediverse data exports. It uses the Qt 6 library for its user interface, and also builds fine with Qt 5 if you still need that. Currently, ActorViewer allows doing the following:
* Open Mastodon data exports (make sure to have them decompressed and open the outbox.json file!)
* Support for other Fediverse platforms will be added in the future, in addition to presenting a smarter UI for opening exports. Also, automatic decompression of downloaded exports would be handy.
@@ -11,7 +11,7 @@ ActorViewer is a tool that allows one to explore their Fediverse data exports. I
* Go to a random status!
* Copy the status text
-Furthermore, support for viewing replies to your posts will be added. I also want the app to have translation support (and be translated) before making a release.
+Furthermore, support for viewing replies to your posts will be added. I also want the app to have translation support (and be translated) before making a release. It could also be nice to make it a sort of lightweight Fediverse client, but no guarantees as it might be a little out of scope.
## Building