/[svn]/qsampler/trunk/ChangeLog
ViewVC logotype

Diff of /qsampler/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 957 by capela, Wed Nov 29 11:48:26 2006 UTC revision 1840 by capela, Thu Feb 19 11:44:57 2009 UTC
# Line 5  ChangeLog Line 5  ChangeLog
5    
6  CVS HEAD  CVS HEAD
7    
8  * Added preliminary MIDI instrument mapping support.  * Converted obsolete QMessageBox forms to standard buttons.
9    
10  - GPL address update.  * Added support for runtime max. voices / disk streams setting
11      (accessible from the "Options..." dialog). Those fine tuning
12      settings will be saved in case the user modified them and
13      automatically restored to the sampler when reconnecting to
14      a sampler the next time.
15    
16    * Grayed/disabled palette color group fix for dark color themes.
17    
18    * Fait-divers: desktop menu file touched to openSUSE conventions.
19    
20    * Due to some trouble with newer Qt >= 4.4 applications regarding
21      font size configuration, a new global user option is now available
22      to the rescue: View/Options... /Display/Other/Base font size
23      (default none).
24    
25    * Attempt to load Qt's own translation support and get rid of
26      the ever warning startup message, unless built in debug mode.
27      (transaction by Guido Scholz, while on qsynth-devel, thanks).
28    
29    * Only one application instance is now allowed to be up and
30      running, with immediate but graceful termination upon startup
31      iif an already running instance is detected, which will see its
32      main widget shown up automatically (Qt/X11 platform only).
33    
34    * Messages file logging makes its first long overdue appearance,
35      with user configurable settings in View/Options.../Server/Logging.
36    
37    * Bugfix in sampler channel dialog, driver combo boxes' content were
38      screwed.
39    
40    * Automatically add & remove channel strips as they were removed
41      e.g. by other frontends.
42    
43    * Refresh device management dialog when device informations changed,
44      e.g. on changes caused by other frontends
45      (fixes segfault on device changes)
46    
47    * Implemented MIDI device activity windows, selectable from the
48      "View" main menu.
49    
50    * Implemented MIDI activity indicator on channel strips.
51    
52    * Added FX Sends Dialog to Channel Strips.
53    
54    * Color pallete fix for the instrument name display in channel
55      strip, particularly notorious on Mac OS X builds.
56    
57    * Added dialog when the application exits which lets the user
58      decide whether to keep the LinuxSampler running or not.
59    
60    
61    0.2.1  2007-12-06  Qt4 migration was complete.
62    
63    * Added recent new support of libgig for retrieving instrument
64      names in avery fast way. If libgig provides this feature, then
65      the respective name retrieval setting in qsampler is enabled by
66      default.
67    
68    * The current selected/activated channel-strip is now visually
69      evident while in the application workspace (highlighting).
70    
71    * Make View/Menubar and Toolbar shortcuts accessible even though
72      the main menu and toobar are not visible.
73    
74    * Audio routing table is initially hidden in the dialog, when
75      creating a new sampler channel.
76    
77    * README requirements and configuration notes update.
78    
79    * Disable OK button in sampler channel form and MIDI instrument
80      form if no valid engine is selected (to avoid bothering newbie
81      users with confusing LSCP syntax errors when using the UI the
82      first time).
83    
84    * Fixed creation of devices (don't try to set device parameters
85      which the user did not touch in the device creation dialog).
86    
87    * Added Windows file path support.
88    
89    * Fixed win32/qmakefile and win32/config.h so that it compiles
90      under win32.
91    
92    * Qt4 port of the application.
93    
94    
95    0.1.5  2007-10-15 Five months later a fifth is heard.
96    
97    * Added support for LSCP escape sequences to allow loading and
98      mapping instrument files with special characters in their
99      filename, as well as special characters for instrument names
100      and instrument map names (requires LSCP v1.2 on sampler side).
101    
102    * Added new button "Edit" to the channel strips, which probably
103      does exactly what you think it does: it opens an appropriate
104      instrument editor application; the channel instrument editor
105      tool is also accessible from the main menu and toolbar.
106    
107    * Application icon is now installed to ${prefix}/share/pixmaps;
108      application desktop entry file is now included in installation;
109      spec file (RPM) is now a bit more openSUSE compliant.
110    
111    * Crash fix on double-clicking on a empty instrument list.
112    
113    
114    0.1.4  2007-05-04 Almost another year has gone by.
115    
116    * Channel button colors have changed: yellow for mute and
117      cyan for solo is now the rule, but note that this color
118      highlighting is only rendered on some widget styles.
119    
120    * Master sampler volume slider/spinbox combo is now featured.
121    
122    * Initial support for sampler channel FX sends, while saving
123      the session state, only at code-level.
124    
125    * Sampler channel setup dialog does not mandate for valid nor
126      existing instrument file name.
127    
128    * Revised error verbosity in general and on session load/save;
129      hour-glass wait cursor is now displayed on session load/save;
130      keyboard shortcuts changed on MIDI instruments view context;
131      improved channel strip arrangement on session open/load;
132      instrument map entry removal confirmation (as optional);
133      corrected some tooltip text strings.
134    
135    * Most top-level widgets were missing the normal-widget flag,
136      which were causing some sticky size behavior while on some
137      window managers.
138    
139    * Added preliminary MIDI instrument mapping support; now
140      with an instrument list widget and editing capabilities;
141      MIDI instrumeent map program numbers are now displayed in
142      the range 1-128, instead of the internal 0-127.
143    
144    * GPL address update.
145    
146    
147  0.1.3   2006-06-01 Its been a long year isn't it?  0.1.3   2006-06-01 Its been a long year isn't it?
# Line 44  CVS HEAD Line 178  CVS HEAD
178    sample SPEC file for RPM build is now being included and    sample SPEC file for RPM build is now being included and
179    generated at configure time.    generated at configure time.
180    
181  * Set to use QApplication::setMainWidget() instead of  * Set to use QApplication::setMainWidget() instead of
182    registering the traditional lastWindowClosed() signal    registering the traditional lastWindowClosed() signal
183    to quit() slot, just to let the -geometry command line    to quit() slot, just to let the -geometry command line
184    argument have some effect on X11.    argument have some effect on X11.
185    
186  * Added MUTE/SOLO buttons to individual channel strips.  * Added MUTE/SOLO buttons to individual channel strips.
# Line 57  CVS HEAD Line 191  CVS HEAD
191    
192  0.1.2   2005-06-23 Even minor workings needs a rest.  0.1.2   2005-06-23 Even minor workings needs a rest.
193    
194  * Fixed output disability when messages limit option is  * Fixed output disability when messages limit option is
195    turned off (thanks to Wolfgang Woehl for spotting this    turned off (thanks to Wolfgang Woehl for spotting this
196    one, while on qjackctl).    one, while on qjackctl).
197    
# Line 94  CVS HEAD Line 228  CVS HEAD
228    consistency, regarding the enumeration of available    consistency, regarding the enumeration of available
229    sampler engines, Audio and MIDI drivers.    sampler engines, Audio and MIDI drivers.
230    
231  * [bug #13] Update instrument names list when a new  * [bug #13] Update instrument names list when a new
232    instrument file is select on the channel setup dialog.    instrument file is select on the channel setup dialog.
233    
234  * Show appropriate message in channel strip while loading  * Show appropriate message in channel strip while loading
235    an instrument.    an instrument.
236    
237  * Show libgig version in About box (in case libgig is used).  * Show libgig version in About box (in case libgig is used).
238    
# Line 128  CVS HEAD Line 262  CVS HEAD
262    drop is allowed, but it only makes sense for instrument    drop is allowed, but it only makes sense for instrument
263    files, each one prompting to create a new sampler channel.    files, each one prompting to create a new sampler channel.
264    
265  * Drag-and-drop to an existing channel strip is now also  * Drag-and-drop to an existing channel strip is now also
266    featured, allowing the in-place change of the channel    featured, allowing the in-place change of the channel
267    sampler instrument file.    sampler instrument file.
268    
269  * Actual instrument names are now optionally retrieved  * Actual instrument names are now optionally retrieved

Legend:
Removed from v.957  
changed lines
  Added in v.1840

  ViewVC Help
Powered by ViewVC