Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/codeberg-mirror.yml
Original file line number Diff line number Diff line change
@@ -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 }}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Plugin to show problems like errors and warnings inside the text editor (inline)
<br />
<a href="https://plugins.jetbrains.com/plugin/20789-inlineproblems">Jetbrains Marketplace</a>
.
<a href="https://codeberg.org/OverEngineer/InlineProblems">Codeberg</a>
·
<a href="https://github.com/0verEngineer/InlineProblems">Github</a>
.
<a href="https://github.com/0verEngineer/InlineProblems/issues">Report Bug</a>
·
<a href="https://github.com/0verEngineer/InlineProblems/issues">Request Feature</a>
Expand Down Expand Up @@ -122,7 +126,7 @@ Distributed under the GNU General Public License v3 See `LICENSE` for more infor
<!-- CONTACT -->
## Contact

Julian Hackinger - dev@hackinger.io
Julian Hackinger - dev@hackinger.net

Project Link: [https://github.com/0verEngineer/InlineProblems](https://github.com/0verEngineer/InlineProblems)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ tasks {
patchPluginXml {
version.set(properties("pluginVersion"))
sinceBuild.set(properties("pluginSinceBuild"))
//untilBuild.set(properties("pluginUntilBuild"))
untilBuild.set(properties("pluginUntilBuild"))

// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
pluginDescription.set(
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading