diff --git a/.github/workflows/codeberg-mirror.yml b/.github/workflows/codeberg-mirror.yml new file mode 100644 index 0000000..4d50cec --- /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_TOKEN }} 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/README.md b/README.md index 6a1dec2..d2f8704 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 @@ -122,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) 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..30981ca 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 = # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC