Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Merge pull request #13 from 134130/pycharm-support" #20

Merged
merged 1 commit into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,12 @@

## [Unreleased]

## [1.3.0] - 2024-08-03

### Added

- Add environment variables (run configuration) support for the PyCharm Community & Professional

## [1.2.1] - 2024-07-24

### Added

- Remove screenshots from plugin.xml. (JetBrains Marketplace guidelines)

## [1.2.0] - 2024-07-21

### Added

- Add support for the Go SDK (GOROOT) integration from mise tools.

## [1.1.0] - 2024-07-20
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ from mise config files. see: **[mise-en-place](https://mise.jdx.dev)**
- **IntelliJ IDEA**
- **GoLand**
- **WebStorm**
- **PyCharm** Community & Professional
- _Submit issue if you need other IDE_

### Features
- **Environment Variables**: Set environment variables for your run configurations from mise config files.
- **JDK Integration**: Set JDK from mise config files.
- **Go SDK Integration**: Set Go SDK (GOROOT) from mise config files.


<!-- Plugin description end -->

### Screenshots
Expand Down
2 changes: 0 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ dependencies {
implementation(project(":mise-products-gradle"))
implementation(project(":mise-products-goland"))
implementation(project(":mise-products-nodejs"))
implementation(project(":mise-products-pythonid"))
implementation(project(":mise-products-pythoncore"))
}

// Set the JVM language level used to build the project.
Expand Down
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.l34130.mise
pluginName = mise
pluginRepositoryUrl = https://github.com/134130/intellij-mise
# SemVer format -> https://semver.org
pluginVersion = 1.3.0
pluginVersion = 1.2.1

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 223
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,10 @@ import com.intellij.notification.NotificationType
import com.intellij.openapi.project.Project

object Notification {
fun notify(
content: String,
type: NotificationType,
project: Project? = null,
) {
val notification =
NotificationGroupManager
.getInstance()
.getNotificationGroup(NOTIFICATION_GROUP_ID)
.createNotification(content, type)
fun notify(content :String, type: NotificationType, project: Project? = null) {
val notification = NotificationGroupManager.getInstance()
.getNotificationGroup(NOTIFICATION_GROUP_ID)
.createNotification(content, type)

notification.icon = PluginIcons.Default
notification.notify(project)
Expand Down
19 changes: 0 additions & 19 deletions modules/products/pythoncore/build.gradle.kts

This file was deleted.

This file was deleted.

19 changes: 0 additions & 19 deletions modules/products/pythonid/build.gradle.kts

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ include(
"modules/products/gradle",
"modules/products/goland",
"modules/products/nodejs",
"modules/products/pythonid",
"modules/products/pythoncore",
)

rootProject.name = "mise"
Expand Down
7 changes: 0 additions & 7 deletions src/main/resources/META-INF/mise-pythoncore.xml

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/resources/META-INF/mise-pythonid.xml

This file was deleted.

2 changes: 0 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,4 @@
<depends optional="true" config-file="mise-gradle.xml">com.intellij.gradle</depends>
<depends optional="true" config-file="mise-goland.xml">org.jetbrains.plugins.go</depends>
<depends optional="true" config-file="mise-javascript.xml">JavaScript</depends>
<depends optional="true" config-file="mise-pythonid.xml">Pythonid</depends>
<depends optional="true" config-file="mise-pythoncore.xml">PythonCore</depends>
</idea-plugin>
Loading