Skip to content
This repository has been archived by the owner on Apr 26, 2022. It is now read-only.

Commit

Permalink
Update name and version
Browse files Browse the repository at this point in the history
  • Loading branch information
handotdev committed Mar 26, 2022
1 parent d34de73 commit 457dd67
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- Keep a Changelog guide -> https://keepachangelog.com -->

# AI Doc Writer Changelog
# Mintlify Doc Writer Changelog

## [1.0.11]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ✍️ AI Doc Writer - ⌘⇧.
# ✍️ Mintlify Doc Writer - ⌘⇧.

![Build](https://github.com/mintlify/ai_doc_writer_plugin/workflows/Build/badge.svg)
[![Version](https://img.shields.io/jetbrains/plugin/v/18606-ai-doc-writer.svg)](https://plugins.jetbrains.com/plugin/18606-ai-doc-writer)
Expand Down Expand Up @@ -49,7 +49,7 @@ We never store your code, but your code does leave your machine. You can learn m

- Using IDE built-in plugin system:

<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "AI Doc Writer"</kbd> >
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "Mintlify Doc Writer"</kbd> >
<kbd>Install Plugin</kbd>

- Manually:
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html

pluginGroup = com.mintlify.document
pluginName = AI Doc Writer
pluginName = Mintlify Doc Writer
# SemVer format -> https://semver.org
pluginVersion = 1.1.0
pluginVersion = 1.1.1

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = "AI Doc Writer"
rootProject.name = "Mintlify Doc Writer"
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import org.jetbrains.annotations.Nullable;

public class MyToolWindowFactory implements ToolWindowFactory {
public static final String ID = "AI Doc Writer";
public static final String ID = "Mintlify Doc Writer";
private static final Key<MyToolWindow> MY_TOOL_WINDOW = Key.create("MyToolWindow");

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class PopupDialogAction : AnAction() {

val custom = Custom(selectedLanguage)

val task = object : Task.Backgroundable(project, "AI doc writer progress") {
val task = object : Task.Backgroundable(project, "Mintlify doc writer progress") {
override fun run(indicator: ProgressIndicator) {
indicator.text = "Generating docs"
indicator.isIndeterminate = true
Expand Down
6 changes: 3 additions & 3 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.mintlify.document</id>
<name>AI Doc Writer</name>
<version>1.1.0</version>
<name>Mintlify Doc Writer</name>
<version>1.1.1</version>
<vendor url="https://www.mintlify.com/" email="hi@mintlify.com">Mintlify</vendor>


Expand All @@ -11,7 +11,7 @@
<extensions defaultExtensionNs="com.intellij">
<applicationService serviceImplementation="com.mintlify.document.services.MyApplicationService"/>
<projectService serviceImplementation="com.mintlify.document.services.MyProjectService"/>
<toolWindow id="AI Doc Writer" icon="/icons/icon.svg" anchor="right"
<toolWindow id="Mintlify Doc Writer" icon="/icons/icon.svg" anchor="right"
factoryClass="com.mintlify.document.ui.MyToolWindowFactory"/>
</extensions>

Expand Down

0 comments on commit 457dd67

Please sign in to comment.