Skip to content

Commit 0c37783

Browse files
committed
Java 20
1 parent bab3820 commit 0c37783

File tree

16 files changed

+178
-40
lines changed

16 files changed

+178
-40
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up JDK
1616
uses: actions/setup-java@v3
1717
with:
18-
java-version: '19'
18+
java-version: '20'
1919
distribution: 'zulu'
2020
- name: Install Linux dependencies
2121
run: sudo apt-get install libplist-dev libimobiledevice-dev libirecovery-1.0-dev

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/icon.svg

Lines changed: 17 additions & 0 deletions
Loading

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ bugs/problems or have a feature request.
2929

3030
## Built With
3131

32-
- JDK 19
32+
- JDK 20
3333
- [IntelliJ Idea](https://www.jetbrains.com/idea/)
3434
- [Gradle](https://gradle.org/)
3535
- [JLink Plugin](https://github.com/beryx/badass-jlink-plugin)
36-
- [Inno Setup](http://www.jrsoftware.org/isinfo.php) (Windows installer)
36+
- [Inno Setup](http://www.jrsoftware.org/isinfo.php) (Windows)
3737

3838
See the full credits [here](libraries_used.txt).
3939

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def os = DefaultNativePlatform.currentOperatingSystem
4040

4141
startScripts.enabled = distZip.enabled = distTar.enabled = false
4242

43-
java.toolchain.languageVersion = JavaLanguageVersion.of(19)
43+
java.toolchain.languageVersion = JavaLanguageVersion.of(20)
4444

4545
repositories {
4646
mavenCentral()

gradle/wrapper/gradle-wrapper.jar

346 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ done
8383
# This is normally unused
8484
# shellcheck disable=SC2034
8585
APP_BASE_NAME=${0##*/}
86-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
86+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87+
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
8788

8889
# Use the maximum available, or set MAX_FD != -1 to use that value.
8990
MAX_FD=maximum

0 commit comments

Comments
 (0)