Skip to content

Commit

Permalink
all changes for the final release 1.3
Browse files Browse the repository at this point in the history
git-svn-id: https://minicomputer.svn.sourceforge.net/svnroot/minicomputer/trunk@97 a4770fbb-0739-0410-ac47-c227fb5b275d
  • Loading branch information
herrsteiner committed Jan 19, 2009
1 parent a85f6a5 commit f830a37
Show file tree
Hide file tree
Showing 4 changed files with 158 additions and 153 deletions.
5 changes: 5 additions & 0 deletions CHANGES
@@ -1,3 +1,8 @@
1.3 19.Januar 2009
- improved: envelopes, now more exponential behaviour, changed range of decay knobs
- fix: some compiling troubles with new GCC because of old includes
- fix: changed a bit the presets for fitting better together volumewise

1.2 1.May 2008
- new: installer/deinstaller
- new: installerscript for presets
Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,4 +1,4 @@
Minicomputer v. 1.2
Minicomputer v. 1.3
Industrial Grade Digital Synthesizer

by Malte Steiner
Expand Down
16 changes: 8 additions & 8 deletions editor/syntheditor.cxx
Expand Up @@ -2249,7 +2249,7 @@ Fenster* UserInterface::make_window() {
o->labelsize(8);
o->argument(61);
o->minimum(0.15);
o->maximum(0.02);
o->maximum(0.01);

o->callback((Fl_Callback*)callback);
Knob[i][o->argument()] = o;
Expand Down Expand Up @@ -2292,7 +2292,7 @@ Fenster* UserInterface::make_window() {
{ Fl_Dial* o = new Fl_Dial(648, 96, 25, 25, "D");
o->labelsize(8);o->argument(66);
o->minimum(0.15);
o->maximum(0.02);
o->maximum(0.01);
o->callback((Fl_Callback*)callback);Knob[i][o->argument()] = o;
}
{ Fl_Dial* o = new Fl_Dial(678, 96, 25, 25, "S");
Expand Down Expand Up @@ -2327,7 +2327,7 @@ Fenster* UserInterface::make_window() {
{ Fl_Dial* o = new Fl_Dial(648, 153, 25, 25, "D");
o->labelsize(8);o->argument(71);
o->minimum(0.15);
o->maximum(0.02);
o->maximum(0.01);
o->callback((Fl_Callback*)callback);Knob[i][o->argument()] = o;
}
{ Fl_Dial* o = new Fl_Dial(678, 153, 25, 25, "S");
Expand Down Expand Up @@ -2362,7 +2362,7 @@ Fenster* UserInterface::make_window() {
{ Fl_Dial* o = new Fl_Dial(648, 210, 25, 25, "D");
o->labelsize(8);o->argument(76);
o->minimum(0.15);
o->maximum(0.02);
o->maximum(0.01);
o->callback((Fl_Callback*)callback);Knob[i][o->argument()] = o;
}
{ Fl_Dial* o = new Fl_Dial(678, 210, 25, 25, "S");
Expand Down Expand Up @@ -2397,7 +2397,7 @@ Fenster* UserInterface::make_window() {
{ Fl_Dial* o = new Fl_Dial(648, 269, 25, 25, "D");
o->labelsize(8);o->argument(81);
o->minimum(0.15);
o->maximum(0.02);
o->maximum(0.01);
o->callback((Fl_Callback*)callback);Knob[i][o->argument()] = o;
}
{ Fl_Dial* o = new Fl_Dial(678, 269, 25, 25, "S");
Expand Down Expand Up @@ -2434,7 +2434,7 @@ Fenster* UserInterface::make_window() {
{ Fl_Dial* o = new Fl_Dial(648, 330, 25, 25, "D");
o->labelsize(8);o->argument(86);
o->minimum(0.15);
o->maximum(0.02);
o->maximum(0.01);
o->callback((Fl_Callback*)callback);Knob[i][o->argument()] = o;
}
{ Fl_Dial* o = new Fl_Dial(678, 330, 25, 25, "S");
Expand Down Expand Up @@ -2620,7 +2620,7 @@ Fenster* UserInterface::make_window() {
{ Fl_Dial* o = new Fl_Dial(874, 103, 25, 25, "D");
o->labelsize(8);o->argument(103);
o->minimum(0.15);
o->maximum(0.02);
o->maximum(0.01);
o->callback((Fl_Callback*)callback);Knob[i][o->argument()] = o;
}
{ Fl_Dial* o = new Fl_Dial(904, 103, 25, 25, "S");
Expand Down Expand Up @@ -2811,7 +2811,7 @@ Fenster* UserInterface::make_window() {
o->labelcolor(FL_BACKGROUND2_COLOR);
char Textausgabe[400];
char version[] = _VERSION;
sprintf(Textausgabe,"<html><body><i><center>version %s</center></i><br><p><br>a standalone industrial grade softwaresynthesizer for Linux<br><p><br>developed by Malte Steiner 2007/2008<p>distributed as free open source software under GPL3 licence<br><p>contact:<br><center>steiner@block4.com<br>http://www.block4.com<br>http://minicomputer.sourceforge.net</center></body></html>",version);
sprintf(Textausgabe,"<html><body><i><center>version %s</center></i><br><p><br>a standalone industrial grade softwaresynthesizer for Linux<br><p><br>developed by Malte Steiner 2007-2009<p>distributed as free open source software under GPL3 licence<br><p>contact:<br><center>steiner@block4.com<br>http://www.block4.com<br>http://minicomputer.sourceforge.net</center></body></html>",version);
o->value(Textausgabe);
}
o->end();
Expand Down

0 comments on commit f830a37

Please sign in to comment.