Skip to content

Commit

Permalink
uploaded the v.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gh0stless committed Jul 18, 2020
1 parent c3e072e commit 879b438
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Installation:

versions history
----------------
* v.1.0 2020-07-18
- 1.0 release
* v.0.9.9 2020-07-09
- some clean up; final 1.0 release candidate
* v.0.9.5 2020-07-08
Expand Down
Binary file modified externals/SID.mxe
Binary file not shown.
Binary file modified externals/SID.mxe64
Binary file not shown.
2 changes: 1 addition & 1 deletion package-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
}
},
"tags" : [ ],
"version" : "0.9.9",
"version" : "1.0",
"website" : "http://www.crazy-midi.de"
}
6 changes: 3 additions & 3 deletions source/SID.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@file
SID.c - a Max/MSP external for SIDBlaster-USB
© 2016-2020 by Andreas Schumm (gh0stless) for www.crazy-midi.de
v.0.9.9 2020-07-09
v.1.0 2020-07-18
*/

#include "ext.h"
Expand All @@ -11,7 +11,7 @@
#include <stddef.h>
#include "SID.h"

const char* version = "v.0.9.9";
const char* version = "v.1.0";
int Number_Of_Instances = 0;
int Number_Of_Devices = 0;
int DLL_Version = 0;
Expand Down Expand Up @@ -222,7 +222,7 @@ void *sid_threadproc(t_sid *x)
systhread_mutex_unlock(x->x_mutex);
}
else {
systhread_sleep(1);
systhread_sleep(4);
}
}
x->x_systhread_cancel = false; // reset cancel flag for next time, in case
Expand Down
8 changes: 8 additions & 0 deletions source/versions history.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
* v.1.0 2020-07-18
- release
* v.0.9.9.3 2020-07-11
- change sleeptime from 2ms to 4ms
* v.0.9.9.2 2020-07-11
- change sleeptime from 3ms to 2ms
* v.0.9.9.1 2020-07-10
- change sleeptime from 1ms to 3ms
* v.0.9.9 2020-07-09
- some clean up
- final 1.0 release candidate
Expand Down

0 comments on commit 879b438

Please sign in to comment.