* chore(gitea-git-clone): update changelog for version 1.5.0

* Added:
* - Gitea Actions Integration:
* - Displays the current Action status (running, success, failure) in the status bar.
* - Clicking on the icon opens the Action run in the browser.
* - Updates periodically and on focus change.
*
* Changed:
* - Dependencies: Ensure your Gitea instance supports Gitea Actions for this feature to work.
*
* feat(gitea-git-clone): update readme with Gitea Actions support
* - Gitea Actions Support: This extension now displays the status of the latest Gitea Action run in the status bar:
* - Running (with a spinner icon).
* - Success (with a checkmark).
* - Failure (with an error icon).
* - Unknown (with a question mark icon).
* Clicking on the icon opens the current action run in your default browser
This commit is contained in:
2025-01-26 14:25:21 +01:00
parent 4fc9a2c5b8
commit e147735f7a
6 changed files with 416 additions and 141 deletions

View File

@ -46,5 +46,7 @@
"giteaClone.selectGitignore": ".gitignore-Template auswählen (optional)",
"giteaClone.repoCreated": "Repository '{0}' erfolgreich erstellt.",
"giteaClone.createRepoError": "Fehler beim Erstellen des Repositories: {0}",
"giteaClone.invalidRepoName": "Ungültiger Repository-Name."
"giteaClone.invalidRepoName": "Ungültiger Repository-Name.",
"giteaClone.actionStatusTooltip": "Gitea Action Status",
"giteaClone.noActionRun": "Keine aktuelle Action-Run-URL gefunden."
}

View File

@ -46,5 +46,7 @@
"giteaClone.selectGitignore": "Select a .gitignore template (optional)",
"giteaClone.repoCreated": "Repository '{0}' created successfully.",
"giteaClone.createRepoError": "Error creating repository: {0}",
"giteaClone.invalidRepoName": "Invalid repository name."
"giteaClone.invalidRepoName": "Invalid repository name.",
"giteaClone.actionStatusTooltip": "Gitea Action Status",
"giteaClone.noActionRun": "No current action run URL found."
}