-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed versioning for uploading new plugin
- Loading branch information
Showing
15 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...com/MoreaFramework/CustomRepresenter.java → ...com/moreaframework/CustomRepresenter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ava/com/MoreaFramework/MenuSeparator.java → ...ava/com/moreaframework/MenuSeparator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...n/java/com/MoreaFramework/MoreaUtils.java → ...n/java/com/moreaframework/MoreaUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../MoreaFramework/NewAssessmentsAction.java → .../moreaframework/NewAssessmentsAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../MoreaFramework/NewExperiencesAction.java → .../moreaframework/NewExperiencesAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...a/com/MoreaFramework/NewModuleAction.java → ...a/com/moreaframework/NewModuleAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...com/MoreaFramework/NewOutcomesAction.java → ...com/moreaframework/NewOutcomesAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ava/com/MoreaFramework/NewPageAction.java → ...ava/com/moreaframework/NewPageAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...com/MoreaFramework/NewReadingsAction.java → ...com/moreaframework/NewReadingsAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...java/com/MoreaFramework/UpdateModule.java → ...java/com/moreaframework/UpdateModule.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...mework/settings/AppSettingsComponent.java → ...mework/settings/AppSettingsComponent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ork/settings/AppSettingsConfigurable.java → ...ork/settings/AppSettingsConfigurable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...aFramework/settings/AppSettingsState.java → ...aframework/settings/AppSettingsState.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html --> | ||
<idea-plugin> | ||
<id>com.github.bkimcode.newpageaction</id> | ||
<id>com.github.moreaframework.pluginintellij</id> | ||
<name>Morea</name> | ||
<version>0.0.2</version> | ||
<version>1.0.0</version> | ||
<vendor email="[email protected]" url="https://github.com/morea-framework/plugin-intellij">Morea-Framework</vendor> | ||
<description><![CDATA[ | ||
Plugin to provide Morea developers with additional tools to aid in development. | ||
|
@@ -12,18 +12,18 @@ | |
<depends>com.intellij.modules.platform</depends> | ||
<depends>com.intellij.modules.java-capable</depends> | ||
<extensions defaultExtensionNs="com.intellij"> | ||
<applicationService serviceImplementation="com.MoreaFramework.settings.AppSettingsState"/> | ||
<applicationService serviceImplementation="com.moreaframework.settings.AppSettingsState"/> | ||
<applicationConfigurable | ||
parentId="tools" | ||
instance="com.MoreaFramework.settings.AppSettingsConfigurable" | ||
id="com.MoreaFramework.settings.AppSettingsConfigurable" | ||
instance="com.moreaframework.settings.AppSettingsConfigurable" | ||
id="com.moreaframework.settings.AppSettingsConfigurable" | ||
displayName="MOREA settings" | ||
/> | ||
</extensions> | ||
<actions> | ||
<action | ||
id="NewModuleAction" | ||
class="com.MoreaFramework.NewModuleAction" | ||
class="com.moreaframework.NewModuleAction" | ||
text="Create New Morea Module" | ||
description="Create a new Morea Module with a specified name" | ||
icon="AllIcons.Actions.GeneratedFolder"> | ||
|
@@ -32,7 +32,7 @@ | |
<!-- | ||
<action | ||
id="NewPageAction" | ||
class="com.MoreaFramework.NewPageAction" | ||
class="com.moreaframework.NewPageAction" | ||
text="Create Single New Morea Page" | ||
description="Create a new Morea Page with a specified name" | ||
icon="AllIcons.Actions.AddFile"> | ||
|
@@ -41,43 +41,43 @@ | |
--> | ||
<action | ||
id="MoreaActionGroup" | ||
class="com.MoreaFramework.MenuSeparator" | ||
class="com.moreaframework.MenuSeparator" | ||
text="Morea"> | ||
<add-to-group group-id="NewGroup" anchor="first" /> | ||
</action> | ||
|
||
<action | ||
id="NewOutcomesAction" | ||
class="com.MoreaFramework.NewOutcomesAction" | ||
class="com.moreaframework.NewOutcomesAction" | ||
text="Create Single New Outcome Page" | ||
description="Create a new Outcomes Page with a specified name" | ||
icon="AllIcons.Actions.AddFile"> | ||
</action> | ||
<action | ||
id="NewReadingsAction" | ||
class="com.MoreaFramework.NewReadingsAction" | ||
class="com.moreaframework.NewReadingsAction" | ||
text="Create Single New Reading Page" | ||
description="Create a new Readings Page with a specified name" | ||
icon="AllIcons.Actions.AddFile"> | ||
</action> | ||
<action | ||
id="NewExperiencesAction" | ||
class="com.MoreaFramework.NewExperiencesAction" | ||
class="com.moreaframework.NewExperiencesAction" | ||
text="Create Single New Experience Page" | ||
description="Create a new Experiences Page with a specified name" | ||
icon="AllIcons.Actions.AddFile"> | ||
</action> | ||
<action | ||
id="NewAssessmentsAction" | ||
class="com.MoreaFramework.NewAssessmentsAction" | ||
class="com.moreaframework.NewAssessmentsAction" | ||
text="Create Single New Assessment Page" | ||
description="Create a new Assessments Page with a specified name" | ||
icon="AllIcons.Actions.AddFile"> | ||
</action> | ||
|
||
<action | ||
id="UpdateModule" | ||
class="com.MoreaFramework.UpdateModule" | ||
class="com.moreaframework.UpdateModule" | ||
text="Update Module.md file" | ||
description="Updates the module.md to contain current morea pages" | ||
icon="AllIcons.Actions.AddFile"> | ||
|