diff --git a/gitea-git-clone/CHANGELOG.md b/gitea-git-clone/CHANGELOG.md index c3553bb..8ab2cec 100644 --- a/gitea-git-clone/CHANGELOG.md +++ b/gitea-git-clone/CHANGELOG.md @@ -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 diff --git a/gitea-git-clone/README.md b/gitea-git-clone/README.md index 9a496fa..32cc04c 100644 --- a/gitea-git-clone/README.md +++ b/gitea-git-clone/README.md @@ -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). diff --git a/gitea-git-clone/i18n/package.nls.de.json b/gitea-git-clone/i18n/package.nls.de.json index d90b40e..eadedec 100644 --- a/gitea-git-clone/i18n/package.nls.de.json +++ b/gitea-git-clone/i18n/package.nls.de.json @@ -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." } diff --git a/gitea-git-clone/i18n/package.nls.json b/gitea-git-clone/i18n/package.nls.json index 9a41f19..bcd42fc 100644 --- a/gitea-git-clone/i18n/package.nls.json +++ b/gitea-git-clone/i18n/package.nls.json @@ -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." } diff --git a/gitea-git-clone/package.json b/gitea-git-clone/package.json index 8bfd1fe..bffc0b1 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.4.0", + "version": "1.4.1", "publisher": "computerliebe", "engines": { "vscode": "^1.94.0" diff --git a/gitea-git-clone/releases/gitea-workflow-1.4.1.vsix b/gitea-git-clone/releases/gitea-workflow-1.4.1.vsix new file mode 100644 index 0000000..372fb15 Binary files /dev/null and b/gitea-git-clone/releases/gitea-workflow-1.4.1.vsix differ