Skip to content

Commit

Permalink
CCDD version 2.1.9. See README for details.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin McCluney committed Apr 11, 2024
1 parent ee3d101 commit 9df8777
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
Binary file modified CCDD.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ _Note: The master branch contains_ **CCDD version 1**_, which is superseded by_

* Beginning with CCDD version 2.1.2 Python 3 is supported

*** Version 2.1.9 has been released **

Below is a brief description of what has changed in version 2.1.8
* Updated version and build date extraction from the jar file

*** Version 2.1.8 has been released **

Below is a brief description of what has changed in version 2.1.8
Expand Down
4 changes: 2 additions & 2 deletions ccdd.build.number
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Tue Apr 02 08:02:55 CDT 2024
build.number=9
#Thu Apr 11 07:52:43 CDT 2024
build.number=10
3 changes: 2 additions & 1 deletion src/CCDD/CcddMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -1612,7 +1612,8 @@ private void findVersionAndBuildDate()
try
{
// Get the path+name of the .jar file in a format acceptable to the OS
String jarFileName = System.getProperty("sun.java.command");
String jarFileName = System.getProperty("java.class.path")
.replaceFirst("([^" + File.pathSeparator + "]+).+", "$1");

if (jarFileName != null)
{
Expand Down

0 comments on commit 9df8777

Please sign in to comment.