Skip to content

Commit 798ce57

Browse files
committed
* Plugin info update
1 parent a90cc0e commit 798ce57

2 files changed

Lines changed: 29 additions & 20 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "fish.crafting"
8-
version = "0.3"
8+
version = "0.4.0"
99

1010
repositories {
1111
mavenCentral()
@@ -14,14 +14,11 @@ repositories {
1414
}
1515
}
1616

17-
// Configure Gradle IntelliJ Plugin
18-
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin.html
1917
dependencies {
2018
intellijPlatform {
2119
create("IC", "2025.1")
2220
testFramework(org.jetbrains.intellij.platform.gradle.TestFrameworkType.Platform)
2321

24-
// Add necessary plugin dependencies for compilation here, example:
2522
bundledPlugin("com.intellij.java")
2623
bundledPlugin("org.jetbrains.kotlin")
2724
bundledPlugin("org.toml.lang")
@@ -34,10 +31,6 @@ intellijPlatform {
3431
ideaVersion {
3532
sinceBuild = "251"
3633
}
37-
38-
changeNotes = """
39-
Initial version
40-
""".trimIndent()
4134
}
4235
}
4336

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

Lines changed: 28 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,43 @@
1-
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
21
<idea-plugin>
3-
<!-- Unique identifier of the plugin. It should be FQN. It cannot be changed between the plugin versions. -->
42
<id>fish.crafting.FIMPlugin</id>
53

6-
<!-- Public plugin name should be written in Title Case.
7-
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name -->
84
<name>Fish's Integrated Minecraft</name>
95

10-
<!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. -->
116
<vendor url="https://youtube.crafting.fish">ACraftingFish</vendor>
127

13-
<!-- Description of the plugin displayed on the Plugin Page and IDE Plugin Manager.
14-
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description -->
15-
<description>Fully custom Minecraft development integration</description>
8+
<description><![CDATA[
9+
<h1>Fish's Integrated Minecraft</h1>
10+
11+
<p>Fish's Integrated Minecraft (FIM for short) is a <b>Minecraft-to-IntelliJ</b> integration that aims to eliminate tedious tasks when coding.</p>
12+
13+
<h2>Installation</h2>
14+
15+
<p>To use FIM, you must also download our Minecraft Mod.</p>
16+
<p>FIM runs on <a href="https://fabricmc.net/">Fabric</a>, and is built to support <b>latest</b> versions of Minecraft only.</p>
17+
<p>Download the Fabric Mod from our repository's releases or from <a href="https://modrinth.com/mod/fish-integrated-minecraft">Modrinth</a>. </p>
18+
19+
<h2>Bugs & Suggestions</h2>
20+
21+
<p>To report bugs or give suggestions, join us at our <a href="https://discord.crafting.fish">Discord Server</a>!</p>
22+
23+
<h2>Main Features</h2>
24+
25+
<li>Fast Vector/Location accessing & editing</li>
26+
<li>Shortcut for quick swapping between IntelliJ & Minecraft</li>
27+
</ul>]]>
28+
</description>
29+
30+
<change-notes><![CDATA[
31+
<ul>
32+
First public alpha version of FIM!
33+
</ul>
34+
]]>
35+
</change-notes>
1636

17-
<!-- Product and plugin compatibility requirements.
18-
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html -->
1937
<depends>com.intellij.modules.platform</depends>
2038
<depends>com.intellij.java</depends>
2139
<depends>org.jetbrains.kotlin</depends>
2240

23-
<!-- Extension points defined by the plugin.
24-
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-extension-points.html -->
2541
<extensions defaultExtensionNs="com.intellij">
2642
<codeInsight.lineMarkerProvider language="JAVA"
2743
implementationClass="fish.crafting.fimplugin.plugin.marker.VectorLineMarkerProvider"/>

0 commit comments

Comments
 (0)