chore(gitea-git-clone): update version to 1.4.1

* docs(gitea-git-clone): add mention of the "Create Repo" feature to README
* feat(gitea-git-clone): add error messages for repository names in localization
* feat(gitea-git-clone): create new repositories in Gitea directly from VSCode
* fix(gitea-git-clone): fix typo in German translation for invalid repository name error message
This commit is contained in:
Peter 2024-10-31 15:09:01 +01:00
parent 4d2d1bb017
commit 31e9ea3f02
6 changed files with 17 additions and 6 deletions

View File

@ -2,6 +2,13 @@
All notable changes to the “gitea-workflow” extension will be documented in this file.
### 1.4.1
### Changed
- **Localization**: Add error messages for repository names
- **README**: Add mention of the “Create Repo” feature
## 1.4.0
### Added

View File

@ -1,17 +1,19 @@
# Gitea Workflow
A Visual Studio Code extension that allows you to manage your Gitea repositories directly from your workspace. Clone repositories via SSH, handle authentication with Personal Access Tokens (PAT's), create and view Pull Requests (PRs), manage multiple Gitea instances, and view branch and build statuses—all within VSCode.
A Visual Studio Code extension that allows you to manage your Gitea repositories directly from your workspace.
Create new repositories, clone via SSH, handle authentication with Personal Access Tokens (PATs).
Create and view Pull Requests (PRs), manage multiple Gitea instances, and view branch and build statuses—all within VSCode.
## Features
- **Gitea Authentication**: Authenticate with one or multiple Gitea instances using Personal Access Tokens.
- **Multiple Gitea Instances**: Manage and switch between multiple Gitea instances within VSCode.
- **Clone via SSH**: Clone repositories from Gitea using SSH URLs.
- **Auto-Open Repository**: After cloning, the repository will be automatically opened in the workspace.
- **See Open Pull Requests**: Use the icon in the status bar or the command to check how many open PRs exist and open them in a browser.
- **Create Pull Requests**: Create Pull Requests (PRs) directly from your workspace.
- **Enhanced Status Bar Integration**: View the current branch status and build status directly from the VSCode status bar.
- **Create Repositories**: Create new repositories in Gitea directly from VSCode, with options for organization, visibility, and .gitignore templates.
## Commands
- `Gitea: Authenticate` → Authenticate with a selected Gitea instance using your Personal Access Token (PAT).

View File

@ -45,5 +45,6 @@
"giteaClone.selectVisibility": "Wählen Sie die Sichtbarkeit des Repositories",
"giteaClone.selectGitignore": ".gitignore-Template auswählen (optional)",
"giteaClone.repoCreated": "Repository '{0}' erfolgreich erstellt.",
"giteaClone.createRepoError": "Fehler beim Erstellen des Repositories: {0}"
"giteaClone.createRepoError": "Fehler beim Erstellen des Repositories: {0}",
"giteaClone.invalidRepoName": "Ungültiger Repository-Name."
}

View File

@ -45,5 +45,6 @@
"giteaClone.selectVisibility": "Select the visibility of the repository",
"giteaClone.selectGitignore": "Select a .gitignore template (optional)",
"giteaClone.repoCreated": "Repository '{0}' created successfully.",
"giteaClone.createRepoError": "Error creating repository: {0}"
"giteaClone.createRepoError": "Error creating repository: {0}",
"giteaClone.invalidRepoName": "Invalid repository name."
}

View File

@ -2,7 +2,7 @@
"name": "gitea-workflow",
"displayName": "Gitea Workflow",
"description": "Clone from Gitea instances; Create PRs",
"version": "1.4.0",
"version": "1.4.1",
"publisher": "computerliebe",
"engines": {
"vscode": "^1.94.0"

Binary file not shown.