Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.4.0 #57

Merged
merged 26 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
11e7a9f
chore(deps): bump actions/cache from 3 to 4
dependabot[bot] Apr 8, 2024
216be21
chore(deps): bump actions/checkout from 3 to 4
dependabot[bot] Apr 8, 2024
ed8829a
chore(deps): bump jtalk/url-health-check-action from 3 to 4
dependabot[bot] Apr 8, 2024
7a929a7
chore(deps): bump actions/setup-java from 3 to 4
dependabot[bot] Apr 8, 2024
68186c7
chore(deps): bump org.jetbrains.dokka from 1.9.10 to 1.9.20
dependabot[bot] Apr 8, 2024
3077961
chore(deps): bump org.jetbrains.intellij from 1.17.2 to 1.17.3
dependabot[bot] Apr 8, 2024
2c4a87e
chore(deps): bump org.jetbrains:annotations from 24.0.1 to 24.1.0
dependabot[bot] Apr 8, 2024
e0fcf56
chore(deps): bump gradle/wrapper-validation-action from 1.0.6 to 3.3.2
dependabot[bot] Apr 26, 2024
4195e2c
Merge pull request #34 from zhensherlock/dependabot/github_actions/ne…
zhensherlock May 27, 2024
afb404a
Merge pull request #35 from zhensherlock/dependabot/github_actions/ne…
zhensherlock May 27, 2024
e3730e7
Merge pull request #36 from zhensherlock/dependabot/github_actions/ne…
zhensherlock May 27, 2024
af0dce8
Merge pull request #38 from zhensherlock/dependabot/github_actions/ne…
zhensherlock May 27, 2024
b8db8c3
Merge pull request #40 from zhensherlock/dependabot/gradle/next/org.j…
zhensherlock May 27, 2024
f74b8c4
Merge pull request #41 from zhensherlock/dependabot/gradle/next/org.j…
zhensherlock May 27, 2024
cd1387e
Merge pull request #42 from zhensherlock/dependabot/gradle/next/org.j…
zhensherlock May 27, 2024
3f41feb
Merge pull request #48 from zhensherlock/dependabot/github_actions/ne…
zhensherlock May 27, 2024
504eda9
---
dependabot[bot] May 27, 2024
574364b
chore(deps): bump org.jetbrains.qodana from 2023.3.1 to 2024.1.5
dependabot[bot] May 27, 2024
863bbcd
Merge pull request #52 from zhensherlock/dependabot/gradle/next/org.j…
zhensherlock May 27, 2024
96ad757
Merge pull request #53 from zhensherlock/dependabot/gradle/next/org.j…
zhensherlock May 27, 2024
1aa7bf7
chore(deps): bump codecov/codecov-action from 3 to 4
dependabot[bot] May 28, 2024
b1da2e3
chore(deps): bump org.jetbrains.kotlinx.kover from 0.7.6 to 0.8.0
dependabot[bot] May 28, 2024
2756be1
Merge pull request #55 from zhensherlock/dependabot/github_actions/ne…
zhensherlock May 29, 2024
3e39f5f
Merge pull request #56 from zhensherlock/dependabot/gradle/next/org.j…
zhensherlock May 29, 2024
87dbc37
feat: support utf-8
zhensherlock May 29, 2024
289eb15
release: v0.4.0
zhensherlock May 29, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3
uses: actions/checkout@v4

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

# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
Expand Down Expand Up @@ -89,13 +89,13 @@ jobs:

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

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

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3
uses: actions/checkout@v4

# Remove old release drafts by using the curl request for the available releases with a draft flag
- name: Remove Old Release Drafts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
Expand All @@ -48,7 +48,7 @@ jobs:

# Wait for IDEA to be started
- name: Health Check
uses: jtalk/url-health-check-action@v3
uses: jtalk/url-health-check-action@v4
with:
url: http://127.0.0.1:8082
max-attempts: 15
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.huayi.intellijplatform.gitstats
pluginName = GitStats
pluginRepositoryUrl = https://github.com/zhensherlock/intellij-platform-git-stats-plugin
# SemVer format -> https://semver.org
pluginVersion = 0.3.0
pluginVersion = 0.4.0

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 221
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[versions]
# libraries
annotations = "24.0.1"
annotations = "24.1.0"

# plugins
dokka = "1.9.10"
kotlin = "1.9.23"
dokka = "1.9.20"
kotlin = "2.0.0"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.17.2"
qodana = "2023.3.1"
kover = "0.7.6"
gradleIntelliJPlugin = "1.17.3"
qodana = "2024.1.5"
kover = "0.8.0"

[libraries]
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ class GitStatsWindowFactory : ToolWindowFactory {
var (startTime, endTime) = Utils.getThisWeekDateTimeRange()
var defaultMode = "Top-speed"
val table = JBTable().apply {
font = Font("Arial", Font.PLAIN, 14)
tableHeader.font = Font("Arial", Font.BOLD, 14)
font = Font("Microsoft YaHei", Font.PLAIN, 14)
tableHeader.font = Font("Microsoft YaHei", Font.BOLD, 14)
border = BorderFactory.createEmptyBorder(0, 0, 0, 0)
columnSelectionAllowed = false
rowSelectionAllowed = true
Expand Down
Loading