added missing status output for BlinkenConv -C
Stefan Schuermans

Stefan Schuermans commited on 2011-11-19 13:13:07
Showing 3 changed files, with 7 additions and 1 deletions.

... ...
@@ -147,6 +147,8 @@ static void copy_rect(stBlinkenMovie *pMovie, char *str_file,
147 147
 
148 148
       BlinkenMovieCopyRect(pMovie, dy, dx, pSrcMovie, sy, sx, h, w);
149 149
       BlinkenMovieFree(pSrcMovie);
150
+      printf("copied %ux%u pixels from movie \"%s\" %u,%u to %u,%u\n",
151
+             w, h, str_file, sx, sy, dx, dy );
150 152
 
151 153
     }
152 154
   }
... ...
@@ -1,3 +1,7 @@
1
+0.7.1 2011-11-19
2
+----------------
3
+added missing status output for BlinkenConv -C
4
+
1 5
 0.7.0 2011-11-15
2 6
 ----------------
3 7
 added support for creating/detecting blinken protocol control frames
... ...
@@ -1,5 +1,5 @@
1 1
 VERSION_MAJOR=0
2 2
 VERSION_MINOR=7
3
-VERSION_REVISION=0
3
+VERSION_REVISION=1
4 4
 VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_REVISION)
5 5
 
6 6