From 09c184c18f9a95409ee6e8184ffc5db9ac533b1b Mon Sep 17 00:00:00 2001 From: "Francesc M." Date: Sun, 2 Nov 2025 09:13:43 +0100 Subject: [PATCH 1/4] Adding gitqlientplugin --- CODEOWNERS | 1 + badges/extensions.svg | 2 +- registry/francescmm.gitqlient/extension.json | 100 +++++++++++++++++++ 3 files changed, 102 insertions(+), 1 deletion(-) create mode 100644 registry/francescmm.gitqlient/extension.json diff --git a/CODEOWNERS b/CODEOWNERS index d66836c..457f85a 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -10,6 +10,7 @@ /registry/theqtcompany.aiassistant @Maddimax @lupax /registry/theqtcompany.vale @Maddimax /registry/theqtcompany.cpp @Maddimax +/registry/gitqlient.gitqlient @francescmaestre # The basic stuff is owned by the Qt Creator team diff --git a/badges/extensions.svg b/badges/extensions.svg index fb94675..6fc02c6 100644 --- a/badges/extensions.svg +++ b/badges/extensions.svg @@ -1 +1 @@ -Extensions: 10Extensions10 +Extensions: 11Extensions11 diff --git a/registry/francescmm.gitqlient/extension.json b/registry/francescmm.gitqlient/extension.json new file mode 100644 index 0000000..17bdd74 --- /dev/null +++ b/registry/francescmm.gitqlient/extension.json @@ -0,0 +1,100 @@ +{ + "$schema": "../../schema/extension.schema.json", + "info": { + "id": "gitqlient", + "vendor_id": "gitqlient", + "display_name": "GitQlient", + "display_vendor": "GitQlient", + "license": "open-source" + }, + "latest": "1.6.0", + "versions": { + "1.6.0": { + "sources": [ + { + "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Windows-x64.7z", + "sha256": "e679a8b0783bcc3b6987c4f4de3afaecda14bc304164d575b91c40950d3b24eb", + "platform": { + "name": "Windows", + "architecture": "x86_64" + } + }, + { + "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Windows-arm64.7z", + "sha256": "3a0ce408bfbe068413a19ab8f8403abaa3ed10c8fc1c9360d1bdb6b29ce8974a", + "platform": { + "name": "Windows", + "architecture": "arm64" + } + }, + { + "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Linux-x64.7z", + "sha256": "777fb29c07ee1aa16862ad44dcf9fcf56ce036bb4752998b2d91c0de09516416", + "platform": { + "name": "Linux", + "architecture": "x86_64" + } + }, + { + "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Linux-arm64.7z", + "sha256": "18c02232bd837c9ce0addcd2371e43da29fbcb177bc054f07253791973300ad0", + "platform": { + "name": "Linux", + "architecture": "arm64" + } + }, + { + "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-macOS-universal.7z", + "sha256": "8ed1cff7f7739e9d26e323c4f3e7ce73ba7e66552ae464cb10ebab32954e34c3", + "platform": { + "name": "macOS", + "architecture": "x86_64" + } + }, + { + "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-macOS-universal.7z", + "sha256": "8ed1cff7f7739e9d26e323c4f3e7ce73ba7e66552ae464cb10ebab32954e34c3", + "platform": { + "name": "macOS", + "architecture": "arm64" + } + } + ], + "metadata": { + "Id": "gitqlient", + "Name": "GitQlient", + "Version": "1.6.1", + "CompatVersion": "18.0.0", + "Vendor": "GitQlient", + "VendorId": "gitqlient", + "Copyright": "(C) 2025 Francesc M.", + "License": "GPLv3", + "Description": "This plugins allows the user to work with GitQlient App embedded in QtCreator. It provides a Git UI.", + "Url": "https://github.com/francescmaestre/GitQlientPlugin", + "DocumentationUrl": "https://github.com/francescmaestre/GitQlientPlugin", + "Dependencies": [ + { + "Id": "core", + "Version": "18.0.0" + }, + { + "Id": "texteditor", + "Version": "18.0.0" + }, + { + "Id": "projectexplorer", + "Version": "18.0.0" + }, + { + "Id": "cppeditor", + "Version": "18.0.0" + }, + { + "Id": "core", + "Version": "18.0.0" + } + ] + } + } + } +} From 284c1992022cce44c1c5473777e8e8160b759ee2 Mon Sep 17 00:00:00 2001 From: "Francesc M." Date: Sun, 2 Nov 2025 09:17:14 +0100 Subject: [PATCH 2/4] Using correct directory --- .../{francescmm.gitqlient => gitqlient.gitqlient}/extension.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename registry/{francescmm.gitqlient => gitqlient.gitqlient}/extension.json (100%) diff --git a/registry/francescmm.gitqlient/extension.json b/registry/gitqlient.gitqlient/extension.json similarity index 100% rename from registry/francescmm.gitqlient/extension.json rename to registry/gitqlient.gitqlient/extension.json From e4fd8cb41d9ea8609f64bdf75e84c29aeb338436 Mon Sep 17 00:00:00 2001 From: "Francesc M." Date: Sun, 2 Nov 2025 09:18:44 +0100 Subject: [PATCH 3/4] Fix version --- registry/gitqlient.gitqlient/extension.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registry/gitqlient.gitqlient/extension.json b/registry/gitqlient.gitqlient/extension.json index 17bdd74..1a9484d 100644 --- a/registry/gitqlient.gitqlient/extension.json +++ b/registry/gitqlient.gitqlient/extension.json @@ -7,9 +7,9 @@ "display_vendor": "GitQlient", "license": "open-source" }, - "latest": "1.6.0", + "latest": "1.6.1", "versions": { - "1.6.0": { + "1.6.1": { "sources": [ { "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Windows-x64.7z", From f0912cbf98ef52496fe9c8c1058c5dc8a2a1c041 Mon Sep 17 00:00:00 2001 From: "Francesc M." Date: Sun, 2 Nov 2025 09:37:50 +0100 Subject: [PATCH 4/4] Update SHAs --- registry/gitqlient.gitqlient/extension.json | 60 ++++++++------------- 1 file changed, 22 insertions(+), 38 deletions(-) diff --git a/registry/gitqlient.gitqlient/extension.json b/registry/gitqlient.gitqlient/extension.json index 1a9484d..700fc53 100644 --- a/registry/gitqlient.gitqlient/extension.json +++ b/registry/gitqlient.gitqlient/extension.json @@ -13,7 +13,7 @@ "sources": [ { "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Windows-x64.7z", - "sha256": "e679a8b0783bcc3b6987c4f4de3afaecda14bc304164d575b91c40950d3b24eb", + "sha256": "18a4f6ef2206bf4b0cd5ea77a049bb9b932988bce20445553f2da17d27d76f2f", "platform": { "name": "Windows", "architecture": "x86_64" @@ -21,7 +21,7 @@ }, { "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Windows-arm64.7z", - "sha256": "3a0ce408bfbe068413a19ab8f8403abaa3ed10c8fc1c9360d1bdb6b29ce8974a", + "sha256": "4a25d921667617d0138de9cb8b1396902a44da4354065c23ed546d4ecd1726a2", "platform": { "name": "Windows", "architecture": "arm64" @@ -29,7 +29,7 @@ }, { "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Linux-x64.7z", - "sha256": "777fb29c07ee1aa16862ad44dcf9fcf56ce036bb4752998b2d91c0de09516416", + "sha256": "b275f3e9fca2ea0689577250a3743625b10dbdd310c9810939688a94395e53dc", "platform": { "name": "Linux", "architecture": "x86_64" @@ -37,7 +37,7 @@ }, { "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-Linux-arm64.7z", - "sha256": "18c02232bd837c9ce0addcd2371e43da29fbcb177bc054f07253791973300ad0", + "sha256": "34aff777ff25d8006041111fe9aded3cddbd2de548f252d5d9093db7d1b0bdd3", "platform": { "name": "Linux", "architecture": "arm64" @@ -45,7 +45,7 @@ }, { "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-macOS-universal.7z", - "sha256": "8ed1cff7f7739e9d26e323c4f3e7ce73ba7e66552ae464cb10ebab32954e34c3", + "sha256": "63706ec58132958f51f841c12c9dffc6bd81f2aab88acef2d8c6f728d4db9fcf", "platform": { "name": "macOS", "architecture": "x86_64" @@ -53,7 +53,7 @@ }, { "url": "https://github.com/francescmaestre/GitQlientPlugin/releases/download/v1.6.1/GitQlientPlugin-QtC18.0.0-macOS-universal.7z", - "sha256": "8ed1cff7f7739e9d26e323c4f3e7ce73ba7e66552ae464cb10ebab32954e34c3", + "sha256": "63706ec58132958f51f841c12c9dffc6bd81f2aab88acef2d8c6f728d4db9fcf", "platform": { "name": "macOS", "architecture": "arm64" @@ -61,38 +61,22 @@ } ], "metadata": { - "Id": "gitqlient", - "Name": "GitQlient", - "Version": "1.6.1", - "CompatVersion": "18.0.0", - "Vendor": "GitQlient", - "VendorId": "gitqlient", - "Copyright": "(C) 2025 Francesc M.", - "License": "GPLv3", - "Description": "This plugins allows the user to work with GitQlient App embedded in QtCreator. It provides a Git UI.", - "Url": "https://github.com/francescmaestre/GitQlientPlugin", - "DocumentationUrl": "https://github.com/francescmaestre/GitQlientPlugin", - "Dependencies": [ - { - "Id": "core", - "Version": "18.0.0" - }, - { - "Id": "texteditor", - "Version": "18.0.0" - }, - { - "Id": "projectexplorer", - "Version": "18.0.0" - }, - { - "Id": "cppeditor", - "Version": "18.0.0" - }, - { - "Id": "core", - "Version": "18.0.0" - } + "Id" : "gitqlient", + "Name" : "GitQlient", + "Version" : "1.6.1", + "Vendor" : "GitQlient", + "VendorId" : "gitqlient", + "Copyright" : "(C) 2025 Francesc M.", + "License" : "GPLv3", + "Description" : "This plugins allows the user to work with GitQlient App embedded in QtCreator. It provides a Git UI.", + "Url" : "https://github.com/francescmaestre/GitQlientPlugin", + "DocumentationUrl" : "https://github.com/francescmaestre/GitQlientPlugin", + "Dependencies" : [ + { "Id" : "core", "Version" : "18.0.0" }, + { "Id" : "texteditor", "Version" : "18.0.0" }, + { "Id" : "projectexplorer", "Version" : "18.0.0" }, + { "Id" : "cppeditor", "Version" : "18.0.0" }, + { "Id" : "core", "Version" : "18.0.0" } ] } }