diff --git a/CHANGELOG.md b/CHANGELOG.md index 392c280..c7f1bb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,19 @@ ## [Unreleased] ### Added +- Added LICENSE file with MIT License to clarify the terms of use. ### Fixed ### Changed -- Expand the plugin's compatible IDE build versions from `232.*` to `241.*`. +- Expand the plugin's compatible IDE build versions from `241.*` to `243.*`. ### Removed +## [2.0.1] - 2024-04-04 +### Fixed +- Fix plugin compatibility issue after IntelliJ IDEA version 2023.2 + ## [2.0.0] - 2023-08-30 ### Added @@ -56,7 +61,9 @@ - Define events to detect and add challenges for each event - Implement notification alert feature for leveling up or completing challenges -[Unreleased]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.0...HEAD +[Unreleased]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.1...HEAD + +[2.0.1]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v1.2.1...v2.0.0 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..dc861b1 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [2024] [Sohn Young Jin] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/gradle.properties b/gradle.properties index d3c7fe8..a4c7c3f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,11 +4,11 @@ pluginGroup = com.github.ilovegamecoding.intellijcodexp pluginName = intellij-codexp pluginRepositoryUrl = https://github.com/ILoveGameCoding/intellij-codexp # SemVer format -> https://semver.org -pluginVersion=2.0.1 +pluginVersion=2.0.2 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 232 -pluginUntilBuild = 241.* +pluginUntilBuild = 243.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC