Skip to content

Commit

Permalink
JF/47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pquiring committed Oct 12, 2023
1 parent 2dbcd8d commit 21454dc
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<description>JavaForce SDK</description>
<!-- set global properties for this build -->
<property name="app" value="javaforce"/>
<property name="apptype" value="c"/>
<property name="apptype" value="console"/>
<property name="src" location="src"/>
<property name="build" location="classes"/>
<property name="build-jnlp" location="classes-jnlp"/>
Expand Down
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>46.0</version>
<version>47.0</version>

<scm>
<url>https://github.com/pquiring/javaforce</url>
Expand Down
2 changes: 1 addition & 1 deletion projects/jfaudio/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<property name="build" location="classes"/>
<property name="classpath" location="javaforce.jar"/>
<property name="jre" location="${home}/jre_base_desktop"/>
<property name="version" value="0.20"/>
<property name="version" value="0.21"/>

<property name="debian.depends" value="ffmpeg"/>
<property name="fedora.depends" value="ffmpeg"/>
Expand Down
2 changes: 1 addition & 1 deletion projects/jfaudio/src/AudioApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class AudioApp extends javax.swing.JFrame implements KeyEventDispatcher {

public static String version = "0.20";
public static String version = "0.21";

/**
* Creates new form AudioApp
Expand Down
3 changes: 3 additions & 0 deletions projects/jfaudio/whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Whats' new....

Oct 12, 2023 - v0.21 released
- fix : recording issue (buffer too small)

Mar 18, 2020 - v0.20 released
- fix : win64 loader now loads msvcrt dlls properly

Expand Down
2 changes: 1 addition & 1 deletion projects/jfaudio/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="{CBD3C745-FB94-4288-9344-E12571E4325D}" Version="0.20" Language="1033" Name="jfAudio" Manufacturer="Peter Quiring">
<Product Id="*" UpgradeCode="{CBD3C745-FB94-4288-9344-E12571E4325D}" Version="0.21" Language="1033" Name="jfAudio" 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 46.0
Version 47.0

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 "46.0";
return "47.0";
}

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="46.0"/>
<property name="javaforce-version" value="47.0"/>
<!-- native dependancies versions -->
<property name="glfw-version" value="3.3.1"/>
<!-- Maven Java Dependancies versions -->
Expand Down
6 changes: 6 additions & 0 deletions whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
What's new...

Oct 12/2023 : JF/47.0
- upgrade to ffmpeg/5.1.x
- jfAudio/0.21
- fixed recording issue
- misc fixes

Oct 6/2023 : JF/46.0
- Oracle will deprecate using JNI thru System.load() (see JEP draft 8307341)
- a new java cli tool was created for running JF apps from command line (/bin/jfexec) to replace using java.exe
Expand Down

0 comments on commit 21454dc

Please sign in to comment.