BlinkenLibJava v.0.1.4 (2008-11-21)
Christian Heimke

Christian Heimke commited on 2011-07-15 08:56:53
Showing 5 changed files, with 14 additions and 10 deletions.

... ...
@@ -1,8 +1,12 @@
1 1
 BlinkenLightsInteractiveMovieProgram
2
-Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
2
+Copyright (C) 2004-2009: 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 0.1.4 date 2009-11-21
7
+-----------------------------
8
+ - fixed bug in resizing when increasing number of channels
9
+
6 10
 version 0.1.3 date 2008-09-29
7 11
 -----------------------------
8 12
  - fixed bug when overwriting bbm files with shorter data
... ...
@@ -1,6 +1,6 @@
1 1
 # BlinkenLib
2
-# version 0.1.3 date 2008-09-29
3
-# Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
2
+# version 0.1.4 date 2009-11-21
3
+# Copyright (C) 2004-2009: 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
 
... ...
@@ -1,6 +1,6 @@
1 1
 /* BlinkenLib
2
- * version 0.1.3 date 2008-09-29
3
- * Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
2
+ * version 0.1.4 date 2009-11-21
3
+ * Copyright (C) 2004-2009: 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
  */
... ...
@@ -1,6 +1,6 @@
1 1
 /* BlinkenLib
2
- * version 0.1.3 date 2008-09-29
3
- * Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
2
+ * version 0.1.4 date 2009-11-21
3
+ * Copyright (C) 2004-2009: 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
  */
... ...
@@ -233,7 +233,7 @@ public class BlinkenFrame
233 233
           for( c = 0; c < this.channels; c++ )
234 234
             new_data[emptyY + y][destI + c] = (byte)((((int)data[skipY + y][srcI + c] & 0xFF) * maxval + this.maxval / 2) / this.maxval);
235 235
 	  for( ; c < channels; c++ )
236
-	    new_data[emptyY + y][destI + c] = new_data[emptyY + y][srcI + this.channels - 1];
236
+	    new_data[emptyY + y][destI + c] = new_data[emptyY + y][destI + this.channels - 1];
237 237
 	}
238 238
 	else //remove channels: merge leftover channels with last kept channel
239 239
 	{
... ...
@@ -1,6 +1,6 @@
1 1
 /* BlinkenLib
2
- * version 0.1.3 date 2008-09-29
3
- * Copyright (C) 2004-2008: Stefan Schuermans <1stein@schuermans.info>
2
+ * version 0.1.4 date 2009-11-21
3
+ * Copyright (C) 2004-2009: 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
  */
7 7