Blimp v.1.3.5 (2008-09-29)
Christian Heimke

Christian Heimke commited on 2011-07-15 09:24:16
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.5 date 2008-09-29
7
+-----------------------------
8
+ - new version due to new BlinkenLib 0.1.3 (bug in bbm writing)
9
+
6 10
 version 1.3.4 date 2008-09-14
7 11
 -----------------------------
8 12
  - also setting aspect when resizing to a known format
... ...
@@ -1,5 +1,5 @@
1 1
 # BlinkenLightsInteractiveMovieProgram
2
-# version 1.3.4 date 2008-09-14
2
+# version 1.3.5 date 2008-09-29
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.4 date 2008-09-14
2
+ * version 1.3.5 date 2008-09-29
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
... ...
@@ -210,7 +210,7 @@ public class Blimp extends JApplet
210 210
     labelStatus.setText( "new movie..." );
211 211
     curFile = null;
212 212
     curMovie = new BlinkenMovie( defHeight, defWidth, defChannels, defMaxval );
213
-    curMovie.insertInfo( 0, "creator", "Blimp (version 1.3.4 date 2008-09-14)" );
213
+    curMovie.insertInfo( 0, "creator", "Blimp (version 1.3.5 date 2008-09-29)" );
214 214
     curMovie.insertFrame( 0, new BlinkenFrame( defHeight, defWidth, defChannels, defMaxval, defDuration ) );
215 215
     curMovieChanged = false;
216 216
 
... ...
@@ -1082,7 +1082,7 @@ public class Blimp extends JApplet
1082 1082
   {
1083 1083
     JOptionPane.showMessageDialog( dialogParent,
1084 1084
                                    "BlinkenLightsInteractiveMovieProgram\n" +
1085
-                                   "version 1.3.4 date 2008-09-14\n" +
1085
+                                   "version 1.3.5 date 2008-09-29\n" +
1086 1086
                                    "Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info>\n" +
1087 1087
                                    "Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html\n" +
1088 1088
                                    "a blinkenarea.org project",
... ...
@@ -2078,7 +2078,7 @@ public class Blimp extends JApplet
2078 2078
     //initialize current movie, frame
2079 2079
     curDir = new File( "." );
2080 2080
     curMovie = new BlinkenMovie( defHeight, defWidth, defChannels, defMaxval );
2081
-    curMovie.insertInfo( 0, "creator", "Blimp (version 1.3.4 date 2008-09-14)" );
2081
+    curMovie.insertInfo( 0, "creator", "Blimp (version 1.3.5 date 2008-09-29)" );
2082 2082
     curMovie.insertFrame( 0, new BlinkenFrame( defHeight, defWidth, defChannels, defMaxval, defDuration ) );
2083 2083
     curFrame = null;
2084 2084
 
... ...
@@ -2733,7 +2733,7 @@ public class Blimp extends JApplet
2733 2733
 
2734 2734
     //running as command line tool
2735 2735
     System.out.println( "BlinkenLightsInteractiveMovieProgram\n" +
2736
-                        "version 1.3.4 date 2008-09-14\n" +
2736
+                        "version 1.3.5 date 2008-09-29\n" +
2737 2737
                         "Copyright (C) 2004-2008: Stefan Schuermans <stefan@schuermans.info>\n" +
2738 2738
                         "Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html\n" +
2739 2739
                         "a blinkenarea.org project\n" );
... ...
@@ -2744,7 +2744,7 @@ public class Blimp extends JApplet
2744 2744
 
2745 2745
     //get initial movie
2746 2746
     movie = new BlinkenMovie( defHeight, defWidth, defChannels, defMaxval );
2747
-    movie.insertInfo( 0, "creator", "Blimp (version 1.3.4 date 2008-09-14)" );
2747
+    movie.insertInfo( 0, "creator", "Blimp (version 1.3.5 date 2008-09-29)" );
2748 2748
     movie.insertFrame( 0, new BlinkenFrame( defHeight, defWidth, defChannels, defMaxval, defDuration ) );
2749 2749
 
2750 2750
     //process parameters
... ...
@@ -1,5 +1,5 @@
1 1
 /* BlinkenLightsInteractiveMovieProgram
2
- * version 1.3.4 date 2008-09-14
2
+ * version 1.3.5 date 2008-09-29
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.4 date 2008-09-14
2
+ * version 1.3.5 date 2008-09-29
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.4 date 2008-09-14
2
+ * version 1.3.5 date 2008-09-29
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.4 date 2008-09-14
2
+ * version 1.3.5 date 2008-09-29
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.4 date 2008-09-14
2
+ * version 1.3.5 date 2008-09-29
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.4 date 2008-09-14
2
+ * version 1.3.5 date 2008-09-29
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