[Patchanim-commit] SF.net SVN: patchanim:[305] trunk/patchanim
Brought to you by:
dbrosius
From: <dbr...@us...> - 2012-01-16 03:04:31
|
Revision: 305 http://patchanim.svn.sourceforge.net/patchanim/?rev=305&view=rev Author: dbrosius Date: 2012-01-16 03:04:24 +0000 (Mon, 16 Jan 2012) Log Message: ----------- pull from github Modified Paths: -------------- trunk/patchanim/build.xml trunk/patchanim/src/com/mebigfatguy/patchanim/AnimationType.java trunk/patchanim/src/com/mebigfatguy/patchanim/BlendDirection.java trunk/patchanim/src/com/mebigfatguy/patchanim/ExportType.java trunk/patchanim/src/com/mebigfatguy/patchanim/OutOfBoundsColor.java trunk/patchanim/src/com/mebigfatguy/patchanim/PatchAnimDocument.java trunk/patchanim/src/com/mebigfatguy/patchanim/PatchColor.java trunk/patchanim/src/com/mebigfatguy/patchanim/ShiftDirection.java trunk/patchanim/src/com/mebigfatguy/patchanim/TweenStyle.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DoubleDocument.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/IntegerDocument.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimPanel.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchControlPanel.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchListPanel.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchSamplePanel.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JTestFrame.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/NewDocumentDialog.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchAnimFileFilter.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchDecorator.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchListModel.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchPanelMediator.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/SourcePatchesPanel.java trunk/patchanim/src/com/mebigfatguy/patchanim/gui/Utils.java trunk/patchanim/src/com/mebigfatguy/patchanim/resources.properties trunk/patchanim/src/com/mebigfatguy/patchanim/resources_de.properties trunk/patchanim/src/com/mebigfatguy/patchanim/resources_es.properties trunk/patchanim/src/com/mebigfatguy/patchanim/resources_hi.n2a trunk/patchanim/src/com/mebigfatguy/patchanim/resources_it.properties trunk/patchanim/src/com/mebigfatguy/patchanim/surface/CombinedPatch.java trunk/patchanim/src/com/mebigfatguy/patchanim/surface/Coordinate.java trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchAnimator.java trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchCoords.java trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchGenerator.java Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/build.xml 2012-01-16 03:04:24 UTC (rev 305) @@ -1,7 +1,7 @@ <!-- /* * patchanim - Bezier Blend Batch Animation Builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -37,6 +37,16 @@ <property name="patchanim.version" value="1.3.0"/> + <property name="xml-apis.version" value="2.0.2"/> + <property name="xalan.version" value="2.7.1"/> + <property name="serializer.version" value="2.7.1"/> + <property name="xercesImpl.version" value="2.10.0"/> + + <property name="xml-apis-url" value="http://repo1.maven.org/maven2/xml-apis/xml-apis/${xml-apis.version}/xml-apis-${xml-apis.version}.jar"/> + <property name="xalan-url" value="http://repo1.maven.org/maven2/xalan/xalan/${xalan.version}/xalan-${xalan.version}.jar"/> + <property name="serializer-url" value="http://repo1.maven.org/maven2/xalan/serializer/${serializer.version}/serializer-${serializer.version}.jar"/> + <property name="xercesImpl-url" value="http://repo1.maven.org/maven2/xerces/xercesImpl/${xercesImpl.version}/xercesImpl-${xercesImpl.version}.jar"/> + <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> <delete dir="${javadoc.dir}"/> @@ -51,24 +61,61 @@ </delete> </target> + <path id="patchanim.classpath"> + <pathelement location="${lib.dir}/xml-apis-${xml-apis.version}.jar"/> + <pathelement location="${lib.dir}/xalan-${xalan.version}.jar"/> + <pathelement location="${lib.dir}/xercesImpl-${xercesImpl.version}.jar"/> + <pathelement location="${lib.dir}/serializer-${serializer.version}.jar"/> + </path> + <target name="-init" description="prepares repository for a build"> + <mkdir dir="${lib.dir}"/> <mkdir dir="${classes.dir}"/> <mkdir dir="${javadoc.dir}"/> - <path id="patchanim.classpath"> - <pathelement location="${lib.dir}/xml-apis.jar"/> - <pathelement location="${lib.dir}/xalan.jar"/> - <pathelement location="${lib.dir}/xercesImpl.jar"/> - <pathelement location="${lib.dir}/serializer.jar"/> - </path> </target> - - <target name="compile" depends="-init" description="compiles java files"> + + <target name="xml-apis-check"> + <available file="${basedir}/lib/xml-apis-${xml-apis.version}.jar" property="xml-apis-exists"/> + </target> + + <target name="xalan-check"> + <available file="${basedir}/lib/xalan-${xalan.version}.jar" property="xalan-exists"/> + </target> + + <target name="serializer-check"> + <available file="${basedir}/lib/serializer-${serializer.version}.jar" property="serializer-exists"/> + </target> + + <target name="xercesImpl-check"> + <available file="${basedir}/lib/xercesImpl-${xercesImpl.version}.jar" property="xercesImpl-exists"/> + </target> + + <target name="install-xml-apis" depends="xml-apis-check" unless="xml-apis-exists" description="installs xml-apis.jar into lib"> + <get src="${xml-apis-url}" dest="${basedir}/lib/xml-apis-${xml-apis.version}.jar" verbose="true" ignoreerrors="true"/> + </target> + + <target name="install-xalan" depends="xalan-check" unless="xalan-exists" description="installs xalan.jar into lib"> + <get src="${xalan-url}" dest="${basedir}/lib/xalan-${xalan.version}.jar" verbose="true" ignoreerrors="true"/> + </target> + + <target name="install-serializer" depends="serializer-check" unless="serializer-exists" description="installs serializer.jar into lib"> + <get src="${serializer-url}" dest="${basedir}/lib/serializer-${serializer.version}.jar" verbose="true" ignoreerrors="true"/> + </target> + + <target name="install-xercesImpl" depends="xercesImpl-check" unless="xercesImpl-exists" description="installs xercesImpl.jar into lib"> + <get src="${xercesImpl-url}" dest="${basedir}/lib/xercesImpl-${xercesImpl.version}.jar" verbose="true" ignoreerrors="true"/> + </target> + + <target name="pull" depends="install-xml-apis, install-xalan, install-serializer, install-xercesImpl" description="pull 3rdparty jars to the lib directory"/> + + <target name="compile" depends="-init, pull" description="compiles java files"> <javac srcdir="${src.dir}" destdir="${classes.dir}" source="${javac.source}" target="${javac.target}" deprecation="${javac.deprecation}" - debug="${javac.debug}"> + debug="${javac.debug}" + includeantruntime="false"> <classpath refid="patchanim.classpath"/> </javac> </target> @@ -115,7 +162,7 @@ <manifest> <attribute name="patchanim-version" value="${patchanim.version}"/> <attribute name="Main-Class" value="com.mebigfatguy.patchanim.main.PatchMain"/> - <attribute name="Class-Path" value="xml-apis.jar xalan.jar xercesImpl.jar serializer.jar"/> + <attribute name="Class-Path" value="xml-apis-${xml-apis.version}.jar xalan-${xalan.version}.jar xercesImpl-${xercesImpl.version}.jar serializer-${serializer-version}.jar"/> </manifest> </jar> </target> @@ -133,7 +180,7 @@ destdir="${javadoc.dir}" windowtitle="patchanim api"> <doctitle><![CDATA[<h1>patchanim javadoc</h1>]]></doctitle> - <bottom><![CDATA[<i>Copyright © 2008-2010 MeBigFatGuy.com. All Rights Reserved.</i>]]></bottom> + <bottom><![CDATA[<i>Copyright © 2008-2012 MeBigFatGuy.com. All Rights Reserved.</i>]]></bottom> </javadoc> </target> @@ -182,7 +229,7 @@ <target name="binzip" depends="build" description="zips up all jars"> <zip destfile="${basedir}/patchanim-bin-${patchanim.version}.zip" basedir="${jnlp.dir}" - includes="patchanim-${patchanim.version}.jar xml-apis.jar xercesImpl.jar xalan.jar serializer.jar"/> + includes="patchanim-${patchanim.version}.jar xml-apis-${xml-apis.version}.jar xercesImpl-${xercesImpl.version}.jar xalan-${xalan.version}.jar serializer-${serializer-version}.jar"/> </target> <target name="release" depends="build, jnlp, binzip, srczip, javadoc" description="prepares everything for a release"/> Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/AnimationType.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/AnimationType.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/AnimationType.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/BlendDirection.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/BlendDirection.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/BlendDirection.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/ExportType.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/ExportType.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/ExportType.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/OutOfBoundsColor.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/OutOfBoundsColor.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/OutOfBoundsColor.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/PatchAnimDocument.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/PatchAnimDocument.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/PatchAnimDocument.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/PatchColor.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/PatchColor.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/PatchColor.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/ShiftDirection.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/ShiftDirection.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/ShiftDirection.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/TweenStyle.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/TweenStyle.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/TweenStyle.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DoubleDocument.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DoubleDocument.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DoubleDocument.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/IntegerDocument.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/IntegerDocument.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/IntegerDocument.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimPanel.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimPanel.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimPanel.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchControlPanel.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchControlPanel.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchControlPanel.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchListPanel.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchListPanel.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchListPanel.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchSamplePanel.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchSamplePanel.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchSamplePanel.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JTestFrame.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JTestFrame.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JTestFrame.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/NewDocumentDialog.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/NewDocumentDialog.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/NewDocumentDialog.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchAnimFileFilter.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchAnimFileFilter.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchAnimFileFilter.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchDecorator.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchDecorator.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchDecorator.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchListModel.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchListModel.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchListModel.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchPanelMediator.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchPanelMediator.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchPanelMediator.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/SourcePatchesPanel.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/SourcePatchesPanel.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/SourcePatchesPanel.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/Utils.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/Utils.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/Utils.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/resources.properties =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/resources.properties 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/resources.properties 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/resources_de.properties =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/resources_de.properties 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/resources_de.properties 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/resources_es.properties =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/resources_es.properties 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/resources_es.properties 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/resources_hi.n2a =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/resources_hi.n2a 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/resources_hi.n2a 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/resources_it.properties =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/resources_it.properties 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/resources_it.properties 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/surface/CombinedPatch.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/surface/CombinedPatch.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/surface/CombinedPatch.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/surface/Coordinate.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/surface/Coordinate.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/surface/Coordinate.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchAnimator.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchAnimator.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchAnimator.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchCoords.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchCoords.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchCoords.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchGenerator.java =================================================================== --- trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchGenerator.java 2012-01-16 03:02:29 UTC (rev 304) +++ trunk/patchanim/src/com/mebigfatguy/patchanim/surface/PatchGenerator.java 2012-01-16 03:04:24 UTC (rev 305) @@ -1,6 +1,6 @@ /* * patchanim - A bezier surface patch color blend animation builder - * Copyright (C) 2008-2010 Dave Brosius + * Copyright (C) 2008-2012 Dave Brosius * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |