Skip to content

Commit

Permalink
* 02/10/2020 Restructured main classes to a package to make future de…
Browse files Browse the repository at this point in the history
…velopment with jpackage cleaner (GitHub Pull Request #88) _[msgilligan]_
  • Loading branch information
ccavanaugh committed Feb 10, 2020
1 parent e3b8be3 commit bb6059c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* Yahoo finance historical event download is not working due to upstream changes.
== Release 3.5.0 __(File format change)__
* 02/10/2020 Restructured main classes to a package to make future development with jpackage cleaner (GitHub Pull Request #88) _[msgilligan]_
* 02/08/2020 Build system cleanup and consolidated the bootloader.
* 02/08/2020 Fix RuntimeException when the currency of a locale is unknown. (GitHub Pull Request #92) _[t-pa]_
* 02/08/2020 Updated to JavaFx 14-ea+8.
Expand Down
2 changes: 1 addition & 1 deletion jgnash-fx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
}

application {
mainClassName = "jGnash"
mainClassName = "jgnash.app.jGnash"
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package jgnash.app;

import jgnash.bootloader.BootLoader;
import jgnash.bootloader.BootLoaderDialog;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package jgnash.app;

import java.io.File;
import java.io.FileNotFoundException;
Expand Down
4 changes: 2 additions & 2 deletions jgnash-fx/src/main/resources/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Manifest-Version: 1.0
Application-Name: jGnashFx
JavaFX-Application-Class: jGnashFx
Main-Class: jGnashFx
JavaFX-Application-Class: jgnash.app.jGnashFx
Main-Class: jgnash.app.jGnash

0 comments on commit bb6059c

Please sign in to comment.