From 92e2cc61174653a65a86ad24e62b6db5852c79bf Mon Sep 17 00:00:00 2001 From: 0verEngineer Date: Mon, 17 Feb 2025 10:26:26 +0100 Subject: [PATCH 1/6] Try to use unlimited until-build for future IDEA Releases --- CHANGELOG.md | 5 +++++ build.gradle.kts | 2 +- gradle.properties | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a79f32..7fe39d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ ## [Unreleased] + +## [0.5.5] +### Changed +- Try to use unlimited until-build for future IDEA Releases + ## [0.5.4] ### Changed - Use unlimited until-build for future IDEA Releases diff --git a/build.gradle.kts b/build.gradle.kts index 19e9485..ac7fe5e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -65,7 +65,7 @@ tasks { patchPluginXml { version.set(properties("pluginVersion")) sinceBuild.set(properties("pluginSinceBuild")) - //untilBuild.set(properties("pluginUntilBuild")) + untilBuild.set(properties("pluginUntilBuild")) // Extract the section from README.md and provide for the plugin's manifest pluginDescription.set( diff --git a/gradle.properties b/gradle.properties index 5fa6651..4628bda 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,11 +2,11 @@ pluginGroup = org.OverEngineer pluginName = InlineProblems pluginRepositoryUrl = https://github.com/OverEngineer/InlineProblems # SemVer format -> https://semver.org -pluginVersion = 0.5.4 +pluginVersion = 0.5.5 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 212.5 -#pluginUntilBuild = 243.* +pluginUntilBuild = provider { null } # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC From dc8c204f1031dcb23bb931aa1972e473d8483cf5 Mon Sep 17 00:00:00 2001 From: 0verEngineer Date: Mon, 17 Feb 2025 11:42:58 +0100 Subject: [PATCH 2/6] Fix unlimited untilBuild --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 4628bda..30981ca 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ pluginVersion = 0.5.5 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 212.5 -pluginUntilBuild = provider { null } +pluginUntilBuild = # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC From e91d2b657d707172e266461dce89e726b74146d3 Mon Sep 17 00:00:00 2001 From: 0verEngineer Date: Fri, 4 Apr 2025 07:36:22 +0200 Subject: [PATCH 3/6] Added Codeberg and Github link to readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 6a1dec2..76d0fe9 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,10 @@ Plugin to show problems like errors and warnings inside the text editor (inline)
Jetbrains Marketplace . + Codeberg + · + Github + . Report Bug · Request Feature From 73a8677a4e2b0c584a7b642c5de4fac113ba421d Mon Sep 17 00:00:00 2001 From: 0verEngineer Date: Fri, 4 Apr 2025 08:04:34 +0200 Subject: [PATCH 4/6] Added codeberg mirror workflow --- .github/workflows/codeberg-mirror.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/codeberg-mirror.yml diff --git a/.github/workflows/codeberg-mirror.yml b/.github/workflows/codeberg-mirror.yml new file mode 100644 index 0000000..54f7556 --- /dev/null +++ b/.github/workflows/codeberg-mirror.yml @@ -0,0 +1,14 @@ +name: Codeberg Mirror + +on: [push] + +jobs: + codeberg-mirror: + name: Codeberg Mirror + runs-on: ubuntu-latest + steps: + - uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://codeberg.org/OverEngineer/InlineProblems' + GIT_USERNAME: ${{ secrets.CODEBERG_USERNAME }} + GIT_PASSWORD: ${{ secrets.CODEBERG_PASSWORD }} From 5a3ccf022220805b369377e741f44cea5dae554a Mon Sep 17 00:00:00 2001 From: 0verEngineer Date: Fri, 4 Apr 2025 08:07:27 +0200 Subject: [PATCH 5/6] Codeberg mirror workflow variable name fix --- .github/workflows/codeberg-mirror.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeberg-mirror.yml b/.github/workflows/codeberg-mirror.yml index 54f7556..4d50cec 100644 --- a/.github/workflows/codeberg-mirror.yml +++ b/.github/workflows/codeberg-mirror.yml @@ -11,4 +11,4 @@ jobs: with: REMOTE: 'https://codeberg.org/OverEngineer/InlineProblems' GIT_USERNAME: ${{ secrets.CODEBERG_USERNAME }} - GIT_PASSWORD: ${{ secrets.CODEBERG_PASSWORD }} + GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }} From 41a8b5a338d6ea9ef42e43d2b8376a09d70181cc Mon Sep 17 00:00:00 2001 From: 0verEngineer Date: Fri, 4 Apr 2025 09:17:09 +0200 Subject: [PATCH 6/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 76d0fe9..d2f8704 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ Distributed under the GNU General Public License v3 See `LICENSE` for more infor ## Contact -Julian Hackinger - dev@hackinger.io +Julian Hackinger - dev@hackinger.net Project Link: [https://github.com/0verEngineer/InlineProblems](https://github.com/0verEngineer/InlineProblems)