Skip to content

Commit 0be7719

Browse files
committed
5.0.0-develop initial
1 parent 84ee9aa commit 0be7719

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

7+
## 5.0.0
8+
79
## 4.4.0
810

911
## 4.3.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
1. Check out this repository
4444
1. Open a folder with the project in the IntelliJ Ultimate using the `open` action button.
45-
1. Make sure that you on the latest develop branch (e.g `4.4.0-develop`)
45+
1. Make sure that you on the latest develop branch (e.g `5.0.0-develop`)
4646
1. Right-click on the `build.gradle` file, choose "Import Gradle project" (if this is not exist look for "Build module '<root folder name>'") (you need to have Gradle plugin installed)
4747
1. Check if the right SDK version is used for the project.
4848
- Current Java version for the project is **java 11**, so you should additionally download **SDK 11** and choose it in the module settings: `Right click by the project root > Open Module Settings > Project Settings > Project > Project SDK`

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
plugins {
7-
id 'org.jetbrains.intellij' version '1.1.4'
7+
id 'org.jetbrains.intellij' version '1.5.2'
88
id 'checkstyle'
99
id 'pmd'
1010
id 'org.jetbrains.changelog' version '1.2.1'
@@ -15,16 +15,16 @@ repositories {
1515
}
1616

1717
group 'com.magento.idea'
18-
version '4.4.0'
18+
version '5.0.0'
1919

2020
apply plugin: 'org.jetbrains.intellij'
2121
apply plugin: 'java'
2222
apply plugin: 'idea'
2323
apply plugin: 'groovy'
2424
apply plugin: 'org.jetbrains.changelog'
2525

26-
def phpPluginVersion = System.getProperty("phpPluginVersion", "212.5080.55")
27-
def ideaVersion = System.getProperty("ideaVersion", "2021.2.1")
26+
def phpPluginVersion = System.getProperty("phpPluginVersion", "222.3739.45")
27+
def ideaVersion = System.getProperty("ideaVersion", "2022.2.1")
2828
def javaVersion = 11
2929

3030
sourceCompatibility = javaVersion
@@ -41,7 +41,7 @@ intellij {
4141
'properties',
4242
'CSS',
4343
'JavaScriptLanguage',
44-
'com.intellij.lang.jsgraphql:3.1.2',
44+
'com.intellij.lang.jsgraphql:3.2.1',
4545
'platform-images',
4646
'copyright'
4747
]

resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<idea-plugin require-restart="true">
88
<id>com.magento.idea.magento2plugin</id>
99
<name>Magento PhpStorm</name>
10-
<version>4.4.0</version>
10+
<version>5.0.0</version>
1111
<vendor url="https://github.com/magento/magento2-phpstorm-plugin">Magento Inc.</vendor>
1212

1313
<description><![CDATA[
@@ -24,7 +24,7 @@
2424
</change-notes>
2525

2626
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
27-
<idea-version since-build="212.5080.55"/>
27+
<idea-version since-build="222.3739.54"/>
2828

2929
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
3030
on how to target different products -->

src/com/magento/idea/magento2plugin/generation/php/MagentoTemplatesFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import com.intellij.ide.util.projectWizard.WizardContext;
88
import com.intellij.platform.ProjectTemplate;
99
import com.intellij.platform.ProjectTemplatesFactory;
10-
import com.jetbrains.php.config.generation.PhpEmptyTemplatesFactory;
10+
import com.jetbrains.php.config.generation.PhpEmptyProjectGenerator;
1111
import icons.PhpIcons;
1212
import org.jetbrains.annotations.NotNull;
1313
import org.jetbrains.annotations.Nullable;
@@ -19,11 +19,11 @@ public MagentoTemplatesFactory() {
1919

2020
@NotNull
2121
public String[] getGroups() {
22-
return new String[]{PhpEmptyTemplatesFactory.PHP_PROJECT_TEMPLATE_GROUP};
22+
return new String[]{PhpEmptyProjectGenerator.PHP_PROJECT_TEMPLATE_GROUP};
2323
}
2424

2525
public Icon getGroupIcon(String group) {
26-
return PhpIcons.Php_icon;
26+
return PhpIcons.PhpIcon;
2727
}
2828

2929
@NotNull

0 commit comments

Comments
 (0)