Christian Heimke commited on 2011-07-15 09:23:41
Showing 9 changed files, with 17 additions and 13 deletions.
... | ... |
@@ -3,6 +3,10 @@ Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
3 | 3 |
Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
4 | 4 |
a blinkenarea.org project |
5 | 5 |
|
6 |
+version 1.3.3 date 2008-08-10 |
|
7 |
+----------------------------- |
|
8 |
+ - new release due to new BlinkenLib 0.1.2 (bug in resizing) |
|
9 |
+ |
|
6 | 10 |
version 1.3.2 date 2008-02-23 |
7 | 11 |
----------------------------- |
8 | 12 |
- added menu items for known formats |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
# BlinkenLightsInteractiveMovieProgram |
2 |
-# version 1.3.2 date 2008-02-23 |
|
2 |
+# version 1.3.3 date 2008-08-10 |
|
3 | 3 |
# Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
4 | 4 |
# Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
# a blinkenarea.org project |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLightsInteractiveMovieProgram |
2 |
- * version 1.3.2 date 2008-02-23 |
|
2 |
+ * version 1.3.3 date 2008-08-10 |
|
3 | 3 |
* Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
... | ... |
@@ -201,7 +201,7 @@ public class Blimp extends JApplet |
201 | 201 |
labelStatus.setText( "new movie..." ); |
202 | 202 |
curFile = null; |
203 | 203 |
curMovie = new BlinkenMovie( defHeight, defWidth, defChannels, defMaxval ); |
204 |
- curMovie.insertInfo( 0, "creator", "Blimp (version 1.3.2 date 2008-02-23)" ); |
|
204 |
+ curMovie.insertInfo( 0, "creator", "Blimp (version 1.3.3 date 2008-08-10)" ); |
|
205 | 205 |
curMovie.insertFrame( 0, new BlinkenFrame( defHeight, defWidth, defChannels, defMaxval, defDuration ) ); |
206 | 206 |
curMovieChanged = false; |
207 | 207 |
|
... | ... |
@@ -1030,7 +1030,7 @@ public class Blimp extends JApplet |
1030 | 1030 |
{ |
1031 | 1031 |
JOptionPane.showMessageDialog( dialogParent, |
1032 | 1032 |
"BlinkenLightsInteractiveMovieProgram\n" + |
1033 |
- "version 1.3.2 date 2008-02-23\n" + |
|
1033 |
+ "version 1.3.3 date 2008-08-10\n" + |
|
1034 | 1034 |
"Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info>\n" + |
1035 | 1035 |
"Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html\n" + |
1036 | 1036 |
"a blinkenarea.org project", |
... | ... |
@@ -2013,7 +2013,7 @@ public class Blimp extends JApplet |
2013 | 2013 |
//initialize current movie, frame |
2014 | 2014 |
curDir = new File( "." ); |
2015 | 2015 |
curMovie = new BlinkenMovie( defHeight, defWidth, defChannels, defMaxval ); |
2016 |
- curMovie.insertInfo( 0, "creator", "Blimp (version 1.3.2 date 2008-02-23)" ); |
|
2016 |
+ curMovie.insertInfo( 0, "creator", "Blimp (version 1.3.3 date 2008-08-10)" ); |
|
2017 | 2017 |
curMovie.insertFrame( 0, new BlinkenFrame( defHeight, defWidth, defChannels, defMaxval, defDuration ) ); |
2018 | 2018 |
curFrame = null; |
2019 | 2019 |
|
... | ... |
@@ -2668,7 +2668,7 @@ public class Blimp extends JApplet |
2668 | 2668 |
|
2669 | 2669 |
//running as command line tool |
2670 | 2670 |
System.out.println( "BlinkenLightsInteractiveMovieProgram\n" + |
2671 |
- "version 1.3.2 date 2008-02-23\n" + |
|
2671 |
+ "version 1.3.3 date 2008-08-10\n" + |
|
2672 | 2672 |
"Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info>\n" + |
2673 | 2673 |
"Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html\n" + |
2674 | 2674 |
"a blinkenarea.org project\n" ); |
... | ... |
@@ -2679,7 +2679,7 @@ public class Blimp extends JApplet |
2679 | 2679 |
|
2680 | 2680 |
//get initial movie |
2681 | 2681 |
movie = new BlinkenMovie( defHeight, defWidth, defChannels, defMaxval ); |
2682 |
- movie.insertInfo( 0, "creator", "Blimp (version 1.3.2 date 2008-02-23)" ); |
|
2682 |
+ movie.insertInfo( 0, "creator", "Blimp (version 1.3.3 date 2008-08-10)" ); |
|
2683 | 2683 |
movie.insertFrame( 0, new BlinkenFrame( defHeight, defWidth, defChannels, defMaxval, defDuration ) ); |
2684 | 2684 |
|
2685 | 2685 |
//process parameters |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLightsInteractiveMovieProgram |
2 |
- * version 1.3.2 date 2008-02-23 |
|
2 |
+ * version 1.3.3 date 2008-08-10 |
|
3 | 3 |
* Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLightsInteractiveMovieProgram |
2 |
- * version 1.3.2 date 2008-02-23 |
|
2 |
+ * version 1.3.3 date 2008-08-10 |
|
3 | 3 |
* Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLightsInteractiveMovieProgram |
2 |
- * version 1.3.2 date 2008-02-23 |
|
2 |
+ * version 1.3.3 date 2008-08-10 |
|
3 | 3 |
* Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLightsInteractiveMovieProgram |
2 |
- * version 1.3.2 date 2008-02-23 |
|
2 |
+ * version 1.3.3 date 2008-08-10 |
|
3 | 3 |
* Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLightsInteractiveMovieProgram |
2 |
- * version 1.3.2 date 2008-02-23 |
|
2 |
+ * version 1.3.3 date 2008-08-10 |
|
3 | 3 |
* Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLightsInteractiveMovieProgram |
2 |
- * version 1.3.2 date 2008-02-23 |
|
2 |
+ * version 1.3.3 date 2008-08-10 |
|
3 | 3 |
* Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
6 | 6 |