Skip to content

Commit

Permalink
Merge pull request #12 from HarryDulaney/Update-dependencies-release-…
Browse files Browse the repository at this point in the history
…1.1.0

Release 1.1.0
  • Loading branch information
HarryDulaney authored Dec 19, 2022
2 parents fefd0c8 + a07617d commit 23b65ae
Show file tree
Hide file tree
Showing 11 changed files with 443,882 additions and 47 deletions.
443,832 changes: 443,832 additions & 0 deletions File-Commander-1.1.0.jar

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion File-Commander.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
java -jar File-Commander-0.2.0.jar
java -jar File-Commander-1.1.0.jar
8 changes: 0 additions & 8 deletions build.fxbuild

This file was deleted.

58 changes: 30 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,33 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.4.RELEASE</version>
<relativePath />
<version>2.7.4</version>
<relativePath/>
</parent>

<groupId>com.commander</groupId>
<artifactId>FileCommander</artifactId>
<version>0.2.0</version>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>FileCommander</name>
<description>File format conversion system with settings for preferred file formatting by type</description>
<description>File conversion system desktop user interface and preferences file formatting by type</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<javafx.weaver.version>1.3.0</javafx.weaver.version>
<openjfx.version>11.0.2</openjfx.version>
<apache.poi.version>5.2.3</apache.poi.version>
<doc4j.version>1.1.10</doc4j.version>
<xdocs.version>2.0.4</xdocs.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand All @@ -47,32 +55,31 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader</artifactId>
<version>2.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>11.0.2</version>
<version>${openjfx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11.0.2</version>
<version>${openjfx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>11.0.2</version>
<version>${openjfx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>11.0.2</version>
<version>${openjfx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>11.0.2</version>
<version>${openjfx.version}</version>
</dependency>

<dependency>
Expand All @@ -83,33 +90,33 @@
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.1</version>
<version>${apache.poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.1</version>
<version>${apache.poi.version}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.7</version>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>com.documents4j</groupId>
<artifactId>documents4j-local</artifactId>
<version>1.0.3</version>
<version>${doc4j.version}</version>
</dependency>
<dependency>
<groupId>com.documents4j</groupId>
<artifactId>documents4j-transformer-msoffice-word</artifactId>
<version>1.0.3</version>
<version>${doc4j.version}</version>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.0</version>
<version>5.7.1</version>
</dependency>
<dependency>
<groupId>com.jfoenix</groupId>
Expand All @@ -119,22 +126,22 @@
<dependency>
<groupId>fr.opensagres.xdocreport</groupId>
<artifactId>fr.opensagres.poi.xwpf.converter.pdf</artifactId>
<version>2.0.2</version>
<version>${xdocs.version}</version>
</dependency>
<dependency>
<groupId>fr.opensagres.xdocreport</groupId>
<artifactId>fr.opensagres.poi.xwpf.converter.core</artifactId>
<version>2.0.2</version>
<version>${xdocs.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.12</version>
<version>5.5.13.3</version>
</dependency>
<dependency>
<groupId>org.apache.pdfbox</groupId>
Expand All @@ -146,16 +153,11 @@
<artifactId>pngdecoder</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.5.12</version>
</dependency>


</dependencies>
<build>
<finalName>File-Commander-0.2.0</finalName>
<finalName>File-Commander-1.1.0</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand All @@ -178,7 +180,7 @@
<developer>
<name>Harry Dulaney IV</name>
<id>HGDIV</id>
<email>github.com/harrydulaney</email>
<organizationUrl>harrydulaney.com</organizationUrl>
</developer>
</developers>
</project>
2 changes: 0 additions & 2 deletions src/main/java/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
Manifest-Version: 1.0
Main-Class: com.commander.FileCommanderApp
Class-Path: BOOT-INF/classes

4 changes: 2 additions & 2 deletions src/main/java/com/commander/PrimaryStageInitializer.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ public class PrimaryStageInitializer implements ApplicationListener<com.commande

private final FxWeaver fxWeaver;
private final String LIGHT_STYLE_SHEET =
getClass().getClassLoader().getResource("style" + File.separator + "light.css").toExternalForm();
getClass().getClassLoader().getResource("light.css").toExternalForm();
private final String DARK_STYLE_SHEET =
getClass().getClassLoader().getResource("style" + File.separator + "dark.css").toExternalForm();
getClass().getClassLoader().getResource("dark.css").toExternalForm();

@Value("${application.ui.title}")
private String title;
Expand Down
12 changes: 9 additions & 3 deletions src/main/java/com/commander/controller/RootController.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.DefaultResourceLoader;
import org.springframework.core.io.FileSystemResourceLoader;
import org.springframework.core.io.ResourceLoader;
import org.springframework.stereotype.Component;

import java.io.File;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Arrays;
Expand Down Expand Up @@ -96,11 +100,13 @@ public class RootController {


protected RootController(FxWeaver fxWeaver,
@SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") FxControllerAndView<DragDropController, BorderPane> dragDropController) {
@SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") FxControllerAndView<DragDropController, BorderPane> dragDropController) throws IOException {
this.dragDropController = dragDropController;
this.fxWeaver = fxWeaver;
LIGHT_THEME_STYLE = getClass().getClassLoader().getResource("style" + File.separator + "light.css").toExternalForm();
DARK_THEME_STYLE = getClass().getClassLoader().getResource("style" + File.separator + "dark.css").toExternalForm();
LIGHT_THEME_STYLE = getClass().getClassLoader().getResource("light.css").toExternalForm();
DARK_THEME_STYLE = getClass().getClassLoader().getResource("dark.css").toExternalForm();


}


Expand Down
3 changes: 0 additions & 3 deletions src/main/resources/application.properties

This file was deleted.

8 changes: 8 additions & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
application:
ui:
title: File Commander 1.1.0

spring:
main:
banner-mode: off
web-application-type: none
File renamed without changes.
File renamed without changes.

0 comments on commit 23b65ae

Please sign in to comment.