Skip to content

Commit

Permalink
changed versioning for uploading new plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimcode committed Apr 6, 2023
1 parent baa8490 commit 0408bf6
Show file tree
Hide file tree
Showing 15 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.github.moreaframework.intellijplugin
pluginName = Morea
pluginRepositoryUrl = https://github.com/morea-framework/plugin-intellij
# SemVer format -> https://semver.org
pluginVersion = 0.0.3
pluginVersion = 1.0.0

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 213
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.introspector.Property;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.*;
import org.jetbrains.annotations.NotNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.PlatformDataKeys;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.*;
import com.intellij.openapi.application.WriteAction;
import com.intellij.openapi.ui.InputValidator;
import com.intellij.openapi.ui.Messages;
import com.intellij.openapi.vfs.VirtualFile;
import com.MoreaFramework.settings.AppSettingsState;
import com.moreaframework.settings.AppSettingsState;

import java.io.IOException;
import java.io.OutputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework;
package com.moreaframework;

import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework.settings;
package com.moreaframework.settings;

import com.intellij.ui.components.JBCheckBox;
import com.intellij.util.ui.FormBuilder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework.settings;
package com.moreaframework.settings;

import com.intellij.openapi.options.Configurable;
import org.jetbrains.annotations.Nls;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.MoreaFramework.settings;
package com.moreaframework.settings;

import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.components.PersistentStateComponent;
Expand Down
26 changes: 13 additions & 13 deletions src/main/resources/META-INF/plugin.xml
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.
Expand All @@ -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">
Expand All @@ -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">
Expand All @@ -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">
Expand Down

0 comments on commit 0408bf6

Please sign in to comment.