Creazione di QOwnNotes
Compilare da GitHub
Puoi anche creare QOwnNotes da solo dal codice sorgente.
Checkout the code of the last release directly from the git repository:
git clone https://github.com/pbek/QOwnNotes.git -b release
cd QOwnNotes
git submodule update --init
Per il debugging, la strada più facile è usando QtCreator. When downloading Qt Creator, you will also need the package qtwebsockets to build QOwnNotes with Qt6. If you build under Windows, you want to stick to MinGw 64-bit. Su linux, molto probabilmente, hai il pacchetto per QtCreator nella tua repository.
Successivamente apri il file del progetto src/QOwnNotes.pro e clicca su Build/Build Project QOwnNotes.
In alternativa, se sai come funziona, puoi fare il build di QOwnNotes direttamente dal tuo terminale:
cd src
# costruisci i file binari delle traduzioni se vuoi una lingua diversa dall'inglese
lrelease QOwnNotes.pro
# prepara il processo di build dell'applicazione
qmake
make
Sentiti libero di contribuire con il codice sorgente a questo progetto, dare suggerimenti o segnalare problemi nella pagina dei problemi di QOwnNotes.
Visita QOwnNotes su GitHub.
Tips
If you want to contribute source code to the project please make your pull requests to the main branch.
Archivio sorgente
Troverai gli archivi sorgente di QOwnNotes su QOwnNotes source archive.
Gli archivi sorgente saranno accessibili in questo modo:
https://github.com/pbek/QOwnNotes/releases/download/v23.7.0/qownnotes-23.7.0.tar.xz
Building with nix
If you have the Nix package manager available you can just git-clone the source code, like explained above and build with:
# Get devenv if you don't have it already
nix-shell -p devenv
# Open a shell with all the tools you need
devenv shell
# Build the application
just nix-build
# Run the built application
just nix-run