Skip to content

Commit

Permalink
Prepare 233.1.0 release
Browse files Browse the repository at this point in the history
- Bump dependencies
- Update CHANGELOG
- Bump platform version
- Remove legacy ROADMAP
  • Loading branch information
seclerp committed Dec 27, 2023
1 parent ee63583 commit e9268ca
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 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]

## [233.1.0] - 2023-12-27
### Added
- General: Support for Rider 2023.3

## [232.0.0-rc1] - 2023-07-27
### Added
- General: Support for Rider 2023.2
Expand Down Expand Up @@ -45,7 +49,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/v232.0.0-rc1...HEAD
[Unreleased]: https://github.com/seclerp/rider-monogame/compare/v233.1.0...HEAD
[233.1.0]: https://github.com/seclerp/rider-monogame/compare/v232.0.0-rc1...v233.1.0
[232.0.0-rc1]: https://github.com/seclerp/rider-monogame/compare/v231.1.0...v232.0.0-rc1
[231.1.0]: https://github.com/seclerp/rider-monogame/compare/v223.0.0...v231.1.0
[223.0.0]: https://github.com/seclerp/rider-monogame/compare/v1.0.1...v223.0.0
Expand Down
5 changes: 0 additions & 5 deletions ROADMAP.md

This file was deleted.

12 changes: 5 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {

// https://search.maven.org/artifact/com.jetbrains.rd/rd-gen
dependencies {
classpath("com.jetbrains.rd:rd-gen:2023.3.0")
classpath("com.jetbrains.rd:rd-gen:2023.3.2")
}
}

Expand All @@ -25,8 +25,8 @@ plugins {
// https://plugins.gradle.org/plugin/org.jetbrains.changelog
id("org.jetbrains.changelog") version "2.2.0"
// https://plugins.gradle.org/plugin/org.jetbrains.intellij
id("org.jetbrains.intellij") version "1.15.0"
id("org.jetbrains.kotlin.jvm") version "1.8.20"
id("org.jetbrains.intellij") version "1.16.1"
id("org.jetbrains.kotlin.jvm") version "1.9.22"
// https://plugins.gradle.org/plugin/org.jetbrains.grammarkit
id("org.jetbrains.grammarkit") version "2022.3.1"
}
Expand All @@ -46,7 +46,6 @@ val pluginVersion: String by project
val buildConfiguration = ext.properties["buildConfiguration"] ?: "Debug"

val publishToken: String by project
val publishDistributionFile: String by project
val publishChannel: String by project

val rdLibDirectory: () -> File = { file("${tasks.setupDependencies.get().idea.get().classes}/lib/rd") }
Expand Down Expand Up @@ -252,8 +251,8 @@ tasks {
}

patchPluginXml {
sinceBuild.set("232.0")
untilBuild.set("232.*")
sinceBuild.set("233.0")
untilBuild.set("233.*")
val latestChangelog = try {
changelog.getUnreleased()
} catch (_: MissingVersionException) {
Expand Down Expand Up @@ -318,7 +317,6 @@ tasks {

publishPlugin {
token.set(publishToken)
distributionFile.set(File(publishDistributionFile))
channels.set(listOf(publishChannel))
}
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ javaVersion=17

dotnetPluginId=Rider.Plugins.MonoGame
riderPluginId=me.seclerp.rider.plugins.monogame
pluginVersion=232.1.0
pluginVersion=233.1.0

buildConfiguration=Debug

Expand All @@ -15,7 +15,7 @@ publishChannel=default
# Release: 2020.2
# Nightly: 2020.3-SNAPSHOT
# EAP: 2020.3-EAP2-SNAPSHOT
productVersion=2023.2
productVersion=2023.3.2

# Kotlin 1.4 will bundle the stdlib dependency by default, causing problems with the version bundled with the IDE
# https://blog.jetbrains.com/kotlin/2020/07/kotlin-1-4-rc-released/#stdlib-default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ class MgcbEditorPreviewer(
private val previewerPanel = lazy {
val root = JBSplitter(false, 0.5f).apply {
dividerWidth = 2
val schema = EditorColorsManager.getInstance().globalScheme
divider.background = JBColor.lazy {
EditorColorsManager.getInstance().globalScheme.getColor(EditorColors.PREVIEW_BORDER_COLOR)
schema.getColor(EditorColors.PREVIEW_BORDER_COLOR) ?: schema.defaultBackground
}
}

Expand Down Expand Up @@ -95,8 +96,9 @@ class MgcbEditorPreviewer(
firstComponent = propertiesPanel
secondComponent = processorParamsPanel
dividerWidth = 2
val schema = EditorColorsManager.getInstance().globalScheme
divider.background = JBColor.lazy {
EditorColorsManager.getInstance().globalScheme.getColor(EditorColors.PREVIEW_BORDER_COLOR)
schema.getColor(EditorColors.PREVIEW_BORDER_COLOR) ?: schema.defaultBackground
}
}
}
Expand Down

0 comments on commit e9268ca

Please sign in to comment.