commit 0d3eac6a22e4d7247492d696c940856063731c30
parent 9be0a7a6d6d2d1b9b0b63d34adb0ee3f5bf81940
Author: paulnasca <paulnasca>
Date: Fri, 27 Aug 2004 18:33:48 +0000
*** empty log message ***
Diffstat:
3 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/HISTORY.txt b/HISTORY.txt
@@ -1,3 +1,14 @@
+2.0.0 (27 Aug 2004)
+ - VST version works (there are some issues/bugs but it works)
+ - Added a advanced Clipboard and Preset module - now is possible to add user preset LFOs,Envelopes, Effects, Oscillators, Resonances, Filters, etc.
+ - Completely removed the *.MAS_ZYN formats (masters, instruments,etc) support; use 2.0.0pre1 and 2.0.0pre2 to convert
+ - Corrected a error to pitch bend on VST plugin (thanks to Krzysztof Korpiela)
+ - Impoved the PADsynth module
+ - Because the PADsynth module takes a time to load, the instrument that contains such modules are shown in different colors
+ - Bugfixes
+ - Other
+
+
2.0.0_pre2 (31 Iul 2004)
- Updated the XMLwrapper to mxml-2.0
- Many bugfixes
diff --git a/bugs.txt b/bugs.txt
@@ -0,0 +1,2 @@
+1) Sometimes when working with banks it crash - don't know why - I tested even with valgrind and I couldn't find out where is the problem (a double delete??)
+2) If the same directory is selected twice on bank roots or preset dir., the same files are shown twice and bad things can happen - I must solve this by comparing the directories (they can me relative directories and absolute dirs.)
diff --git a/src/Misc/XMLwrapper.C b/src/Misc/XMLwrapper.C
@@ -132,7 +132,7 @@ bool XMLwrapper::checkfileinformation(char *filename){
if (root==NULL) {
delete(xmldata);
mxmlDelete(tree);
- tree=NULL;
+ node=root=tree=NULL;
return(false);
};
@@ -142,7 +142,7 @@ bool XMLwrapper::checkfileinformation(char *filename){
if (root==NULL){
delete(xmldata);
mxmlDelete(tree);
- tree=NULL;
+ node=root=tree=NULL;
return(false);
};
@@ -151,7 +151,7 @@ bool XMLwrapper::checkfileinformation(char *filename){
exitbranch();
if (tree!=NULL) mxmlDelete(tree);
delete(xmldata);
- tree=NULL;
+ node=root=tree=NULL;
return(true);
};