BlinkenLibJava v.0.1.3 (2008-09-29)
Christian Heimke

Christian Heimke commited on 2011-07-15 08:56:26
Showing 5 changed files, with 17 additions and 9 deletions.

... ...
@@ -1,8 +1,13 @@
1 1
 BlinkenLightsInteractiveMovieProgram
2
-Copyright (C) 2004-2006: Stefan Schuermans <1stein@schuermans.info>
2
+Copyright (C) 2004-2008: Stefan Schuermans <1stein@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 0.1.3 date 2008-09-29
7
+-----------------------------
8
+ - fixed bug when overwriting bbm files with shorter data
9
+   - tuncation of file after end of data was not done
10
+
6 11
 version 0.1.2 date 2008-08-10
7 12
 -----------------------------
8 13
  - fixed bug in resizing frames if adding channels
... ...
@@ -1,6 +1,6 @@
1 1
 # BlinkenLib
2
-# version 0.1.2 date 2008-08-10
3
-# Copyright (C) 2004-2006: Stefan Schuermans <1stein@schuermans.info>
2
+# version 0.1.3 date 2008-09-29
3
+# Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
4 4
 # Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html
5 5
 # a blinkenarea.org project
6 6
 
... ...
@@ -1,6 +1,6 @@
1 1
 /* BlinkenLib
2
- * version 0.1.2 date 2008-08-10
3
- * Copyright (C) 2004-2006: Stefan Schuermans <1stein@schuermans.info>
2
+ * version 0.1.3 date 2008-09-29
3
+ * Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
4 4
  * Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html
5 5
  * a blinkenarea.org project
6 6
  */
... ...
@@ -1,6 +1,6 @@
1 1
 /* BlinkenLib
2
- * version 0.1.2 date 2008-08-10
3
- * Copyright (C) 2004-2006: Stefan Schuermans <1stein@schuermans.info>
2
+ * version 0.1.3 date 2008-09-29
3
+ * Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
4 4
  * Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html
5 5
  * a blinkenarea.org project
6 6
  */
... ...
@@ -1,6 +1,6 @@
1 1
 /* BlinkenLib
2
- * version 0.1.2 date 2008-08-10
3
- * Copyright (C) 2004-2006: Stefan Schuermans <1stein@schuermans.info>
2
+ * version 0.1.3 date 2008-09-29
3
+ * Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
4 4
  * Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html
5 5
  * a blinkenarea.org project
6 6
  */
... ...
@@ -1130,6 +1130,9 @@ public class BlinkenMovie
1130 1130
       //open file
1131 1131
       file = new RandomAccessFile( filename, "rw" );
1132 1132
 
1133
+      //truncate file
1134
+     file.setLength( 0 );
1135
+
1133 1136
       //write header
1134 1137
       header = new byte[24];
1135 1138
       header[0] = 0x23; //magic
1136 1139