added #73, refactor task handler, fix problem in task manager that caused threads to run in serial, added parameter to alpha:set from mixing source, optimized mask transition, updated status handling in all clients, added new icons, removed obsolete code

This commit is contained in:
niels
2015-12-06 20:32:15 +01:00
parent eba22f0b00
commit 70ddd6dee2
40 changed files with 1398 additions and 674 deletions

View File

@@ -28,7 +28,7 @@
int status_to_arr( char *status, int *array )
{
int n = sscanf(status, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d",
int n = sscanf(status, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d",
array + 0,
array + 1,
array + 2,
@@ -57,7 +57,9 @@ int status_to_arr( char *status, int *array )
array + 25,
array + 26,
array + 27,
array + 28 );
array + 28,
array + 29,
array + 30 );
return n;
}