Skip to content

Commit e818836

Browse files
authored
Merge pull request #36 from xdev-software/develop
Release 1.0.4
2 parents fd6acec + 07fb29f commit e818836

File tree

10 files changed

+38
-168
lines changed

10 files changed

+38
-168
lines changed

.github/workflows/checkBuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
distribution: [temurin]
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- name: Set up JDK
2727
uses: actions/setup-java@v3

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
check_code: # Validates the code
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Set up JDK
1818
uses: actions/setup-java@v3
@@ -48,7 +48,7 @@ jobs:
4848
outputs:
4949
upload_url: ${{ steps.create_release.outputs.upload_url }}
5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252

5353
- name: Configure Git
5454
run: |
@@ -100,7 +100,7 @@ jobs:
100100
runs-on: ubuntu-latest
101101
needs: [prepare_release]
102102
steps:
103-
- uses: actions/checkout@v3
103+
- uses: actions/checkout@v4
104104

105105
- name: Set up JDK
106106
uses: actions/setup-java@v3
@@ -133,7 +133,7 @@ jobs:
133133
runs-on: ubuntu-latest
134134
needs: [publish]
135135
steps:
136-
- uses: actions/checkout@v3
136+
- uses: actions/checkout@v4
137137

138138
- name: Init Git and pull
139139
run: |

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# Dependabot PRs have no access to secrets (SONAR_TOKEN) -> Ignore them
2727
if: ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'dependabot/') }}
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
3232

.github/workflows/test-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
publish:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Set up JDK
1616
uses: actions/setup-java@v3

.github/workflows/update-from-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
with:
3131
# Required because otherwise there are always changes detected when executing diff/rev-list
3232
fetch-depth: 0

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
## 1.0.4
2+
* Fixed pluginIcon being not displayed #35
3+
* Improved support of Android Studio (until a 2023 version is released) #27
4+
15
## 1.0.3
26
* Fixed problem in combination with Qodana plugin #25
3-
* Improved compatibility and cleaned up code
7+
* Improved compatibility and cleaned up code #27
48

59
## 1.0.2
610
* Fixed missing display name which causes an error when multiple configurable plugins are installed #20

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java'
33
id 'idea'
44
id 'org.jetbrains.intellij' version '1.15.0'
5-
id 'org.sonarqube' version '4.3.0.3225'
5+
id 'org.sonarqube' version '4.4.0.3356'
66
}
77

88
def properties(String key) {
@@ -54,7 +54,7 @@ intellij {
5454

5555

5656
listProductsReleases {
57-
sinceBuild = "231.*"
57+
sinceBuild = "223.*"
5858
}
5959

6060
// JAVA compatibility

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</change-notes>
2020

2121
<!-- https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -->
22-
<idea-version since-build="231"/>
22+
<idea-version since-build="223"/>
2323

2424
<!-- Other product support activated in plugin page during upload at https://plugins.jetbrains.com -->
2525
<depends optional="true" config-file="plugin-java.xml">com.intellij.modules.java</depends>
Lines changed: 11 additions & 78 deletions
Loading
Lines changed: 11 additions & 78 deletions
Loading

0 commit comments

Comments
 (0)