From 097a3e8ff6116018d831bec14352f3028d85fdb5 Mon Sep 17 00:00:00 2001 From: muller-j <146735699+muller-j@users.noreply.github.com> Date: Fri, 6 Dec 2024 16:27:08 +0100 Subject: [PATCH 1/5] =?UTF-8?q?=E2=AC=86=EF=B8=8Fupgrade=20supported=20Int?= =?UTF-8?q?ellij=20Platform=20version=20to=20243.*?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index d3c7fe8..aab2da3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ pluginVersion=2.0.1 # 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 From 99f3dd276571715f9321451020ff43f1576cc123 Mon Sep 17 00:00:00 2001 From: Sohn Young Jin Date: Wed, 18 Dec 2024 02:00:25 +0900 Subject: [PATCH 2/5] docs: Update CHANGELOG.md with recent changes --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 392c280..db2fe42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,14 @@ ### 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 +60,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 From d19e5832c149d476d70800c54211d8bbbd8eba22 Mon Sep 17 00:00:00 2001 From: Sohn Young Jin Date: Wed, 18 Dec 2024 02:00:58 +0900 Subject: [PATCH 3/5] release: Prepare for release v2.0.2 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index aab2da3..a4c7c3f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ 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 From a45f0ebe85fa6752e048a861eee504e87239326c Mon Sep 17 00:00:00 2001 From: Sohn Young Jin Date: Wed, 18 Dec 2024 02:04:05 +0900 Subject: [PATCH 4/5] docs: Add LICENSE file --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE 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. From bdd23f0392b15432ef18ad4bbce5092ed1d5f53d Mon Sep 17 00:00:00 2001 From: Sohn Young Jin Date: Wed, 18 Dec 2024 02:07:24 +0900 Subject: [PATCH 5/5] docs: Update CHANGELOG.md with recent changes --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index db2fe42..c7f1bb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ## [Unreleased] ### Added +- Added LICENSE file with MIT License to clarify the terms of use. ### Fixed