Skip to content

Commit 5e967e8

Browse files
committed
Update plugin to version 1.3.1
Bump plugin version to 1.3.1 and add support for PHPStorm 2024.3. Updated Gradle to version 8.10.2 and refined Moodle project directory selection. Updated plugin dependencies and IntelliJ platform version.
1 parent 31c8653 commit 5e967e8

6 files changed

Lines changed: 15 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
77

88
## [Unreleased]
99

10+
## [1.3.1] - 2024-11-16
11+
12+
### Changed
13+
14+
- Add support to PHPStorm 2024.3
15+
1016
## [1.3.0] - 2024-08-20
1117

1218
### Changed

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ pluginGroup = il.co.sysbind.intellij.moodledev
44
pluginName = moodle-dev
55
pluginRepositoryUrl = https://github.com/SysBind/moodle-dev
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.3.0
7+
pluginVersion = 1.3.1
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 233
11-
pluginUntilBuild = 242.*
11+
pluginUntilBuild = 243.*
1212

1313
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1414
platformType = PS
15-
platformVersion = 2024.2
15+
platformVersion = 2024.3
1616

1717
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1818
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
19-
platformPlugins = com.dmarcotte.handlebars:242.20224.159
19+
platformPlugins = com.dmarcotte.handlebars:243.21565.122
2020
# Example: platformBundledPlugins = com.intellij.java
2121
platformBundledPlugins = com.jetbrains.php, JavaScript, org.jetbrains.plugins.less, org.jetbrains.plugins.sass
2222
# Gradle Releases -> https://github.com/gradle/gradle/releases
23-
gradleVersion = 8.9
23+
gradleVersion = 8.10.2
2424
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
2525
kotlin.stdlib.default.dependency = false
2626

gradle/wrapper/gradle-wrapper.jar

79 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

src/main/kotlin/il/co/sysbind/intellij/moodledev/project/MoodleSettingsForm.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,8 @@ class MoodleSettingsForm(val project: Project) : PhpFrameworkConfigurable {
4747
row("Moodle project directory:") {
4848
moodlePath =
4949
textFieldWithBrowseButton(
50-
MoodleBundle.message("configurable.moodlePath"),
51-
project,
52-
FileChooserDescriptorFactory.createSingleFolderDescriptor()
50+
FileChooserDescriptorFactory.createSingleFolderDescriptor().withTitle(MoodleBundle.message("configurable.moodlePath")),
51+
project
5352
).bindText(settings::moodlePath).enabledIf(pluginEnabled.selected)
5453
}
5554
}

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<idea-plugin>
33
<id>il.co.sysbind.intellij.moodledev</id>
44
<name>Moodle Development</name>
5+
<version>1.3.1</version>
56
<vendor email="support@sysbind.co.il" url="https://sysbin.co.il">SysBind</vendor>
67
<description><![CDATA[
78
<h1>Plugin For Moodle Developers</h1>

0 commit comments

Comments
 (0)