File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/main/java/com/magento/idea/magento2plugin/project Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
99### Fixed
1010
1111- Null PsiDirectory input in GetModuleNameByDirectoryUtil [ #2606 ] ( https://github.com/magento/magento2-phpstorm-plugin/pull/2606 )
12+ - Migrated settings storage to workspace.xm [ #2607 ] ( https://github.com/magento/magento2-phpstorm-plugin/pull/2607 )
1213
1314## 2025.2.1
1415
Original file line number Diff line number Diff line change 1010import com .intellij .openapi .components .State ;
1111import com .intellij .openapi .components .Storage ;
1212import com .intellij .openapi .project .Project ;
13+ import com .intellij .openapi .components .StoragePathMacros ;
1314import com .intellij .openapi .util .text .StringUtil ;
1415import com .intellij .util .EventDispatcher ;
1516import com .intellij .util .SmartList ;
2728@ State (
2829 name = "Magento2PluginSettings" ,
2930 storages = {
30- @ Storage ("magento2plugin.xml" )
31+ @ Storage (StoragePathMacros .WORKSPACE_FILE ),
32+ @ Storage (value = "magento2plugin.xml" , deprecated = true )
3133 }
3234)
3335public class Settings implements PersistentStateComponent <Settings .State > {
You can’t perform that action at this time.
0 commit comments