diff --git a/.gitignore b/.gitignore index cfdc549..bc42b32 100644 --- a/.gitignore +++ b/.gitignore @@ -32,9 +32,31 @@ local.properties ################# ## Java ################# +# Compiled class file *.class *.jardesc +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + ################# ## Visual Studio ################# @@ -132,3 +154,43 @@ Thumbs.db Desktop.ini runtime.properties + +############### +## Intellij +############### +# User-specific stuff +.idea/ + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +.idea/modules.xml +.idea/*.iml +.idea/modules +*.iml +*.ipr + +# CMake +cmake-build-*/ + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +*.log + diff --git a/pom.xml b/pom.xml index 95c6afb..78eba55 100644 --- a/pom.xml +++ b/pom.xml @@ -1,7 +1,7 @@ 4.0.0 WaarpR66Gui - 3.0.6 + 3.1.0 Waarp R66 Client Gui GUI to enable to check connectivity or to make synchronous transfer with a remote R66 Server with a client with no Database support http://waarp.github.com/WaarpR66Gui @@ -43,7 +43,7 @@ Waarp WaarpR66 - 3.1.0 + 3.1.1 @@ -72,7 +72,7 @@ 1.6 1.6 true - true + true diff --git a/src/main/java/org/waarp/openr66/r66gui/Version.java b/src/main/java/org/waarp/openr66/r66gui/Version.java index 0a14c59..9822425 100644 --- a/src/main/java/org/waarp/openr66/r66gui/Version.java +++ b/src/main/java/org/waarp/openr66/r66gui/Version.java @@ -3,7 +3,7 @@ /** Provides the version information of Waarp R66 Gui. */ public final class Version { /** The version identifier. */ - public static final String ID = "3.0.6"; + public static final String ID = "3.1.0"; /** Prints out the version identifier to stdout. */ public static void main(String[] args) { System.out.println(ID); } private Version() { super(); }