Skip to content

Commit fdf7f06

Browse files
committed
Update tool versions
1 parent bf957fd commit fdf7f06

6 files changed

Lines changed: 39 additions & 18 deletions

File tree

.idea/gradle.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
plugins {
22
id("java")
3-
id("org.jetbrains.intellij") version "1.10.1"
3+
id("org.jetbrains.intellij") version "1.17.1"
44
}
55

66
group = "com.profiq"
7-
version = "0.1.4"
7+
version = "0.1.5"
88

99
repositories {
1010
mavenCentral()
1111
}
1212

1313
dependencies {
14-
testImplementation("junit:junit:4.13")
14+
testImplementation("junit:junit:4.13.2")
1515
testImplementation("org.mockito:mockito-core:3.12.4")
1616
}
1717

1818
// Configure Gradle IntelliJ Plugin
1919
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
2020
intellij {
2121
version.set("2023.3")
22-
type.set("PC") // Target IDE Platform
23-
24-
plugins.set(listOf(/* Plugin Dependencies */))
22+
plugins.set(listOf())
2523
}
2624

2725
tasks {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

100755100644
File mode changed.

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

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,36 @@
88
<name>Docgen</name>
99

1010
<!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. -->
11-
<vendor email="milos.svana@profiq.com" url="https://www.profiq.com">profiq s.r.o.</vendor>
11+
<vendor>profiq</vendor>
1212

1313
<!-- Description of the plugin displayed on the Plugin Page and IDE Plugin Manager.
1414
Simple HTML elements (text formatting, paragraphs, and lists) can be added inside of <![CDATA[ ]]> tag.
1515
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description -->
16-
<description><![CDATA[
17-
This plugin uses Open AI's GPT 3.5 to generate documentation for Python methods.
18-
]]></description>
16+
<description>
17+
<![CDATA[
18+
This plugin uses Open AI's GPT 3.5 to generate documentation for Python methods and classes.
19+
]]>
20+
</description>
21+
22+
<change-notes>
23+
<![CDATA[
24+
<ul>
25+
<li>
26+
<b>0.1.5</b>
27+
<ul>
28+
<li>Updated vendor ID</li>
29+
</ul>
30+
</li>
31+
<li>
32+
<b>0.1.4</b>
33+
<ul>
34+
<li>Docstrings are now inserted with proper indentation, not always 4 spaces</li>
35+
<li>Support for documenting Python classes has been improved</li>
36+
</ul>
37+
</li>
38+
</ul>
39+
]]>
40+
</change-notes>
1941

2042
<!-- Product and plugin compatibility requirements.
2143
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html -->
@@ -25,10 +47,10 @@
2547
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-extension-points.html -->
2648
<extensions defaultExtensionNs="com.intellij">
2749
<applicationConfigurable
28-
parentId="tools"
29-
instance="com.profiq.codexor.SettingsConfigurable"
30-
id="com.profiq.codexor.SettingsConfigurable"
31-
displayName="Docgen">
50+
parentId="tools"
51+
instance="com.profiq.codexor.SettingsConfigurable"
52+
id="com.profiq.codexor.SettingsConfigurable"
53+
displayName="Docgen">
3254
</applicationConfigurable>
3355
</extensions>
3456

0 commit comments

Comments
 (0)