# QOwnNotes bouwen
# Bouwen vanuit GitHub
U kunt QOwnNotes ook zelf bouwen vanuit de broncode.
Check de code rechtstreeks uit de git-repository:
git clone https://github.com/pbek/QOwnNotes.git -b release
cd QOwnNotes
git submodule update --init
2
3
Voor foutopsporing is het het gemakkelijkst om QtCreator te gebruiken. Met het downloaden van Qt Creator (opens new window), heb je ook het pakket qtwebsockets
nodig om QOwnNotes te bouwen met Qt6. If you build under Windows, you want to stick to MinGw 64-bit. Op Linux heb je waarschijnlijk een pakket voor QtCreator in je repository.
Open daarna het projectbestand src/QOwnNotes.pro
en klik op Build / Build Project QOwnNotes.
Als u weet wat u doet, kunt u QOwnNotes ook rechtstreeks in uw terminal bouwen:
cd src
# build binary translation files if you want another language than English
lrelease QOwnNotes.pro
# prepare build process and build the application
qmake
make
2
3
4
5
6
7
8
Voel je vrij om broncode aan dit project bij te dragen, suggesties te doen of meld problemen met de QOwnNotes issues page (opens new window).
Bezoek QOwnNotes op GitHub (opens new window).
TIP
If you want to contribute source code to the project please make your pull requests to the main
branch.
# Bronarchief
U kunt de broncode-archieven van QOwnNotes vinden op QOwnNotes source archive (opens new window).
De bronarchieven zullen als volgt toegankelijk zijn:
https://github.com/pbek/QOwnNotes/releases/download/v23.7.0/qownnotes-23.7.0.tar.xz
# Bouwen met nix
Als je de Nix package manager (opens new window) beschikbaar hebt, kun je de broncode gewoon Git-klonen, zoals hierboven uitgelegd, en bouwen met:
# Open a nix-shell to get all needed tools
nix-shell
# Build the application
just nix-build
# Run the built application
just nix-run
2
3
4
5
6
7
8