diff --git a/README.md b/README.md
index 210b31b..ea32649 100644
--- a/README.md
+++ b/README.md
@@ -6,17 +6,25 @@
# English
-## myTemplateGenerator — Template-based structure generation for VSCode
+## My Template Generator — Template-based structure generation for VSCode
+
**Features:**
- Syntax highlighting and autocomplete for template variables in templates
- Generate files and folders from templates with variable substitution
-- Flexible configuration via `mytemplategenerator.json` or visual configurator
- Full localization (English/Russian) for all UI, messages, and menus
- Choose variable input mode: Webview (form) or inputBox (one by one)
- Overwrite control: allow or forbid overwriting existing files/folders
- Smart conflict handling: clear notifications if structure already exists
-- **No Handlebars dependency**: variable substitution is handled by the extension itself
+
+Context menu "Create from template..." is available by right-clicking any folder.
+
+
+Convenient UI for creation: just select a template and specify values for the variables used in the template. (The list of variables updates automatically)
+
+
+User-friendly settings UI.
+
### Quick Start
1. Create a `templates` folder in your project root.
@@ -68,6 +76,8 @@ const name = '{{name}}';
```
### Configuration
+**To open the visual configurator, press Ctrl+Shift+P, type `Configure myTemplateGenerator...` and select the command.**
+
Use `mytemplategenerator.json` in your project root or the visual configurator (**Configure myTemplateGenerator...**):
```json
{
@@ -99,17 +109,26 @@ Use `mytemplategenerator.json` in your project root or the visual configurator (
# Русский
-## myTemplateGenerator — Генерация структуры из шаблонов для VSCode
+## My Template Generator — Генерация структуры из шаблонов для VSCode
+
**Возможности:**
- Подсветка синтаксиса и автокомплит переменных в шаблонах
- Генерация файлов и папок по шаблонам с подстановкой переменных
-- Гибкая настройка через `mytemplategenerator.json` или визуальный конфигуратор
- Полная локализация (русский/английский) для всего интерфейса, сообщений и меню
- Выбор способа ввода переменных: Webview (форма) или inputBox (по одной)
- Контроль перезаписи: можно запретить или разрешить перезапись существующих файлов/папок
- Умная обработка конфликтов: понятные уведомления, если структура уже существует
-- **Без зависимости от Handlebars**: подстановка переменных реализована внутри расширения
+
+Контекстное меню "Создать из шаблона.." доступно правым кликом по любой папке.
+
+
+Удобный UI создания, нужно только выбрать шаблок и указать значения переменных используемых в шаблоне. (Список переменных обновляется автоматически)
+
+
+Удобный UI интерфейс настроек.
+
+
### Быстрый старт
1. В корне проекта создайте папку `templates`.
@@ -161,7 +180,10 @@ const name = '{{name}}';
```
### Конфигурация
+**Чтобы открыть визуальный конфигуратор, нажмите Ctrl+Shift+P, введите `Настроить myTemplateGenerator...` и выберите команду.**
+
Для гибкой настройки используйте файл `mytemplategenerator.json` в корне проекта или визуальный конфигуратор (команда **Настроить myTemplateGenerator...**):
+
```json
{
"templatesPath": "templates",
diff --git a/mytemplategenerator-0.0.1.vsix b/mytemplategenerator-0.0.1.vsix
new file mode 100644
index 0000000..ccd1a78
Binary files /dev/null and b/mytemplategenerator-0.0.1.vsix differ
diff --git a/package.json b/package.json
index a593051..c0d0e67 100644
--- a/package.json
+++ b/package.json
@@ -2,9 +2,10 @@
"name": "mytemplategenerator",
"displayName": "myTemplateGenerator",
"description": "Generate files and folders from customizable templates with variable substitution in VSCode.",
- "version": "0.0.1",
+ "version": "0.0.2",
"publisher": "MyTemplateGenerator",
"author": "Sergey Gromov",
+ "icon": "src/images/logo.svg",
"url": "https://github.com/gormov1122/MyTemplateGenerator",
"engines": {
"vscode": "^1.60.0"
diff --git a/src/images/1.png b/src/images/1.png
new file mode 100644
index 0000000..ef9c2ed
Binary files /dev/null and b/src/images/1.png differ
diff --git a/src/images/2.png b/src/images/2.png
new file mode 100644
index 0000000..bc1916a
Binary files /dev/null and b/src/images/2.png differ
diff --git a/src/images/3.png b/src/images/3.png
new file mode 100644
index 0000000..d716037
Binary files /dev/null and b/src/images/3.png differ
diff --git a/src/images/4.png b/src/images/4.png
new file mode 100644
index 0000000..32ab1d9
Binary files /dev/null and b/src/images/4.png differ
diff --git a/src/images/logo.svg b/src/images/logo.svg
new file mode 100644
index 0000000..192bc00
--- /dev/null
+++ b/src/images/logo.svg
@@ -0,0 +1,22 @@
+
\ No newline at end of file