Skip to content

Commit

Permalink
Update dependencies and Java version requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiHuHe04 committed Aug 5, 2024
1 parent 4703fdc commit be4072f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ that target this issue and none that are also useful for the average user.
## Installation

- Open your terminal and type in `java -version`.
- If the command was not found or the version is below **17**,
- If the command was not found or the version is below **18**,
download and install Java for your operating system, e.g. from [here](https://www.azul.com/downloads/?package=jdk-fx#zulu).
- Download the jar file of the [latest release](https://github.com/MaxiHuHe04/iTunes-Backup-Explorer/releases/latest) of iTunes Backup Explorer.

Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<version>1.5-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.release>18</maven.compiler.release>
</properties>
<dependencies>
<dependency>
Expand All @@ -22,17 +22,17 @@
<dependency>
<groupId>com.googlecode.plist</groupId>
<artifactId>dd-plist</artifactId>
<version>1.23</version>
<version>1.28</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.70</version>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.78.1</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.41.2.2</version>
<version>3.46.0.1</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ private void backupOriginal(boolean move) throws IOException {
backupName = this.fileID + "." + (++i);
}

BinaryPropertyListWriter.write(new File(dir, backupName + ".plist"), this.data.dict);
BinaryPropertyListWriter.write(this.data.dict, new File(dir, backupName + ".plist"));

if (this.contentFile != null && this.contentFile.exists()) {
if (move)
Expand Down

0 comments on commit be4072f

Please sign in to comment.