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
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ case "$( uname )" in #(
NONSTOP* ) nonstop=true ;;
esac

CLASSPATH="\\\"\\\""


# Determine the Java command to use to start the JVM.
Expand Down Expand Up @@ -172,7 +171,6 @@ fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )

JAVACMD=$( cygpath --unix "$JAVACMD" )

Expand Down Expand Up @@ -212,7 +210,6 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
"$@"

Expand Down
3 changes: 1 addition & 2 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,10 @@ goto fail
:execute
@rem Setup the command line

set CLASSPATH=


@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*

:end
@rem End local scope for the variables with windows NT shell
Expand Down
Loading