Skip to content

Commit ed28be7

Browse files
authored
Merge pull request #57 from zhensherlock/next
v0.4.0
2 parents 8b36f08 + 289eb15 commit ed28be7

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
4343
# Check out current repository
4444
- name: Fetch Sources
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646

4747
# Validate wrapper
4848
- name: Gradle Wrapper Validation
49-
uses: gradle/wrapper-validation-action@v1.0.6
49+
uses: gradle/wrapper-validation-action@v3.3.2
5050

5151
# Setup Java 11 environment for the next steps
5252
- name: Setup Java
53-
uses: actions/setup-java@v3
53+
uses: actions/setup-java@v4
5454
with:
5555
distribution: zulu
5656
java-version: 11
@@ -89,13 +89,13 @@ jobs:
8989

9090
# Upload Kover report to CodeCov
9191
- name: Upload Code Coverage Report
92-
uses: codecov/codecov-action@v3
92+
uses: codecov/codecov-action@v4
9393
with:
9494
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml
9595

9696
# Cache Plugin Verifier IDEs
9797
- name: Setup Plugin Verifier IDEs Cache
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
with:
100100
path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides
101101
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -147,7 +147,7 @@ jobs:
147147

148148
# Check out current repository
149149
- name: Fetch Sources
150-
uses: actions/checkout@v3
150+
uses: actions/checkout@v4
151151

152152
# Remove old release drafts by using the curl request for the available releases with a draft flag
153153
- name: Remove Old Release Drafts

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020

2121
# Check out current repository
2222
- name: Fetch Sources
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

2727
# Setup Java 11 environment for the next steps
2828
- name: Setup Java
29-
uses: actions/setup-java@v3
29+
uses: actions/setup-java@v4
3030
with:
3131
distribution: zulu
3232
java-version: 11

.github/workflows/run-ui-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333

3434
# Check out current repository
3535
- name: Fetch Sources
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
# Setup Java 11 environment for the next steps
3939
- name: Setup Java
40-
uses: actions/setup-java@v3
40+
uses: actions/setup-java@v4
4141
with:
4242
distribution: zulu
4343
java-version: 11
@@ -48,7 +48,7 @@ jobs:
4848

4949
# Wait for IDEA to be started
5050
- name: Health Check
51-
uses: jtalk/url-health-check-action@v3
51+
uses: jtalk/url-health-check-action@v4
5252
with:
5353
url: http://127.0.0.1:8082
5454
max-attempts: 15

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = com.huayi.intellijplatform.gitstats
44
pluginName = GitStats
55
pluginRepositoryUrl = https://github.com/zhensherlock/intellij-platform-git-stats-plugin
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.3.0
7+
pluginVersion = 0.4.0
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 221

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[versions]
22
# libraries
3-
annotations = "24.0.1"
3+
annotations = "24.1.0"
44

55
# plugins
6-
dokka = "1.9.10"
7-
kotlin = "1.9.23"
6+
dokka = "1.9.20"
7+
kotlin = "2.0.0"
88
changelog = "2.2.0"
9-
gradleIntelliJPlugin = "1.17.2"
10-
qodana = "2023.3.1"
11-
kover = "0.7.6"
9+
gradleIntelliJPlugin = "1.17.3"
10+
qodana = "2024.1.5"
11+
kover = "0.8.0"
1212

1313
[libraries]
1414
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }

src/main/kotlin/com/huayi/intellijplatform/gitstats/toolWindow/GitStatsWindowFactory.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ class GitStatsWindowFactory : ToolWindowFactory {
4848
var (startTime, endTime) = Utils.getThisWeekDateTimeRange()
4949
var defaultMode = "Top-speed"
5050
val table = JBTable().apply {
51-
font = Font("Arial", Font.PLAIN, 14)
52-
tableHeader.font = Font("Arial", Font.BOLD, 14)
51+
font = Font("Microsoft YaHei", Font.PLAIN, 14)
52+
tableHeader.font = Font("Microsoft YaHei", Font.BOLD, 14)
5353
border = BorderFactory.createEmptyBorder(0, 0, 0, 0)
5454
columnSelectionAllowed = false
5555
rowSelectionAllowed = true

0 commit comments

Comments
 (0)