Skip to content

Commit 2efea35

Browse files
authored
Merge pull request #66 from 0verEngineer/main
0.5.5
2 parents 87664ab + 41a8b5a commit 2efea35

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Codeberg Mirror
2+
3+
on: [push]
4+
5+
jobs:
6+
codeberg-mirror:
7+
name: Codeberg Mirror
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: yesolutions/mirror-action@master
11+
with:
12+
REMOTE: 'https://codeberg.org/OverEngineer/InlineProblems'
13+
GIT_USERNAME: ${{ secrets.CODEBERG_USERNAME }}
14+
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
## [Unreleased]
66

7+
8+
## [0.5.5]
9+
### Changed
10+
- Try to use unlimited until-build for future IDEA Releases
11+
712
## [0.5.4]
813
### Changed
914
- Use unlimited until-build for future IDEA Releases

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ Plugin to show problems like errors and warnings inside the text editor (inline)
3030
<br />
3131
<a href="https://plugins.jetbrains.com/plugin/20789-inlineproblems">Jetbrains Marketplace</a>
3232
.
33+
<a href="https://codeberg.org/OverEngineer/InlineProblems">Codeberg</a>
34+
·
35+
<a href="https://github.com/0verEngineer/InlineProblems">Github</a>
36+
.
3337
<a href="https://github.com/0verEngineer/InlineProblems/issues">Report Bug</a>
3438
·
3539
<a href="https://github.com/0verEngineer/InlineProblems/issues">Request Feature</a>
@@ -122,7 +126,7 @@ Distributed under the GNU General Public License v3 See `LICENSE` for more infor
122126
<!-- CONTACT -->
123127
## Contact
124128

125-
Julian Hackinger - dev@hackinger.io
129+
Julian Hackinger - dev@hackinger.net
126130

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

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ tasks {
6565
patchPluginXml {
6666
version.set(properties("pluginVersion"))
6767
sinceBuild.set(properties("pluginSinceBuild"))
68-
//untilBuild.set(properties("pluginUntilBuild"))
68+
untilBuild.set(properties("pluginUntilBuild"))
6969

7070
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
7171
pluginDescription.set(

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ pluginGroup = org.OverEngineer
22
pluginName = InlineProblems
33
pluginRepositoryUrl = https://github.com/OverEngineer/InlineProblems
44
# SemVer format -> https://semver.org
5-
pluginVersion = 0.5.4
5+
pluginVersion = 0.5.5
66

77
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
88
pluginSinceBuild = 212.5
9-
#pluginUntilBuild = 243.*
9+
pluginUntilBuild =
1010

1111
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1212
platformType = IC

0 commit comments

Comments
 (0)