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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Download JetBrains Runtime (JBR 21)
run: |
wget https://cache-redirector.jetbrains.com/intellij-jbr/jbr_jcef-21.0.8-linux-x64-b1038.68.tar.gz -O jbr.tar.gz
wget https://cache-redirector.jetbrains.com/intellij-jbr/jbr_jcef-21.0.9-linux-x64-b1038.76.tar.gz -O jbr.tar.gz
mkdir -p jbr
tar -xzf jbr.tar.gz -C jbr --strip-components=1

Expand All @@ -37,7 +37,7 @@ jobs:
run: ./gradlew buildPlugin

- name: Upload Plugin Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: plugin-artifact
path: build/distributions/*.zip
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [2025.3]

### Fixes

- Fixed [Indent guides broken on PyCharm](https://github.com/comod/git-scope-pro/issues/68)
- Fixed [File list does not update after switching branch](https://github.com/comod/git-scope-pro/issues/62)
- Fixed [Commit panel diff sometimes not working](https://github.com/comod/git-scope-pro/issues/56)

## [2025.2.1]

### Fixes
Expand Down
9 changes: 6 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ val platformType = properties("platformType")

plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "2.2.20"
id("org.jetbrains.intellij.platform") version "2.10.0"
id("org.jetbrains.changelog") version "2.4.0"
id("org.jetbrains.kotlin.jvm") version "2.2.21"
id("org.jetbrains.intellij.platform") version "2.10.5"
id("org.jetbrains.changelog") version "2.5.0"
}

group = properties("pluginGroup")
Expand Down Expand Up @@ -105,6 +105,9 @@ tasks {
buildSearchableOptions {
enabled = false
}
prepareJarSearchableOptions {
enabled = false
}
wrapper {
gradleVersion = providers.gradleProperty("gradleVersion").get()
distributionType = Wrapper.DistributionType.BIN
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
pluginGroup=org.woelkit.plugins
pluginName=Git Scope
pluginRepositoryUrl=https://github.com/comod/git-scope-pro
pluginVersion=2025.2.1
pluginVersion=2025.3
pluginSinceBuild=243

platformType=IU
#platformVersion=LATEST-EAP-SNAPSHOT
platformVersion=2025.2.3
platformVersion=2025.2.5

platformBundledPlugins=Git4Idea
gradleVersion=9.1.0
gradleVersion=9.2.1
kotlin.stdlib.default.dependency=false
org.gradle.configuration-cache=true
org.gradle.caching = true
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 0 additions & 3 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading