refactor: переименовать расширение в templateFileGenerator

- идентификатор расширения переименован с templateForge на templateFileGenerator
- обновлены команды, настройки и конфигурация
- обновлены ссылки на репозиторий
- версия обновлена до 1.0.2
- обновлены локализации (en, ru)
- обновлена документация (README, CHANGELOG)
This commit is contained in:
2026-04-02 22:35:09 +03:00
parent a7ece0b22e
commit ced06e1ca8
10 changed files with 86 additions and 86 deletions

View File

@@ -1,8 +1,8 @@
{
"name": "vscode-templateforge",
"displayName": "Template File Generator (gromlab)",
"name": "vscode-templateFileGenerator",
"displayName": "Template File Generator | gromlab",
"description": "Generate files and folders from templates with variable substitution and case modifiers. Syntax highlighting and autocomplete for template variables.",
"version": "1.0.1",
"version": "1.0.2",
"publisher": "gromlab",
"author": "Sergey Gromov",
"scripts": {
@@ -33,13 +33,13 @@
"snippets"
],
"icon": "logo.png",
"homepage": "https://gromlab.ru/gromov/templateforge",
"homepage": "https://gromlab.ru/gromov/vscode-template-file-generator",
"repository": {
"type": "git",
"url": "https://gromlab.ru/gromov/templateforge.git"
"url": "https://gromlab.ru/gromov/vscode-template-file-generator.git"
},
"bugs": {
"url": "https://gromlab.ru/gromov/templateforge/issues"
"url": "https://gromlab.ru/gromov/vscode-template-file-generator/issues"
},
"engines": {
"vscode": "^1.60.0"
@@ -51,18 +51,18 @@
"contributes": {
"commands": [
{
"command": "templateforge.createFromTemplate",
"title": "%templateforge.createFromTemplate.title%"
"command": "templateFileGenerator.createFromTemplate",
"title": "%templateFileGenerator.createFromTemplate.title%"
},
{
"command": "templateforge.configure",
"title": "%templateforge.configure.title%"
"command": "templateFileGenerator.configure",
"title": "%templateFileGenerator.configure.title%"
}
],
"menus": {
"explorer/context": [
{
"command": "templateforge.createFromTemplate",
"command": "templateFileGenerator.createFromTemplate",
"group": "navigation@10"
}
]
@@ -70,40 +70,40 @@
"configuration": {
"title": "Template Forge",
"properties": {
"templateForge.templatesPath": {
"templateFileGenerator.templatesPath": {
"type": "string",
"default": ".templates",
"description": "%templateforge.config.templatesPath.description%",
"markdownDescription": "%templateforge.config.templatesPath.description%",
"description": "%templateFileGenerator.config.templatesPath.description%",
"markdownDescription": "%templateFileGenerator.config.templatesPath.description%",
"scope": "application"
},
"templateForge.overwriteFiles": {
"templateFileGenerator.overwriteFiles": {
"type": "boolean",
"default": false,
"description": "%templateforge.config.overwriteFiles.description%",
"markdownDescription": "%templateforge.config.overwriteFiles.description%",
"description": "%templateFileGenerator.config.overwriteFiles.description%",
"markdownDescription": "%templateFileGenerator.config.overwriteFiles.description%",
"scope": "application"
},
"templateForge.inputMode": {
"templateFileGenerator.inputMode": {
"type": "string",
"enum": [
"webview",
"inputBox"
],
"default": "webview",
"description": "%templateforge.config.inputMode.description%",
"markdownDescription": "%templateforge.config.inputMode.description%",
"description": "%templateFileGenerator.config.inputMode.description%",
"markdownDescription": "%templateFileGenerator.config.inputMode.description%",
"scope": "application"
},
"templateForge.language": {
"templateFileGenerator.language": {
"type": "string",
"enum": [
"ru",
"en"
],
"default": "en",
"description": "%templateforge.config.language.description%",
"markdownDescription": "%templateforge.config.language.description%",
"description": "%templateFileGenerator.config.language.description%",
"markdownDescription": "%templateFileGenerator.config.language.description%",
"scope": "application"
}
}