Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbata committed Oct 17, 2023
1 parent 4cff46c commit b4531ac
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Usage
Java 8 or later is recommended to run JPass.
You can run the application from the command line by typing (the password file is optional):

java -jar jpass-1.0.4-RELEASE.jar [password_file]
java -jar jpass-1.0.5-RELEASE.jar [password_file]

For convenience, batch/shell scripts are also available for launching JPass for various platforms (i.e. `jpass.bat` for Windows, `jpass.sh` for Linux, `jpass.command` for macOS).
Please make sure `PATH`, or `JAVA_HOME` environment variables point to a valid Java installation.
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
targetCompatibility = 1.8

version = '1.0.4-RELEASE'
version = '1.0.5-RELEASE'

repositories {
mavenCentral()
}

dependencies {
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.15.2'
implementation group: 'com.formdev', name: 'flatlaf', version: '3.2.1'
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.15.3'
implementation group: 'com.formdev', name: 'flatlaf', version: '3.2.2'
implementation group: 'com.formdev', name: 'svgSalamander', version: '1.1.4'
testImplementation 'junit:junit:4.13.2'
}
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ organization:= "jpass.id"

name := "JPass"

version := "1.0.4-RELEASE"
version := "1.0.5-RELEASE"

libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.15.2"
libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.15.3"

libraryDependencies += "com.formdev" % "flatlaf" % "3.2.1"
libraryDependencies += "com.formdev" % "flatlaf" % "3.2.2"

libraryDependencies += "com.formdev" % "svgSalamander" % "1.1.4"

Expand Down
4 changes: 2 additions & 2 deletions jpass.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"java/openjdk11"
]
},
"url": "https://github.com/gaborbata/jpass/releases/download/v1.0.3/jpass-1.0.3-RELEASE.zip",
"hash": "fe0b66f89abfc2f0d2a25d7e9aec3a6393ab099c4c3c54b640202373468fa3f1",
"url": "https://github.com/gaborbata/jpass/releases/download/v1.0.5/jpass-1.0.5-RELEASE.zip",
"hash": "0c6fc348b55c21e69c2c34d042316fa023773ef42fb8b8ec478e59ed0658be51",
"bin": "jpass.bat",
"shortcuts": [
[
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>jpass</groupId>
<artifactId>jpass</artifactId>
<packaging>jar</packaging>
<version>1.0.4-RELEASE</version>
<version>1.0.5-RELEASE</version>
<name>JPass</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -13,12 +13,12 @@
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.15.2</version>
<version>2.15.3</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/distribution/jpass.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pause
goto end

:launch
start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.4-RELEASE.jar" %*
start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.5-RELEASE.jar" %*
goto end

:end
2 changes: 1 addition & 1 deletion src/main/distribution/jpass.command
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ else
fi

# execute jpass
exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.4-RELEASE.jar" "$@"
exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.5-RELEASE.jar" "$@"
3 changes: 2 additions & 1 deletion src/main/distribution/jpass.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ Name=JPass
Comment=Password manager with strong encryption
Exec=/opt/jpass/jpass.sh
Icon=/opt/jpass/jpass.png
Terminal=False
Terminal=false

2 changes: 1 addition & 1 deletion src/main/distribution/jpass.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ else
fi

# execute jpass
exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.4-RELEASE.jar" "$@"
exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.5-RELEASE.jar" "$@"
4 changes: 2 additions & 2 deletions src/main/distribution/readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JPass - Password Manager 1.0.4-RELEASE
# JPass - Password Manager 1.0.5-RELEASE

Overview
--------
Expand All @@ -21,7 +21,7 @@ Java 8 or later is recommended to run JPass.
You can run the application from the command line by typing (the password
file is optional):

java -jar jpass-1.0.4-RELEASE.jar [password_file]
java -jar jpass-1.0.5-RELEASE.jar [password_file]

For convenience, batch/shell scripts are also available for launching JPass
for various platforms (i.e. `jpass.bat` for Windows, `jpass.sh` for Linux,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jpass/ui/JPassFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public final class JPassFrame extends JFrame {
private static JPassFrame instance;

public static final String PROGRAM_NAME = "JPass Password Manager";
public static final String PROGRAM_VERSION = "1.0.4-RELEASE";
public static final String PROGRAM_VERSION = "1.0.5-RELEASE";

private final JPopupMenu popup;
private final JPanel topContainerPanel;
Expand Down

0 comments on commit b4531ac

Please sign in to comment.