Skip to content

Commit

Permalink
(cake-build#283) update gradle.properties to support 2022.3-EAP
Browse files Browse the repository at this point in the history
Also removed one deprecated usage in CakeTasksWindowFactory
  • Loading branch information
nils-a committed Sep 28, 2022
1 parent e46c652 commit e665c72
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/rider/.idea/kotlinc.xml

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

4 changes: 2 additions & 2 deletions src/rider/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ pluginGroup = net.cakebuild
pluginName = cake-rider
pluginVersion = 0.1.0-alpha.1
pluginSinceBuild = 222
pluginUntilBuild = 222.*
pluginUntilBuild = 223.*
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions.
# or https://data.services.jetbrains.com/products?fields=name,releases.downloads,releases.version,releases.build,releases.type&code=RD
pluginVerifierIdeVersions = RD-2022.2
pluginVerifierIdeVersions = RD-2022.2,RD-2022.3-EAP1

platformType = RD
platformVersion = 2022.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import com.intellij.ui.content.ContentFactory

class CakeTasksWindowFactory : ToolWindowFactory, DumbAware {
override fun createToolWindowContent(project: Project, toolWindow: ToolWindow) {
val contentFactory = ContentFactory.SERVICE.getInstance()
val contentFactory = ContentFactory.getInstance()
val view = CakeTasksWindow(project)
val content = contentFactory.createContent(view, "", false)
toolWindow.contentManager.addContent(content)
Expand Down

0 comments on commit e665c72

Please sign in to comment.