Skip to content

Commit

Permalink
v1.1.5 - Initial 2023.1 Build Support. (#167)
Browse files Browse the repository at this point in the history
* v1.1.5 - Initial 2023.1 Build Support.

* Updated update notification.
  • Loading branch information
Unthrottled authored Jan 22, 2023
1 parent beb881d commit 8837a17
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

# AMII Changelog

## [1.1.5]

### Added

- Initial 2023.1 Build Support

## [1.1.4]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
// Kotlin support
kotlin("jvm") version "1.7.10"
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "1.9.0"
id("org.jetbrains.intellij") version "1.12.0"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
id("org.jetbrains.changelog") version "1.1.2"
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html
Expand Down
4 changes: 4 additions & 0 deletions docs/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Added

- Initial 2023.1 Build Support

### Fixed

- Not being able to open any project from the Welcome Screen on the 2022.3 Beta build.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

pluginGroup = io.unthrottled
pluginName_ = Anime Memes
pluginVersion = 1.1.4
pluginVersion = 1.1.5
pluginSinceBuild = 203.7148.57
pluginUntilBuild = 223.*
pluginUntilBuild = 231.*
# 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
pluginVerifierIdeVersions = 2020.3.2,2021.1,2021.2,2022.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package io.unthrottled.amii.assets

import com.google.gson.GsonBuilder
import com.intellij.openapi.diagnostic.Logger
import com.intellij.util.io.exists
import io.unthrottled.amii.tools.runSafelyWithResult
import io.unthrottled.amii.tools.toOptional
import java.io.InputStreamReader
import java.nio.charset.StandardCharsets
import java.nio.file.Files
import java.nio.file.StandardOpenOption
import kotlin.io.path.exists

abstract class LocalPersistenceService<T>(
private val fileName: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package io.unthrottled.amii.assets

import com.intellij.openapi.application.ApplicationManager
import com.intellij.openapi.diagnostic.Logger
import com.intellij.util.io.exists
import com.intellij.util.messages.Topic
import io.unthrottled.amii.assets.ContentAssetManager.constructLocalContentPath
import io.unthrottled.amii.platform.LifeCycleManager
Expand All @@ -12,6 +11,7 @@ import io.unthrottled.amii.tools.doOrElse
import java.io.InputStream
import java.net.URI
import java.util.Optional
import kotlin.io.path.exists

enum class Status {
OK, BROKEN, UNKNOWN
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ private fun buildUpdateMessage(updateAsset: String): String =
"""
What's New?<br>
<ul>
<li>Fixed startup in 2022.3 build</li>
<li>Fixed startup issue in 2022.3 build</li>
<li>Added initial 2023.1 build support.</li>
</ul>
<br>See the <a href="https://github.com/ani-memes/AMII#documentation">documentation</a> for features, usages, and configurations.
<br>The <a href="https://github.com/ani-memes/AMII/blob/master/CHANGELOG.md">changelog</a> is available for more details.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package io.unthrottled.amii.promotion

import com.google.gson.GsonBuilder
import com.intellij.openapi.diagnostic.Logger
import com.intellij.util.io.exists
import io.unthrottled.amii.assets.AssetCategory
import io.unthrottled.amii.assets.ContentAssetManager
import io.unthrottled.amii.assets.LocalStorageService
Expand All @@ -14,6 +13,7 @@ import java.nio.file.Files
import java.nio.file.StandardOpenOption
import java.time.Instant
import java.util.UUID
import kotlin.io.path.exists

data class Promotion(
val id: UUID,
Expand Down

0 comments on commit 8837a17

Please sign in to comment.