From 9385a9ecacfc5b4223ab5fea3dceaea88bd731e0 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle Date: Mon, 2 Jun 2025 19:45:05 +0200 Subject: [PATCH] just: add recipe for qhotkey patches Signed-off-by: Patrizio Bekerle --- justfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 679b4c98c..94a4ce135 100644 --- a/justfile +++ b/justfile @@ -148,6 +148,11 @@ git-apply-qownnotes-patch: git-apply-qmarkdowntextedit-patch: cd ./src/libraries/qmarkdowntextedit && git apply {{ transferDir }}/qmarkdowntextedit.patch +# Apply a git patch to qhotkey +[group('patches')] +git-apply-qhotkey-patch: + cd ./src/libraries/qhotkey && git apply {{ transferDir }}/qhotkey.patch + # Apply a git patch to piwiktracker [group('patches')] git-apply-piwiktracker-patch: @@ -164,9 +169,10 @@ git-create-patches: @echo "transferDir: {{ transferDir }}" git diff --no-ext-diff --staged --binary > {{ transferDir }}/qownnotes.patch cd src/libraries/qmarkdowntextedit && git diff --no-ext-diff --staged --binary > {{ transferDir }}/qmarkdowntextedit.patch + cd src/libraries/qhotkey && git diff --no-ext-diff --staged --binary > {{ transferDir }}/qhotkey.patch cd src/libraries/piwiktracker && git diff --no-ext-diff --staged --binary > {{ transferDir }}/piwiktracker.patch cd src/libraries/qttoolbareditor && git diff --no-ext-diff --staged --binary > {{ transferDir }}/qttoolbareditor.patch - ls -l1t {{ transferDir }} | head -5 + ls -l1t {{ transferDir }} | head -6 # Open the Crowdin webpage [group('translations')]