Skip to content

Commit

Permalink
Corrected a bug with jGnash.exe for Windows Platforms not working.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccavanaugh committed Feb 20, 2020
1 parent 989243f commit f40feba
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ allprojects {

subprojects {
group = "jgnash"
version = "3.6.0"
version = "3.5.1"
}
3 changes: 2 additions & 1 deletion changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
* Yahoo finance historical event download is not working due to upstream changes.
== Release 3.5.1
* 02/20/2020 Fixed issue with Icons no longer working on Windows Platforms
* 02/20/2020 Corrected a bug with jGnash.exe for Windows Platforms not working.
* 02/20/2020 Fixed a bug that was causing icons to no longer work on Windows Platforms.

== Release 3.5.0 __(File format change)__
* 02/03/2020 Updated to the latest Hibernate, Poi, and Commons CSV dependencies.
Expand Down
4 changes: 2 additions & 2 deletions rust-launcher/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ fn launch_jgnash() -> ExitStatus {
Command::new(&*JAVA_EXE)
.arg("-classpath")
.arg(&class_path)
.arg("jGnash")
.arg("jgnash.app.jGnash")
.arg(args.join(" "))
.status()
.expect("command failed to start")
Expand Down Expand Up @@ -203,7 +203,7 @@ fn get_java_home() -> Option<String> {
Ok(f) => f,
Err(_e) => {
eprintln!(
"failed to parse version string for registry: {}",
"failed to parse version string for the registry: {}",
version_string
);
return Some(String::new());
Expand Down
Binary file modified rust-launcher/target/release/jGnash.exe
Binary file not shown.

1 comment on commit f40feba

@lukebakken
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aha! Thanks 😄

Please sign in to comment.