Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbata committed Sep 2, 2022
1 parent d694794 commit b391535
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 48 deletions.
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,12 @@ 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-0.1.26-RELEASE.jar [password_file]
java -jar jpass-0.1.27-RELEASE.jar [password_file]

Download
--------
You can find the latest distribution packages under the [releases](https://github.com/gaborbata/jpass/releases) link.

On Windows, you can install JPass using [scoop](https://scoop.sh/).

```
scoop install jpass.json
```

How to compile
--------------
* Maven: `mvn clean package`
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
targetCompatibility = 1.8

version = '0.1.26-RELEASE'
version = '0.1.27-RELEASE'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ organization:= "jpass.id"

name := "JPass"

version := "0.1.26-RELEASE"
version := "0.1.27-RELEASE"

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

Expand Down
32 changes: 0 additions & 32 deletions jpass.json

This file was deleted.

2 changes: 1 addition & 1 deletion 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>0.1.26-RELEASE</version>
<version>0.1.27-RELEASE</version>
<name>JPass</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion src/main/dist/jpass.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
start /B javaw -jar jpass-0.1.26-RELEASE.jar %*
start /B javaw -jar jpass-0.1.27-RELEASE.jar %*
2 changes: 1 addition & 1 deletion src/main/dist/jpass.command
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
java -Xdock:icon=jpass.png -Dapple.laf.useScreenMenuBar=true -jar jpass-0.1.26-RELEASE.jar "$@"
java -Xdock:icon=jpass.png -Dapple.laf.useScreenMenuBar=true -jar jpass-0.1.27-RELEASE.jar "$@"
2 changes: 1 addition & 1 deletion src/main/dist/jpass.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
java -jar jpass-0.1.26-RELEASE.jar "$@"
java -jar jpass-0.1.27-RELEASE.jar "$@"
4 changes: 2 additions & 2 deletions src/main/dist/readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JPass - Password Manager 0.1.26-RELEASE
# JPass - Password Manager 0.1.27-RELEASE

Overview
--------
Expand All @@ -20,7 +20,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-0.1.26-RELEASE.jar [password_file]
java -jar jpass-0.1.27-RELEASE.jar [password_file]

Configuration
-------------
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 = "0.1.26-RELEASE";
public static final String PROGRAM_VERSION = "0.1.27-RELEASE";

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

0 comments on commit b391535

Please sign in to comment.