diff --git a/gitea-git-clone/CHANGELOG.md b/gitea-git-clone/CHANGELOG.md index e976ac1..5d725a1 100644 --- a/gitea-git-clone/CHANGELOG.md +++ b/gitea-git-clone/CHANGELOG.md @@ -10,6 +10,15 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how - if working in PR show different Icon with hint - fix progress bar in notification +## 1.2.2 + +### Fixed + +- no errors if not a Git-Repository +- no errors if not a Gitea-Repository with configured upstream +- no Statusbar icons if not Git/Gitea-Repository +- truncate Commit Titles longer than 255 characters + ## 1.2.1 ### Fixed diff --git a/gitea-git-clone/i18n/package.nls.de.json b/gitea-git-clone/i18n/package.nls.de.json index f061e30..b11df4b 100644 --- a/gitea-git-clone/i18n/package.nls.de.json +++ b/gitea-git-clone/i18n/package.nls.de.json @@ -34,6 +34,8 @@ "giteaClone.defaultBranchError": "Fehler beim Abrufen des Basis-Branches: {0}", "giteaClone.repoError": "Fehler beim Abrufen der Repositories: {0}", "giteaClone.authFailed": "Authentifizierung fehlgeschlagen: {0}", - "giteaClone.pullRequestsError": "Fehler beim Abrufen der Pull Requests: {0}" + "giteaClone.pullRequestsError": "Fehler beim Abrufen der Pull Requests: {0}", + "giteaClone.titleTruncated": "Die Commit-Nachricht war zu lang und wurde für den Pull-Request-Titel gekürzt.", + "giteaClone.bodyTruncated": "Der Commit-Nachrichtentext war zu lang und wurde für die Pull-Request-Beschreibung gekürzt." } \ No newline at end of file diff --git a/gitea-git-clone/i18n/package.nls.json b/gitea-git-clone/i18n/package.nls.json index cb9c384..1a203c9 100644 --- a/gitea-git-clone/i18n/package.nls.json +++ b/gitea-git-clone/i18n/package.nls.json @@ -34,6 +34,8 @@ "giteaClone.defaultBranchError": "Error retrieving the base branch: {0}", "giteaClone.repoError": "Error retrieving repositories: {0}", "giteaClone.authFailed": "Authentication failed: {0}", - "giteaClone.pullRequestsError": "Error retrieving pull requests: {0}" + "giteaClone.pullRequestsError": "Error retrieving pull requests: {0}", + "giteaClone.titleTruncated": "The commit message was too long and has been truncated for the pull request title.", + "giteaClone.bodyTruncated": "The commit message body was too long and has been truncated for the pull request description." } \ No newline at end of file diff --git a/gitea-git-clone/package.json b/gitea-git-clone/package.json index 6316483..02c575a 100644 --- a/gitea-git-clone/package.json +++ b/gitea-git-clone/package.json @@ -2,7 +2,7 @@ "name": "gitea-workflow", "displayName": "Gitea Workflow", "description": "Clone from Gitea instances; Create PRs", - "version": "1.2.1", + "version": "1.2.2", "publisher": "computerliebe", "engines": { "vscode": "^1.94.0" diff --git a/gitea-git-clone/src/extension.ts b/gitea-git-clone/src/extension.ts index d6cd311..bba5cd8 100644 --- a/gitea-git-clone/src/extension.ts +++ b/gitea-git-clone/src/extension.ts @@ -122,19 +122,36 @@ async function createGiteaPullRequest() { // Den letzten Commit und den Branch abrufen const { title, body } = await getLastCommit(currentWorkspaceFolder); const branch = await getCurrentBranch(currentWorkspaceFolder); - + if (!branch) { vscode.window.showErrorMessage(localize('giteaClone.noBranch', 'Could not determine the branch.')); return; } - + // Base-Branch über die Gitea API ermitteln const baseBranch = await getDefaultBranch(instanceUrl, owner, repo, token); - + + // Titel und Body auf maximale Länge beschränken + const maxTitleLength = 255; + const maxBodyLength = 65535; // Beispielwert, kann je nach Gitea-Konfiguration variieren + + let truncatedTitle = title; + let truncatedBody = body; + + if (title.length > maxTitleLength) { + truncatedTitle = title.substring(0, maxTitleLength); + vscode.window.showWarningMessage(localize('giteaClone.titleTruncated', 'The commit message was too long and has been truncated for the pull request title.')); + } + + if (body.length > maxBodyLength) { + truncatedBody = body.substring(0, maxBodyLength); + vscode.window.showWarningMessage(localize('giteaClone.bodyTruncated', 'The commit message body was too long and has been truncated for the pull request description.')); + } + // API-Request-Daten vorbereiten const prData = { - title: title, // Der letzte Commit als Titel - body: body || '', // Commit-Kommentare als Body + title: truncatedTitle, // Der getrunkierte Titel + body: truncatedBody || '', // Der getrunkierte Body head: branch, // Der aktuelle Branch als "head" base: baseBranch // Der ermittelte base-Branch };