# Easyprogrammer
+Find executeable jar file in folder `released`.
+
## History
-Version | Date | Remarks
---------|-----------|-----------------------------
- 2.26 | 25.8.2016 | 1:1 movement from SVN server
+Version | Date | Remarks
+--------|------------|-----------------------------
+ 2.29 | 6.11.2020 | JSSC 2.9.2 (for Windows 10)
+ 2.28 | ? | ?
+ 2.27 | 8.12.2018 | Atmega2560 added
+ 2.26 | 25. 8.2016 | 1:1 movement from SVN server
<istrue value="${not.archive.disabled}"/>
</or>
</condition>
- <condition property="do.mkdist">
- <and>
- <isset property="do.archive"/>
- <isset property="libs.CopyLibs.classpath"/>
- <not>
- <istrue value="${mkdist.disabled}"/>
- </not>
- <not>
- <istrue value="${modules.supported.internal}"/>
- </not>
- </and>
- </condition>
<condition property="do.archive+manifest.available">
<and>
<isset property="manifest.available"/>
<attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
</manifest>
</target>
- <target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen" if="do.mkdist" name="-do-jar-copylibs">
+ <target depends="init,compile" name="-check-do-mkdist">
+ <condition property="do.mkdist">
+ <and>
+ <isset property="do.archive"/>
+ <isset property="libs.CopyLibs.classpath"/>
+ <not>
+ <istrue value="${mkdist.disabled}"/>
+ </not>
+ <not>
+ <available file="${build.classes.dir}/module-info.class"/>
+ </not>
+ </and>
+ </condition>
+ </target>
+ <target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist" if="do.mkdist" name="-do-jar-copylibs">
<j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
<echo level="info">To run this application from the command line without Ant, try:</echo>
<property location="${dist.jar}" name="dist.jar.resolved"/>
<echo level="info">java -jar "${dist.jar.resolved}"</echo>
</target>
- <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen" if="do.archive" name="-do-jar-jar" unless="do.mkdist">
+ <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist" if="do.archive" name="-do-jar-jar" unless="do.mkdist">
<j2seproject1:jar manifest="${tmp.manifest.file}"/>
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
<property location="${dist.jar}" name="dist.jar.resolved"/>
*/
public final class DialogAbout extends javax.swing.JDialog
{
- public final static String version = "2.28 (19.12.2018)";
- public final static String source = "https://www.htl-mechatronik.at/gitweb/public/sx/?p=easyprogrammer.git";
+ public final static String version = "2.29 (6.11.2020)";
+ public final static String source = "https://www.htl-mechatronik.at/gitweb/public/?p=sx/easyprogrammer.git";
private static final Logger LOG = Logger.getLogger(DialogAbout.class.getName());
jPanel1.add(jlaName);
jlaCopyright.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
- jlaCopyright.setText("(C) 2013-2016, Manfred Steiner");
+ jlaCopyright.setText("(C) 2013-2020, Manfred Steiner");
jPanel1.add(jlaCopyright);
jpanCenterNorth.add(jPanel1);