Skip to content

Commit

Permalink
Prepare 242.1.0, fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
seclerp committed Sep 22, 2024
1 parent 665ec97 commit 4fa48f8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [242.1.0] - 2024-09-22
### Added
- General: Support for Rider 2024.2

## [242.0.0-eap03] - 2024-06-21
### Added
- General: Support for Rider 2024.2 (EAP 3)
Expand Down Expand Up @@ -57,7 +61,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Open in external MGCB editor action
- Additional file templates

[Unreleased]: https://github.com/seclerp/rider-monogame/compare/v242.0.0-eap03...HEAD
[Unreleased]: https://github.com/seclerp/rider-monogame/compare/v242.1.0...HEAD
[242.1.0]: https://github.com/seclerp/rider-monogame/compare/v242.0.0-eap03...v242.1.0
[242.0.0-eap03]: https://github.com/seclerp/rider-monogame/compare/v241.0.0-rc1...v242.0.0-eap03
[241.0.0-rc1]: https://github.com/seclerp/rider-monogame/compare/v233.1.0...v241.0.0-rc1
[233.1.0]: https://github.com/seclerp/rider-monogame/compare/v232.0.0-rc1...v233.1.0
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ sourceSets {

dependencies {
intellijPlatform {
rider(productVersion)
rider(productVersion, useInstaller = false)
jetbrainsRuntime()

instrumentationTools()
Expand All @@ -104,7 +104,7 @@ artifacts {
add(riderModel.name, provider {
intellijPlatform.platformPath.resolve("lib/rd/rider-model.jar").also {
check(it.isFile) {
"rider-model.jar is not found at $riderModel"
"rider-model.jar is not found at $it"
}
}
}) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dotnetPluginId=Rider.Plugins.MonoGame
riderPluginId=me.seclerp.rider.plugins.monogame
pluginVersion=242.0.0-eap03

rdVersion=2024.3.0
rdVersion=2024.1.1
rdKotlinVersion=1.9.23
intellijPlatformGradleVersion=2.0.1
gradleJvmWrapperVersion=0.14.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MgcbEditorWithPreview(
textEditor.editor.document.addDocumentListener(documentListener)
}

override fun isShowFloatingToolbar() = false
override val isShowFloatingToolbar = false

override fun dispose() {
textEditor.editor.document.removeDocumentListener(documentListener)
Expand Down

0 comments on commit 4fa48f8

Please sign in to comment.