patchanim-commit Mailing List for patchanim (Page 6)
Brought to you by:
dbrosius
You can subscribe to this list here.
| 2008 |
Jan
(80) |
Feb
(158) |
Mar
|
Apr
|
May
(3) |
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(26) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2009 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(9) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(3) |
| 2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <dbr...@us...> - 2008-02-12 21:27:10
|
Revision: 180
http://patchanim.svn.sourceforge.net/patchanim/?rev=180&view=rev
Author: dbrosius
Date: 2008-02-12 13:27:15 -0800 (Tue, 12 Feb 2008)
Log Message:
-----------
remove unused imports
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java 2008-02-12 20:18:48 UTC (rev 179)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java 2008-02-12 21:27:15 UTC (rev 180)
@@ -22,7 +22,6 @@
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
-import java.awt.event.FocusEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.WindowFocusListener;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 20:18:43
|
Revision: 179
http://patchanim.svn.sourceforge.net/patchanim/?rev=179&view=rev
Author: dbrosius
Date: 2008-02-12 12:18:48 -0800 (Tue, 12 Feb 2008)
Log Message:
-----------
remove unneeded finally blocks
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/APngEncoder.java
trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/MngEncoder.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/APngEncoder.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/APngEncoder.java 2008-02-12 20:15:18 UTC (rev 178)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/APngEncoder.java 2008-02-12 20:18:48 UTC (rev 179)
@@ -170,8 +170,6 @@
return true;
} catch (IOException ioe) {
return false;
- } finally {
-
}
}
}
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/MngEncoder.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/MngEncoder.java 2008-02-12 20:15:18 UTC (rev 178)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/MngEncoder.java 2008-02-12 20:18:48 UTC (rev 179)
@@ -198,8 +198,6 @@
return true;
} catch (IOException ioe) {
return false;
- } finally {
-
}
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 20:15:15
|
Revision: 178
http://patchanim.svn.sourceforge.net/patchanim/?rev=178&view=rev
Author: dbrosius
Date: 2008-02-12 12:15:18 -0800 (Tue, 12 Feb 2008)
Log Message:
-----------
remove unneeded try/catch
Modified Paths:
--------------
trunk/patchanim/src/com/fmsware/gif/NeuQuant.java
Modified: trunk/patchanim/src/com/fmsware/gif/NeuQuant.java
===================================================================
--- trunk/patchanim/src/com/fmsware/gif/NeuQuant.java 2008-02-12 20:13:04 UTC (rev 177)
+++ trunk/patchanim/src/com/fmsware/gif/NeuQuant.java 2008-02-12 20:15:18 UTC (rev 178)
@@ -376,21 +376,15 @@
a = radpower[m++];
if (j < hi) {
p = network[j++];
- try {
- p[0] -= (a * (p[0] - b)) / alpharadbias;
- p[1] -= (a * (p[1] - g)) / alpharadbias;
- p[2] -= (a * (p[2] - r)) / alpharadbias;
- } catch (Exception e) {
- } // prevents 1.3 miscompilation
+ p[0] -= (a * (p[0] - b)) / alpharadbias;
+ p[1] -= (a * (p[1] - g)) / alpharadbias;
+ p[2] -= (a * (p[2] - r)) / alpharadbias;
}
if (k > lo) {
p = network[k--];
- try {
- p[0] -= (a * (p[0] - b)) / alpharadbias;
- p[1] -= (a * (p[1] - g)) / alpharadbias;
- p[2] -= (a * (p[2] - r)) / alpharadbias;
- } catch (Exception e) {
- }
+ p[0] -= (a * (p[0] - b)) / alpharadbias;
+ p[1] -= (a * (p[1] - g)) / alpharadbias;
+ p[2] -= (a * (p[2] - r)) / alpharadbias;
}
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 20:13:00
|
Revision: 177
http://patchanim.svn.sourceforge.net/patchanim/?rev=177&view=rev
Author: dbrosius
Date: 2008-02-12 12:13:04 -0800 (Tue, 12 Feb 2008)
Log Message:
-----------
add aux jars
Modified Paths:
--------------
trunk/patchanim/patchanim.fb
Modified: trunk/patchanim/patchanim.fb
===================================================================
--- trunk/patchanim/patchanim.fb 2008-02-12 20:10:45 UTC (rev 176)
+++ trunk/patchanim/patchanim.fb 2008-02-12 20:13:04 UTC (rev 177)
@@ -3,5 +3,9 @@
[Source dirs]
.\src
[Aux classpath entries]
+.\lib\serializer.jar
+.\lib\xalan.jar
+.\lib\xercesimpl.jar
+.\lib\xml-apis.jar
[Options]
relative_paths=true
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 20:10:41
|
Revision: 176
http://patchanim.svn.sourceforge.net/patchanim/?rev=176&view=rev
Author: dbrosius
Date: 2008-02-12 12:10:45 -0800 (Tue, 12 Feb 2008)
Log Message:
-----------
remove unused
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java 2008-02-12 19:22:13 UTC (rev 175)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java 2008-02-12 20:10:45 UTC (rev 176)
@@ -56,7 +56,6 @@
private ValueDocumentListener docListener = new ValueDocumentListener();
private int selectedXPt;
private int selectedYPt;
- private boolean drawHandles = false;
public JColorControlPatchPanel(PatchColor c) {
color = c;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 19:22:11
|
Revision: 175
http://patchanim.svn.sourceforge.net/patchanim/?rev=175&view=rev
Author: dbrosius
Date: 2008-02-12 11:22:13 -0800 (Tue, 12 Feb 2008)
Log Message:
-----------
fix handle redrawing when window focus is lost/gained
Modified Paths:
--------------
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/JPatchSamplePanel.java
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchPanelMediator.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java 2008-02-12 05:03:39 UTC (rev 174)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JColorControlPatchPanel.java 2008-02-12 19:22:13 UTC (rev 175)
@@ -56,6 +56,7 @@
private ValueDocumentListener docListener = new ValueDocumentListener();
private int selectedXPt;
private int selectedYPt;
+ private boolean drawHandles = false;
public JColorControlPatchPanel(PatchColor c) {
color = c;
@@ -133,11 +134,15 @@
}
});
}
-
+
public void drawDecoration(Graphics2D g, Rectangle bounds) {
if (coords == null)
return;
+ PatchPanelMediator mediator = PatchPanelMediator.getMediator();
+ if (!mediator.isFocused())
+ return;
+
g.setColor(Color.yellow);
for (int u = 0; u < 4; u++) {
for (int v = 0; v < 4; v++) {
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java 2008-02-12 05:03:39 UTC (rev 174)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java 2008-02-12 19:22:13 UTC (rev 175)
@@ -22,8 +22,10 @@
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
+import java.awt.event.FocusEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
+import java.awt.event.WindowFocusListener;
import java.io.File;
import java.io.IOException;
import java.util.ResourceBundle;
@@ -151,6 +153,19 @@
}
});
+ addWindowFocusListener(new WindowFocusListener() {
+
+ public void windowGainedFocus(WindowEvent e) {
+ PatchPanelMediator mediator = PatchPanelMediator.getMediator();
+ mediator.setFocused(true);
+ }
+
+ public void windowLostFocus(WindowEvent e) {
+ PatchPanelMediator mediator = PatchPanelMediator.getMediator();
+ mediator.setFocused(false);
+ }
+ });
+
newItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
try {
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchSamplePanel.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchSamplePanel.java 2008-02-12 05:03:39 UTC (rev 174)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchSamplePanel.java 2008-02-12 19:22:13 UTC (rev 175)
@@ -23,6 +23,7 @@
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
+import java.awt.Shape;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
@@ -327,9 +328,16 @@
@Override
public void paintComponent(Graphics g) {
- Rectangle bounds = getBounds();
- g.drawImage(image, 0, 0, (int)bounds.getWidth(), (int)bounds.getHeight(), 0, 0, SAMPLE_SIZE, SAMPLE_SIZE, null);
- if (decorator != null)
- decorator.drawDecoration(((Graphics2D) g), g.getClipBounds());
+ Shape clip = g.getClip();
+ try {
+ Rectangle bounds = getBounds();
+ g.setClip(0, 0, (int)bounds.getWidth(), (int)bounds.getHeight());
+
+ g.drawImage(image, 0, 0, (int)bounds.getWidth(), (int)bounds.getHeight(), 0, 0, SAMPLE_SIZE, SAMPLE_SIZE, null);
+ if (decorator != null)
+ decorator.drawDecoration(((Graphics2D) g), g.getClipBounds());
+ } finally {
+ g.setClip(clip);
+ }
}
}
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchPanelMediator.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchPanelMediator.java 2008-02-12 05:03:39 UTC (rev 174)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/PatchPanelMediator.java 2008-02-12 19:22:13 UTC (rev 175)
@@ -38,6 +38,7 @@
private Set<DocumentChangedListener> dclisteners = new HashSet<DocumentChangedListener>();
private Set<ActivePatchChangedListener> apclisteners = new HashSet<ActivePatchChangedListener>();
private Set<SettingsChangedListener> sclisteners = new HashSet<SettingsChangedListener>();
+ private boolean windowFocused = true;
private PatchPanelMediator() {
}
@@ -96,6 +97,20 @@
}
}
+ public void setFocused(boolean focused) {
+ windowFocused = focused;
+ synchronized(apclisteners) {
+ ActivePatchChangedEvent apce = new ActivePatchChangedEvent(this, activePatch);
+ for (ActivePatchChangedListener apcl : apclisteners) {
+ apcl.activePatchChanged(apce);
+ }
+ }
+ }
+ public boolean isFocused() {
+ return windowFocused;
+ }
+
+
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 05:03:41
|
Revision: 174
http://patchanim.svn.sourceforge.net/patchanim/?rev=174&view=rev
Author: dbrosius
Date: 2008-02-11 21:03:39 -0800 (Mon, 11 Feb 2008)
Log Message:
-----------
javadoc
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java 2008-02-12 05:01:11 UTC (rev 173)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/ExportFrame.java 2008-02-12 05:03:39 UTC (rev 174)
@@ -31,14 +31,23 @@
import com.mebigfatguy.patchanim.gui.events.ExportListener;
import com.mebigfatguy.patchanim.main.PatchAnimBundle;
+/**
+ * a progress dialog for exporting images
+ */
public class ExportFrame extends JDialog implements ExportListener {
private static final long serialVersionUID = 3111097499092146056L;
private JProgressBar bar;
+ /**
+ * constructs the export progress dialog
+ */
public ExportFrame() {
initComponents();
}
+ /**
+ * initialize the gui components
+ */
private void initComponents() {
ResourceBundle rb = PatchAnimBundle.getBundle();
Container cp = getContentPane();
@@ -50,6 +59,11 @@
setTitle(rb.getString(PatchAnimBundle.EXPORTINGFILE));
}
+ /**
+ * implements the ExportListener to update the progress bar
+ *
+ * @param ee the export event describing what file number is being exported
+ */
public void imageExported(final ExportEvent ee) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 05:01:06
|
Revision: 173
http://patchanim.svn.sourceforge.net/patchanim/?rev=173&view=rev
Author: dbrosius
Date: 2008-02-11 21:01:11 -0800 (Mon, 11 Feb 2008)
Log Message:
-----------
javadoc
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DoubleDocument.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DoubleDocument.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DoubleDocument.java 2008-02-12 04:56:52 UTC (rev 172)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DoubleDocument.java 2008-02-12 05:01:11 UTC (rev 173)
@@ -25,13 +25,22 @@
import javax.swing.text.BadLocationException;
import javax.swing.text.PlainDocument;
-
+/**
+ * a text component document that enforces that only double values are entered
+ */
public class DoubleDocument extends PlainDocument
{
private static final long serialVersionUID = 2390424803444456428L;
private static final Pattern DOUBLEPATTERN = Pattern.compile("-?[0-9]*(\\.[0-9]*)?");
+ /**
+ * check input for only double valued characters
+ *
+ * @param offs the offset where insert occurs
+ * @param str the inserted text
+ * @param a the attributes for the inserted text
+ */
@Override
public void insertString(int offs, String str, AttributeSet a) throws BadLocationException {
String start = getText(0, offs);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 04:56:47
|
Revision: 172
http://patchanim.svn.sourceforge.net/patchanim/?rev=172&view=rev
Author: dbrosius
Date: 2008-02-11 20:56:52 -0800 (Mon, 11 Feb 2008)
Log Message:
-----------
rearrange package for encoders
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/APngEncoder.java
trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/Chunk.java
trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/MngEncoder.java
trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/PngStream.java
trunk/patchanim/src/com/mebigfatguy/patchanim/io/PatchExporter.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/APngEncoder.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/APngEncoder.java 2008-02-12 04:55:36 UTC (rev 171)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/APngEncoder.java 2008-02-12 04:56:52 UTC (rev 172)
@@ -16,7 +16,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-package com.mebigfatguy.encoders;
+package com.mebigfatguy.patchanim.encoders;
import java.awt.image.BufferedImage;
import java.io.BufferedOutputStream;
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/Chunk.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/Chunk.java 2008-02-12 04:55:36 UTC (rev 171)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/Chunk.java 2008-02-12 04:56:52 UTC (rev 172)
@@ -16,7 +16,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-package com.mebigfatguy.encoders;
+package com.mebigfatguy.patchanim.encoders;
import java.io.DataOutputStream;
import java.io.IOException;
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/MngEncoder.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/MngEncoder.java 2008-02-12 04:55:36 UTC (rev 171)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/MngEncoder.java 2008-02-12 04:56:52 UTC (rev 172)
@@ -16,7 +16,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-package com.mebigfatguy.encoders;
+package com.mebigfatguy.patchanim.encoders;
import java.awt.image.BufferedImage;
import java.io.BufferedOutputStream;
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/PngStream.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/PngStream.java 2008-02-12 04:55:36 UTC (rev 171)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/PngStream.java 2008-02-12 04:56:52 UTC (rev 172)
@@ -16,7 +16,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-package com.mebigfatguy.encoders;
+package com.mebigfatguy.patchanim.encoders;
public class PngStream {
private static final int HEADERLENGTH = 8;
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/io/PatchExporter.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/io/PatchExporter.java 2008-02-12 04:55:36 UTC (rev 171)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/io/PatchExporter.java 2008-02-12 04:56:52 UTC (rev 172)
@@ -29,8 +29,8 @@
import javax.imageio.ImageIO;
import com.fmsware.gif.AnimatedGifEncoder;
-import com.mebigfatguy.encoders.APngEncoder;
-import com.mebigfatguy.encoders.MngEncoder;
+import com.mebigfatguy.patchanim.encoders.APngEncoder;
+import com.mebigfatguy.patchanim.encoders.MngEncoder;
import com.mebigfatguy.patchanim.AnimationType;
import com.mebigfatguy.patchanim.ExportType;
import com.mebigfatguy.patchanim.OutOfBoundsColor;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 04:55:33
|
Revision: 171
http://patchanim.svn.sourceforge.net/patchanim/?rev=171&view=rev
Author: dbrosius
Date: 2008-02-11 20:55:36 -0800 (Mon, 11 Feb 2008)
Log Message:
-----------
move encoders under patchanim
Added Paths:
-----------
trunk/patchanim/src/com/mebigfatguy/patchanim/encoders/
Removed Paths:
-------------
trunk/patchanim/src/com/mebigfatguy/encoders/
Copied: trunk/patchanim/src/com/mebigfatguy/patchanim/encoders (from rev 170, trunk/patchanim/src/com/mebigfatguy/encoders)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 04:43:56
|
Revision: 170
http://patchanim.svn.sourceforge.net/patchanim/?rev=170&view=rev
Author: dbrosius
Date: 2008-02-11 20:44:01 -0800 (Mon, 11 Feb 2008)
Log Message:
-----------
doc mngs
Modified Paths:
--------------
trunk/patchanim/htdocs/index.html
Modified: trunk/patchanim/htdocs/index.html
===================================================================
--- trunk/patchanim/htdocs/index.html 2008-02-12 04:43:01 UTC (rev 169)
+++ trunk/patchanim/htdocs/index.html 2008-02-12 04:44:01 UTC (rev 170)
@@ -20,7 +20,7 @@
<p>This tool creates a sequence of color blends using
<a href="http://en.wikipedia.org/wiki/B%C3%A9zier_surface">Bezier Patches</a>. This sequence of blends is tweened and
- animated giving smooth transitions from one blend to another. Blend animations can be outputted to animated gifs, animated pngs
+ animated giving smooth transitions from one blend to another. Blend animations can be outputted to animated gifs, animated pngs, animated mngs
or a series of gifs, pngs or jpegs.</p>
<div style="position:relative;left:100;"><img src="animation.gif"/></div>
<p>Unfortunately gif files are 256 color images, and so you get some grainyness. If you have
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 04:42:58
|
Revision: 169
http://patchanim.svn.sourceforge.net/patchanim/?rev=169&view=rev
Author: dbrosius
Date: 2008-02-11 20:43:01 -0800 (Mon, 11 Feb 2008)
Log Message:
-----------
don't close the window if canceled
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java 2008-02-12 04:24:08 UTC (rev 168)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimFrame.java 2008-02-12 04:43:01 UTC (rev 169)
@@ -35,6 +35,7 @@
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.SwingUtilities;
+import javax.swing.WindowConstants;
import javax.swing.filechooser.FileFilter;
import com.mebigfatguy.patchanim.ExportType;
@@ -128,6 +129,7 @@
}
private void initListeners() {
+ setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent we) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-12 04:24:14
|
Revision: 168
http://patchanim.svn.sourceforge.net/patchanim/?rev=168&view=rev
Author: dbrosius
Date: 2008-02-11 20:24:08 -0800 (Mon, 11 Feb 2008)
Log Message:
-----------
add some tooltips
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchControlPanel.java
trunk/patchanim/src/com/mebigfatguy/patchanim/main/PatchAnimBundle.java
trunk/patchanim/src/com/mebigfatguy/patchanim/resources.properties
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchControlPanel.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchControlPanel.java 2008-02-11 04:16:56 UTC (rev 167)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchControlPanel.java 2008-02-12 04:24:08 UTC (rev 168)
@@ -77,6 +77,8 @@
widthLabel = new JLabel(rb.getString(PatchAnimBundle.WIDTH));
widthField = new JTextField(new IntegerDocument(), "", 8);
widthLabel.setLabelFor(widthField);
+ widthField.setToolTipText(rb.getString(PatchAnimBundle.WIDTH_TT));
+
JPanel p = Utils.createFormPanel(widthLabel, widthField);
Utils.limitPanelHeight(p, widthField);
@@ -87,6 +89,7 @@
heightLabel = new JLabel(rb.getString(PatchAnimBundle.HEIGHT));
heightField = new JTextField(new IntegerDocument(), "", 8);
heightLabel.setLabelFor(heightField);
+ heightField.setToolTipText(rb.getString(PatchAnimBundle.HEIGHT_TT));
JPanel p = Utils.createFormPanel(heightLabel, heightField);
Utils.limitPanelHeight(p, heightField);
@@ -99,6 +102,7 @@
AnimationType.Cycle,
AnimationType.Wave });
animationLabel.setLabelFor(animationCB);
+ animationCB.setToolTipText(rb.getString(PatchAnimBundle.ANIMATION_TT));
JPanel p = Utils.createFormPanel(animationLabel, animationCB);
Utils.limitPanelHeight(p, animationCB);
@@ -109,6 +113,7 @@
outOfBoundsLabel = new JLabel(rb.getString(PatchAnimBundle.OUTOFBOUNDSCOLOR));
outOfBoundsColorCB = new JComboBox(new Object[] { OutOfBoundsColor.Clip,
OutOfBoundsColor.Roll });
+ outOfBoundsColorCB.setToolTipText(rb.getString(PatchAnimBundle.OUTOFBOUNDSCOLOR_TT));
outOfBoundsLabel.setLabelFor(outOfBoundsColorCB);
JPanel p = Utils.createFormPanel(outOfBoundsLabel, outOfBoundsColorCB);
Utils.limitPanelHeight(p, outOfBoundsColorCB);
@@ -119,6 +124,7 @@
tweenFramesLabel = new JLabel(rb.getString(PatchAnimBundle.TWEENFRAMES));
tweenFramesField = new JTextField(new IntegerDocument(), "", 8);
tweenFramesLabel.setLabelFor(tweenFramesField);
+ tweenFramesField.setToolTipText(rb.getString(PatchAnimBundle.TWEENFRAMES_TT));
JPanel p = Utils.createFormPanel(tweenFramesLabel, tweenFramesField);
Utils.limitPanelHeight(p, tweenFramesField);
add(p);
@@ -126,6 +132,7 @@
add(Box.createVerticalStrut(5));
testButton = new JButton(rb.getString(PatchAnimBundle.TEST));
+ testButton.setToolTipText(rb.getString(PatchAnimBundle.TEST_TT));
add(testButton);
Utils.sizeUniformly(new JComponent[] { widthLabel, heightLabel, animationLabel, outOfBoundsLabel, tweenFramesLabel }, Utils.Sizing.Both);
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/main/PatchAnimBundle.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/main/PatchAnimBundle.java 2008-02-11 04:16:56 UTC (rev 167)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/main/PatchAnimBundle.java 2008-02-12 04:24:08 UTC (rev 168)
@@ -47,16 +47,22 @@
public static final String CONTROLS = "patchanim.control";
public static final String PATCHES = "patchanim.patches";
public static final String WIDTH = "patchanim.width";
+ public static final String WIDTH_TT = "patchanim.tooltip.width";
public static final String HEIGHT = "patchanim.height";
+ public static final String HEIGHT_TT = "patchanim.tooltip.height";
public static final String ANIMATION = "patchanim.animation";
+ public static final String ANIMATION_TT = "patchanim.tooltip.animation";
public static final String NONE = "patchanim.none";
public static final String CYCLE = "patchanim.cycle";
public static final String WAVE = "patchanim.wave";
public static final String OUTOFBOUNDSCOLOR = "patchanim.outofboundscolor";
+ public static final String OUTOFBOUNDSCOLOR_TT = "patchanim.tooltip.outofboundscolor";
public static final String CLIP = "patchanim.clip";
public static final String ROLL = "patchanim.roll";
public static final String TWEENFRAMES = "patchanim.tween";
+ public static final String TWEENFRAMES_TT = "patchanim.tooltip.tween";
public static final String TEST = "patchanim.test";
+ public static final String TEST_TT = "patchanim.tooltip.test";
public static final String STOP = "patchanim.stop";
public static final String DEFAULTPATCHNAME = "patchanim.defaultpatchname";
public static final String ENTERNEWPATCHNAME = "patchanim.enternewpatchname";
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/resources.properties
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/resources.properties 2008-02-11 04:16:56 UTC (rev 167)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/resources.properties 2008-02-12 04:24:08 UTC (rev 168)
@@ -40,16 +40,22 @@
patchanim.control = Controls
patchanim.patches = Patches
patchanim.width = Width
+patchanim.tooltip.width = The width of the exported animation
patchanim.height = Height
+patchanim.tooltip.height = The height of the exported animation
patchanim.animation = Animation Repeat
+patchanim.tooltip.animation = The type of repetition that the animation uses
patchanim.none = None
patchanim.cycle = Cycle
patchanim.wave = Wave
patchanim.outofboundscolor = Out Of Bounds Color
+patchanim.tooltip.outofboundscolor = How colors that are out of the range of 0 - 255 are handled
patchanim.clip = Clip
patchanim.roll = Roll
patchanim.tween = In-between frames
+patchanim.tooltip.tween = How many frames are generated as transitions from one patch to the next
patchanim.test = Test
+patchanim.tooltip.test = Test the animation using the export settings
patchanim.stop = Stop
patchanim.defaultpatchname = Patch Coordinates
patchanim.enternewpatchname = Rename Patch to
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-11 04:16:51
|
Revision: 167
http://patchanim.svn.sourceforge.net/patchanim/?rev=167&view=rev
Author: dbrosius
Date: 2008-02-10 20:16:56 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
update to the new analytics scripts
Modified Paths:
--------------
trunk/patchanim/htdocs/index.html
Modified: trunk/patchanim/htdocs/index.html
===================================================================
--- trunk/patchanim/htdocs/index.html 2008-02-11 03:26:36 UTC (rev 166)
+++ trunk/patchanim/htdocs/index.html 2008-02-11 04:16:56 UTC (rev 167)
@@ -65,11 +65,14 @@
<img src="sample.jpg"/>
<p><table cellpadding="10"><tr><td><img src="nameediting.jpg"/></td><td><img src="patchediting.jpg"/></td></tr></table></p>
</div>
- <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
+ <script type="text/javascript">
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
- _uacct = "UA-249537-2";
- urchinTracker();
+ var pageTracker = _gat._getTracker("UA-249537-2");
+ pageTracker._initData();
+ pageTracker._trackPageview();
</script>
</body>
</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-11 03:26:31
|
Revision: 166
http://patchanim.svn.sourceforge.net/patchanim/?rev=166&view=rev
Author: dbrosius
Date: 2008-02-10 19:26:36 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
add google analytics
Modified Paths:
--------------
trunk/patchanim/htdocs/index.html
Modified: trunk/patchanim/htdocs/index.html
===================================================================
--- trunk/patchanim/htdocs/index.html 2008-02-11 00:17:49 UTC (rev 165)
+++ trunk/patchanim/htdocs/index.html 2008-02-11 03:26:36 UTC (rev 166)
@@ -65,5 +65,11 @@
<img src="sample.jpg"/>
<p><table cellpadding="10"><tr><td><img src="nameediting.jpg"/></td><td><img src="patchediting.jpg"/></td></tr></table></p>
</div>
+ <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
+ </script>
+ <script type="text/javascript">
+ _uacct = "UA-249537-2";
+ urchinTracker();
+ </script>
</body>
</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-11 00:17:45
|
Revision: 165
http://patchanim.svn.sourceforge.net/patchanim/?rev=165&view=rev
Author: dbrosius
Date: 2008-02-10 16:17:49 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
deleted - file is generated from etc dir now
Removed Paths:
-------------
trunk/patchanim/htdocs/jnlp/patchanim.jnlp
Deleted: trunk/patchanim/htdocs/jnlp/patchanim.jnlp
===================================================================
--- trunk/patchanim/htdocs/jnlp/patchanim.jnlp 2008-02-11 00:16:49 UTC (rev 164)
+++ trunk/patchanim/htdocs/jnlp/patchanim.jnlp 2008-02-11 00:17:49 UTC (rev 165)
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<jnlp
- spec="1.0+"
- codebase="http://patchanim.sourceforge.net/jnlp"
- href="patchanim.jnlp">
- <information>
- <title>PatchAnim</title>
- <vendor>MeBigFatGuy.com</vendor>
- <homepage href="http://patchanim.sourceforge.net"/>
- <description>Bezier Surface Patch Blend creation tool</description>
- <description kind="short">A tool for creating animated color blends based on Bezier Surface patches</description>
- <offline-allowed/>
- </information>
- <security>
- <all-permissions/>
- </security>
- <resources>
- <j2se version="1.5+" initial-heap-size="300m" max-heap-size="800m"/>
- <jar href="patchanim-0.7.0.jar"/>
- <jar href="xml-apis.jar"/>
- <jar href="xalan.jar"/>
- <jar href="xercesImpl.jar"/>
- <jar href="serializer.jar"/>
- </resources>
- <application-desc main-class="com.mebigfatguy.patchanim.main.PatchMain"/>
-</jnlp>
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-11 00:16:43
|
Revision: 164
http://patchanim.svn.sourceforge.net/patchanim/?rev=164&view=rev
Author: dbrosius
Date: 2008-02-10 16:16:49 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
copy the jnlp to the deploy directory and inject the version automagically
Modified Paths:
--------------
trunk/patchanim/build.xml
Modified: trunk/patchanim/build.xml
===================================================================
--- trunk/patchanim/build.xml 2008-02-11 00:16:20 UTC (rev 163)
+++ trunk/patchanim/build.xml 2008-02-11 00:16:49 UTC (rev 164)
@@ -26,6 +26,7 @@
<property name="src.dir" value="${basedir}/src"/>
<property name="classes.dir" value="${basedir}/classes"/>
<property name="lib.dir" value="${basedir}/lib"/>
+ <property name="etc.dir" value="${basedir}/etc"/>
<property name="htdocs.dir" value="${basedir}/htdocs"/>
<property name="jnlp.dir" value="${htdocs.dir}/jnlp"/>
<property name="javadoc.dir" value="${htdocs.dir}/javadoc"/>
@@ -40,7 +41,10 @@
<delete dir="${classes.dir}"/>
<delete dir="${javadoc.dir}"/>
<delete>
- <fileset dir="${jnlp.dir}" includes="patchanim*.jar"/>
+ <fileset dir="${jnlp.dir}">
+ <include name="patchanim*.jar"/>
+ <include name="*.jnlp"/>
+ </fileset>
</delete>
<delete>
<fileset dir="${basedir}" includes="*.zip"/>
@@ -79,6 +83,18 @@
</fileset>
</copy>
<echo message="${patchanim.version}" file="${classes.dir}/com/mebigfatguy/patchanim/io/Version.txt"/>
+ <copy todir="${jnlp.dir}">
+ <fileset dir="${etc.dir}">
+ <include name="*.jnlp"/>
+ </fileset>
+ </copy>
+ <replaceregexp byline="true">
+ <regexp pattern="\$VERSION"/>
+ <substitution expression="${patchanim.version}"/>
+ <fileset dir="${jnlp.dir}">
+ <include name="*.jnlp"/>
+ </fileset>
+ </replaceregexp>
</target>
<target name="jar" depends="compile, resources" description="produces the patchanim jar file">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-11 00:16:15
|
Revision: 163
http://patchanim.svn.sourceforge.net/patchanim/?rev=163&view=rev
Author: dbrosius
Date: 2008-02-10 16:16:20 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
move jnlp template to etc directory, and dynamically inject the version
Added Paths:
-----------
trunk/patchanim/etc/
trunk/patchanim/etc/patchanim.jnlp
Added: trunk/patchanim/etc/patchanim.jnlp
===================================================================
--- trunk/patchanim/etc/patchanim.jnlp (rev 0)
+++ trunk/patchanim/etc/patchanim.jnlp 2008-02-11 00:16:20 UTC (rev 163)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp
+ spec="1.0+"
+ codebase="http://patchanim.sourceforge.net/jnlp"
+ href="patchanim.jnlp">
+ <information>
+ <title>PatchAnim</title>
+ <vendor>MeBigFatGuy.com</vendor>
+ <homepage href="http://patchanim.sourceforge.net"/>
+ <description>Bezier Surface Patch Blend creation tool</description>
+ <description kind="short">A tool for creating animated color blends based on Bezier Surface patches</description>
+ <offline-allowed/>
+ </information>
+ <security>
+ <all-permissions/>
+ </security>
+ <resources>
+ <j2se version="1.5+" initial-heap-size="300m" max-heap-size="800m"/>
+ <jar href="patchanim-$VERSION.jar"/>
+ <jar href="xml-apis.jar"/>
+ <jar href="xalan.jar"/>
+ <jar href="xercesImpl.jar"/>
+ <jar href="serializer.jar"/>
+ </resources>
+ <application-desc main-class="com.mebigfatguy.patchanim.main.PatchMain"/>
+</jnlp>
+
Property changes on: trunk/patchanim/etc/patchanim.jnlp
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-11 00:03:05
|
Revision: 162
http://patchanim.svn.sourceforge.net/patchanim/?rev=162&view=rev
Author: dbrosius
Date: 2008-02-10 16:03:09 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
delete old versions of patchanim jars and zips
Modified Paths:
--------------
trunk/patchanim/build.xml
Modified: trunk/patchanim/build.xml
===================================================================
--- trunk/patchanim/build.xml 2008-02-10 23:53:25 UTC (rev 161)
+++ trunk/patchanim/build.xml 2008-02-11 00:03:09 UTC (rev 162)
@@ -39,9 +39,12 @@
<target name="clean" description="removes all generated collateral">
<delete dir="${classes.dir}"/>
<delete dir="${javadoc.dir}"/>
- <delete file="${jnlp.dir}/patchanim-${patchanim.version}.jar"/>
- <delete file="${basedir}/patchanim-src-${patchanim.version}.zip"/>
- <delete file="${basedir}/patchanim-bin-${patchanim.version}.zip"/>
+ <delete>
+ <fileset dir="${jnlp.dir}" includes="patchanim*.jar"/>
+ </delete>
+ <delete>
+ <fileset dir="${basedir}" includes="*.zip"/>
+ </delete>
</target>
<target name="-init" description="prepares repository for a build">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-10 23:53:22
|
Revision: 161
http://patchanim.svn.sourceforge.net/patchanim/?rev=161&view=rev
Author: dbrosius
Date: 2008-02-10 15:53:25 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
build the zips to the root dir
Modified Paths:
--------------
trunk/patchanim/build.xml
Modified: trunk/patchanim/build.xml
===================================================================
--- trunk/patchanim/build.xml 2008-02-10 23:50:04 UTC (rev 160)
+++ trunk/patchanim/build.xml 2008-02-10 23:53:25 UTC (rev 161)
@@ -40,8 +40,8 @@
<delete dir="${classes.dir}"/>
<delete dir="${javadoc.dir}"/>
<delete file="${jnlp.dir}/patchanim-${patchanim.version}.jar"/>
- <delete file="${jnlp.dir}/patchanim-src-${patchanim.version}.zip"/>
- <delete file="${jnlp.dir}/patchanim-bin-${patchanim.version}.zip"/>
+ <delete file="${basedir}/patchanim-src-${patchanim.version}.zip"/>
+ <delete file="${basedir}/patchanim-bin-${patchanim.version}.zip"/>
</target>
<target name="-init" description="prepares repository for a build">
@@ -100,7 +100,7 @@
</target>
<target name="srczip" description="builds the source distribution zip file">
- <zip destfile="${jnlp.dir}/patchanim-src-${patchanim.version}.zip"
+ <zip destfile="${basedir}/patchanim-src-${patchanim.version}.zip"
basedir="${basedir}"
includes="src/**/*.java, src/**/*.properties, src/**/*.gif, src/**/*.xsd, src/**/*.xsl, lib/**/*.jar, *.txt"/>
</target>
@@ -159,7 +159,7 @@
</target>
<target name="binzip" depends="build" description="zips up all jars">
- <zip destfile="${jnlp.dir}/patchanim-bin-${patchanim.version}.zip"
+ <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"/>
</target>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-10 23:50:00
|
Revision: 160
http://patchanim.svn.sourceforge.net/patchanim/?rev=160&view=rev
Author: dbrosius
Date: 2008-02-10 15:50:04 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
move up to 0.7.0
Modified Paths:
--------------
trunk/patchanim/build.xml
trunk/patchanim/htdocs/jnlp/patchanim.jnlp
Modified: trunk/patchanim/build.xml
===================================================================
--- trunk/patchanim/build.xml 2008-02-10 23:32:29 UTC (rev 159)
+++ trunk/patchanim/build.xml 2008-02-10 23:50:04 UTC (rev 160)
@@ -34,7 +34,7 @@
<property name="javac.deprecation" value="on"/>
<property name="javac.debug" value="on"/>
- <property name="patchanim.version" value="0.6.0"/>
+ <property name="patchanim.version" value="0.7.0"/>
<target name="clean" description="removes all generated collateral">
<delete dir="${classes.dir}"/>
Modified: trunk/patchanim/htdocs/jnlp/patchanim.jnlp
===================================================================
--- trunk/patchanim/htdocs/jnlp/patchanim.jnlp 2008-02-10 23:32:29 UTC (rev 159)
+++ trunk/patchanim/htdocs/jnlp/patchanim.jnlp 2008-02-10 23:50:04 UTC (rev 160)
@@ -16,7 +16,7 @@
</security>
<resources>
<j2se version="1.5+" initial-heap-size="300m" max-heap-size="800m"/>
- <jar href="patchanim-0.6.0.jar"/>
+ <jar href="patchanim-0.7.0.jar"/>
<jar href="xml-apis.jar"/>
<jar href="xalan.jar"/>
<jar href="xercesImpl.jar"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-10 23:32:26
|
Revision: 159
http://patchanim.svn.sourceforge.net/patchanim/?rev=159&view=rev
Author: dbrosius
Date: 2008-02-10 15:32:29 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
tag version 0.6.0
Added Paths:
-----------
tags/patchanim/v0_6_0/
Copied: tags/patchanim/v0_6_0 (from rev 158, trunk/patchanim)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-10 23:31:44
|
Revision: 158
http://patchanim.svn.sourceforge.net/patchanim/?rev=158&view=rev
Author: dbrosius
Date: 2008-02-10 15:31:49 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
zip up all the jars into a bin.zip
Modified Paths:
--------------
trunk/patchanim/build.xml
Modified: trunk/patchanim/build.xml
===================================================================
--- trunk/patchanim/build.xml 2008-02-10 23:31:07 UTC (rev 157)
+++ trunk/patchanim/build.xml 2008-02-10 23:31:49 UTC (rev 158)
@@ -41,6 +41,7 @@
<delete dir="${javadoc.dir}"/>
<delete file="${jnlp.dir}/patchanim-${patchanim.version}.jar"/>
<delete file="${jnlp.dir}/patchanim-src-${patchanim.version}.zip"/>
+ <delete file="${jnlp.dir}/patchanim-bin-${patchanim.version}.zip"/>
</target>
<target name="-init" description="prepares repository for a build">
@@ -157,6 +158,12 @@
</signjar>
</target>
- <target name="release" depends="build, jnlp, srczip, javadoc" description="prepares everything for a release"/>
+ <target name="binzip" depends="build" description="zips up all jars">
+ <zip destfile="${jnlp.dir}/patchanim-bin-${patchanim.version}.zip"
+ basedir="${jnlp.dir}"
+ includes="patchanim-${patchanim.version}.jar xml-apis.jar xercesImpl.jar xalan.jar serializer.jar"/>
+ </target>
+
+ <target name="release" depends="build, jnlp, binzip, srczip, javadoc" description="prepares everything for a release"/>
</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-10 23:31:02
|
Revision: 157
http://patchanim.svn.sourceforge.net/patchanim/?rev=157&view=rev
Author: dbrosius
Date: 2008-02-10 15:31:07 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
Removed file/folder
Removed Paths:
-------------
tags/patchanim/v0_6_0/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-02-10 23:23:44
|
Revision: 156
http://patchanim.svn.sourceforge.net/patchanim/?rev=156&view=rev
Author: dbrosius
Date: 2008-02-10 15:23:49 -0800 (Sun, 10 Feb 2008)
Log Message:
-----------
Tag version 0.6.0
Added Paths:
-----------
tags/patchanim/v0_6_0/
Copied: tags/patchanim/v0_6_0 (from rev 155, trunk/patchanim)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|