|
1 | | -<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html --> |
2 | 1 | <idea-plugin> |
3 | | - <!-- Unique identifier of the plugin. It should be FQN. It cannot be changed between the plugin versions. --> |
4 | 2 | <id>fish.crafting.FIMPlugin</id> |
5 | 3 |
|
6 | | - <!-- Public plugin name should be written in Title Case. |
7 | | - Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name --> |
8 | 4 | <name>Fish's Integrated Minecraft</name> |
9 | 5 |
|
10 | | - <!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. --> |
11 | 6 | <vendor url="https://youtube.crafting.fish">ACraftingFish</vendor> |
12 | 7 |
|
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> |
16 | 36 |
|
17 | | - <!-- Product and plugin compatibility requirements. |
18 | | - Read more: https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html --> |
19 | 37 | <depends>com.intellij.modules.platform</depends> |
20 | 38 | <depends>com.intellij.java</depends> |
21 | 39 | <depends>org.jetbrains.kotlin</depends> |
22 | 40 |
|
23 | | - <!-- Extension points defined by the plugin. |
24 | | - Read more: https://plugins.jetbrains.com/docs/intellij/plugin-extension-points.html --> |
25 | 41 | <extensions defaultExtensionNs="com.intellij"> |
26 | 42 | <codeInsight.lineMarkerProvider language="JAVA" |
27 | 43 | implementationClass="fish.crafting.fimplugin.plugin.marker.VectorLineMarkerProvider"/> |
|
0 commit comments