بناء QOwnNotes
البناء من GitHub
يمكنك كذلك بناء QOwnNotes بنفسك من المصدر البرمجي.
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
للتنقيح، من الأسهل استعمال QtCreator. عند تنزيل Qt Creator، ستحتاج كذلك إلى حزمة qtwebsockets لبناء QOwnNotes على Qt6. If you build under Windows, you want to stick to MinGw 64-bit. على لينكس، غالبا ستجد QtCreator في مستودعات توزيعتك.
بعدئذٍ، افتح ملف المشروع src/QOwnNotes.pro وانقر على Build ثم Build Project QOwnNotes.
ويمكنك كذلك بناء QOwnNotes من الطرفية إذا كنت تعرف ما تفعل:
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
رجاءً لا تتردد في المشاركة في هذا المشروع بكود برمجي أو اقتراحات أو إبلاغ عن مشاكل على صفحة مسائل QOwnNotes.
قم بزيارة QOwnNotes على GitHub.
Tips
If you want to contribute source code to the project please make your pull requests to the main branch. But please make sure to read the code contribution guidelines first.
ملفات المصدر البرمجي المضغوطة
يمكنك العثور على الملفات المضغوطة لمصدر QOwnNotes في أرشيف مصادر QOwnNotes.
يمكن الوصول إلى الملفات المضغوطة للكود المصدري برابط مثل هذا:
https://github.com/pbek/QOwnNotes/releases/download/v23.7.0/qownnotes-23.7.0.tar.xz
البناء بـ Nix
If you have the Nix package manager and Devenv installed you can just git-clone the repository, like explained above and build with:
# Open a shell with all the tools you need
devenv shell
# Build the application
just nix-build
# Run the built application
just nix-run