4 Commits

Author SHA1 Message Date
chaim 258a5b8136 release: v1.3.2
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 20:01:28 +00:00
chaim 3dc5c4e571 fix: move Data Migration from separate 'customDev' section to 'customization'
Avoid creating separate admin panel sections for each extension.
All custom settings go under the existing "התאמה אישית" section.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 20:01:13 +00:00
chaim 8b745bc99f release: v1.3.1 2026-03-29 21:34:25 +00:00
chaim 384d7c6df0 fix: add clientModule to module.json for client-side template resolution
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 21:33:48 +00:00
3 changed files with 6 additions and 7 deletions
@@ -1,6 +1,5 @@
{ {
"customDev": { "customization": {
"label": "Custom Development",
"itemList": [ "itemList": [
"__APPEND__", "__APPEND__",
{ {
@@ -11,7 +10,6 @@
"view": "modules/data-migration/views/admin/data-migration", "view": "modules/data-migration/views/admin/data-migration",
"order": 50 "order": 50
} }
], ]
"order": 30
} }
} }
@@ -4,5 +4,6 @@
"requires": { "requires": {
"espocrm": ">=8.0.0" "espocrm": ">=8.0.0"
}, },
"description": "Data migration tool for case data backup and restore" "description": "Data migration tool for case data backup and restore",
"clientModule": "data-migration"
} }
+2 -2
View File
@@ -1,13 +1,13 @@
{ {
"name": "DataMigration", "name": "DataMigration",
"version": "1.3.0", "version": "1.3.2",
"acceptableVersions": [ "acceptableVersions": [
">=8.0.0" ">=8.0.0"
], ],
"php": [ "php": [
">=8.1" ">=8.1"
], ],
"releaseDate": "2026-03-29", "releaseDate": "2026-04-06",
"author": "klear", "author": "klear",
"description": "Case data migration: export/import all case-related data between EspoCRM instances" "description": "Case data migration: export/import all case-related data between EspoCRM instances"
} }