From 4bb67d88820c3f5fca554d4910c9e9193ffbf3bb Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Mon, 28 Nov 2022 14:56:53 +0100 Subject: [PATCH 1/5] Remove empty translation --- Papocchio.pro | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Papocchio.pro b/Papocchio.pro index 8ce7222..a97885b 100644 --- a/Papocchio.pro +++ b/Papocchio.pro @@ -38,5 +38,4 @@ TRANSLATIONS += \ translations/harbour-papocchio-sr.ts \ translations/harbour-papocchio-sv.ts \ translations/harbour-papocchio-tr.ts \ - translations/harbour-papocchio-tzm.ts \ - translations/harbour-papocchio-zh_Hant.ts + translations/harbour-papocchio-tzm.ts From a4e885cdc0f5f943fc0ac87b29da7fc9c8aed609 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Tue, 27 Dec 2022 13:06:09 +0100 Subject: [PATCH 2/5] Fix path to bug tracker --- rpm/harbour-papocchio.spec | 2 +- rpm/harbour-papocchio.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rpm/harbour-papocchio.spec b/rpm/harbour-papocchio.spec index 7bede64..d22b32d 100644 --- a/rpm/harbour-papocchio.spec +++ b/rpm/harbour-papocchio.spec @@ -44,7 +44,7 @@ Screenshots: - https://raw.githubusercontent.com/ilpianista/harbour-Papocchio/master/screenshots/screenshot_2.png Url: Homepage: https://github.com/ilpianista/harbour-Papocchio - Bugtracker: https://github.com/ilpianista/harbour-Papocchio/-/issues + Bugtracker: https://github.com/ilpianista/harbour-Papocchio/issues Donation: https://liberapay.com/ilpianista %endif diff --git a/rpm/harbour-papocchio.yaml b/rpm/harbour-papocchio.yaml index e4628b0..c09ac70 100644 --- a/rpm/harbour-papocchio.yaml +++ b/rpm/harbour-papocchio.yaml @@ -28,7 +28,7 @@ Description: | - https://raw.githubusercontent.com/ilpianista/harbour-Papocchio/master/screenshots/screenshot_2.png Url: Homepage: https://github.com/ilpianista/harbour-Papocchio - Bugtracker: https://github.com/ilpianista/harbour-Papocchio/-/issues + Bugtracker: https://github.com/ilpianista/harbour-Papocchio/issues Donation: https://liberapay.com/ilpianista %endif Configure: none From fe949a05b95cb2365cf97be075fa3f7a52ec179c Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Wed, 28 Dec 2022 11:11:47 +0100 Subject: [PATCH 3/5] Add missing import --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index eaebc1f..2f82b62 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -17,6 +17,7 @@ */ #include +#include #include From 10af5ec993b0b4d25e8e7ccb9dbbff7dd4922dd0 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Wed, 28 Dec 2022 11:54:21 +0100 Subject: [PATCH 4/5] Build all main branches --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b83492..6afbb55 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - harbour tags: - '*' pull_request: From fb8bda67cc7c78840a27cf8c1006f62734f23c5f Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Wed, 28 Dec 2022 11:59:42 +0100 Subject: [PATCH 5/5] Fix organization name --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 2f82b62..6194945 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -29,7 +29,7 @@ int main(int argc, char *argv[]) QScopedPointer view(SailfishApp::createView()); QCoreApplication::setApplicationName(QStringLiteral("harbour-papocchio")); - QCoreApplication::setOrganizationDomain(QStringLiteral("andreascarpino.it")); + QCoreApplication::setOrganizationName(QStringLiteral("andreascarpino.it")); view->setSource(SailfishApp::pathTo("qml/Papocchio.qml"));