Skip to content

Commit

Permalink
v1.0.4 build
Browse files Browse the repository at this point in the history
  • Loading branch information
mhisoft committed Sep 18, 2017
1 parent 9b80d94 commit 72ff171
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .idea/ant.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions FastCopy.iml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
Expand All @@ -9,7 +9,7 @@
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="jdk" jdkName="Oracle JDK 1.8" jdkType="JavaSDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: com.github.fracpete:vfsjfilechooser2:0.2.7" level="project" />
<orderEntry type="library" name="Maven: junit:junit:3.8.2" level="project" />
Expand Down
3 changes: 2 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>

<property name="AppVersion" value="1.0.4"/>
<property name="repository.dir" value="~/repository"/>

<!-- set the operating system test properties -->
Expand Down Expand Up @@ -78,7 +79,7 @@
<property name="AppMainClass" value="org.mhisoft.fc.ui.FastCopyMainForm"/>
<antcall target="_make-one-jar"/>
<bundleapp outputdirectory="./dist"
name="Fastcopy(v1.0.3)"
name="Fastcopy(${AppVersion})"
displayname="Fastcopy UI"
identifier="${AppMainClass}"
mainclassname="${AppMainClass}">
Expand Down
Binary file modified dist/fastcopy-console.jar
Binary file not shown.
Binary file modified dist/fastcopy-ui.jar
Binary file not shown.
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>

</plugin>

Expand Down Expand Up @@ -321,4 +325,4 @@
</profiles>


</project>
</project>
4 changes: 2 additions & 2 deletions src/main/java/org/mhisoft/fc/ui/AbstractUIImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
public abstract class AbstractUIImpl implements UI {

public void printBuildAndDisclaimer() {
println("Fast Copy (" +
version + build + " by Tony Xue, MHISoft)");
println("Fast Copy (v" +
version + ", build " + build + ", by Tony Xue, MHISoft)");
}

public void dumpArguments(String[] args, RunTimeProperties props) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/mhisoft/fc/ui/FastCopyMainForm.form
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
</grid>
</constraints>
<properties>
<font size="20"/>
<font size="11" style="0"/>
</properties>
</component>
<hspacer id="7d127">
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/mhisoft/fc/ui/UI.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
*/
public interface UI {

public static final String version = "1.0.3";
public static final String build = "";
public static final String version = "1.0.4";
public static final String build = "09172017";

public enum Confirmation {
YES, NO, YES_TO_ALL, HELP, QUIT
Expand Down

0 comments on commit 72ff171

Please sign in to comment.