Skip to content

Commit

Permalink
JF/43.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pquiring committed Aug 29, 2023
1 parent 6806719 commit 96c56bb
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>io.github.pquiring</groupId>
<artifactId>javaforce</artifactId>
<version>43.0</version>
<version>43.1</version>

<scm>
<url>https://github.com/pquiring/javaforce</url>
Expand Down
2 changes: 1 addition & 1 deletion projects/jfpasswords/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<property name="src" location="src"/>
<property name="build" location="classes"/>
<property name="classpath" location="javaforce.jar"/>
<property name="version" value="0.24"/>
<property name="version" value="0.25"/>

<import file="${home}/base.xml"/>

Expand Down
2 changes: 1 addition & 1 deletion projects/jfpasswords/src/PasswordsApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

public class PasswordsApp extends javax.swing.JFrame implements ActionListener {

private String version = "0.24";
private String version = "0.25";

/**
* Creates new form PasswordsApp
Expand Down
3 changes: 3 additions & 0 deletions projects/jfpasswords/whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Aug 29/2023 : jfPasswords/0.25 released
- new : added option to include only one upper case, number and symbol

Aug 3/2020 : jfPasswords/0.24 released
- fix : reset tray icon each time password is entered
- on Windows switching between screens can change scaling and distort tray icon
Expand Down
2 changes: 1 addition & 1 deletion projects/jfpasswords/wix64.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" UpgradeCode="{2DE2BA57-E4DA-4F80-BF66-4A9E55476F42}" Version="0.24" Language="1033" Name="jfPasswords" Manufacturer="Peter Quiring">
<Product Id="*" UpgradeCode="{2DE2BA57-E4DA-4F80-BF66-4A9E55476F42}" Version="0.25" Language="1033" Name="jfPasswords" Manufacturer="Peter Quiring">
<Package InstallerVersion="300" Compressed="yes" InstallScope="perMachine" Platform="x64"/>
<Media Id="1" Cabinet="files.cab" EmbedCab="yes" />
<UIRef Id="WixUI_Minimal" />
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
JavaForce SDK
=============

Version 43.0
Version 43.1

Description
===========
Expand Down
2 changes: 1 addition & 1 deletion src/javaforce/JF.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
public class JF {

public static String getVersion() {
return "43.0";
return "43.1";
}

public static void main(String[] args) {
Expand Down
2 changes: 1 addition & 1 deletion versions.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<project xmlns:if="ant:if" xmlns:unless="ant:unless">
<!-- JavaForce version -->
<property name="javaforce-version" value="43.0"/>
<property name="javaforce-version" value="43.1"/>
<!-- native dependancies versions -->
<property name="glfw-version" value="3.3.1"/>
<!-- Maven Java Dependancies versions -->
Expand Down
7 changes: 7 additions & 0 deletions whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
What's new...

Aug 29/2023 : JF/43.1
- added vss api (volume shadow service)
- replaces using vssadmin.exe
- see jfBackup
- jfPasswords/0.25
- added new option to include only one upper case, number, symbol

Aug 9/2023 : JF/43.0
- jfFTP-server/0.1
- added FTP Server
Expand Down

0 comments on commit 96c56bb

Please sign in to comment.