A cool flashcard app made in QT where you grow a tree.
FAQ is at the bottom.
- Different flashcard 'games' - one built in, another is optional.
- Logging popups!
- Regular or double sided with optional prefixes
- Grow a tree with your answers
- Custom UI svgs hand drawn by me
- Responsive layout
- Browse all your flashcards, edit them, delete them or add more
- Menu with help information for ease of use
- Saves flashcards to a configuration file automatically
Game plugins go under (to find the config directory, look at Help > t; Logs in the app). Just drop the library there and the game will recognise it! (Unless you typed in the folder name wrong)
demo5.mp4
Download the executable from the releases tab
- Ensure you have cmake installed (on any Linux just install
cmake) - Ensure QT is installed (and the svg library too)
- For Linux, find which package it is.
- Ubuntu:
sudo apt install qt6-base-dev qt6-svg-dev- Arch:
sudo pacman -S qt6-base qt6-svg
- For Linux, find which package it is.
cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel --config Releasee- Go find the executable in the build folder! (Usually at the top level)
pip install appimage-builderappimage-builder --recipe conf.yaml- The output .AppImage should be in this directory!
PLEASE NOTE: None of this even works.
This guide uses a very convoluted way to get this to work, there's probably a better way but I don't know it
- Open an administrator terminal
choco install -y msys2- Open another terminal and run
msys2 - In that resulting terminal, run
pacman -S --needed mingw-w64-x86_64-qt6-base mingw-w64-x86_64-qt6-svg mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake cmake(If prompted, press 'all') (Please paste with the right click menu, ctrl+v or ctrl+shift+v will break the command; to fix just press ctrl+c and paste with the right click menu) - Cd to the right directory (the C drive is located at
/c/, so the command may be e.g.cd /c/Users/Username/Downloads/sapla/)
cmake -B build -S . -DCMAKE_PREFIX_PATH="/mingw64" -DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel --config ReleaseeIf you DON'T have a Qt version already (Is there a directory called C:\Qt\x.x.x? (the xs being any number)):
pip install aqtinstallaqt install-qt windows desktop 6.4.2 win64_msvc2019_64 --outputdir C:\Qt- Now there is a Qt version 6.4.2 Once you have a Qt version::
- Run
C:\Qt\x.x.x\mingw_64\bin\windeployqt.exe --release .\build\Sapla.exe .\build\libcore.dllin this project's root directory
Yes. Every time you change even one letter it saves to the file.
To see the logs: Help > t; Logs. Config directory is the first log on the list.
Because I have barely coded in C++ or used QT, I required a lot of finding out how to do stuff. BUT, I wrote almost every line of code myself (which means the codebase is much neater than if I'd just chatGPT'd it all). I just used its judgement for generalised problems ('how do I do xyz' not '(re)write abc program to do xyz') (like using Google) and helped debugging by pointing out what the problems were (but I fixed the problems myself) as that saved me a lot of unecessary time.