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

Annotation of /gigedit/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2918 - (hide annotations) (download)
Wed May 18 10:10:25 2016 UTC (7 years, 10 months ago) by schoenebeck
File size: 15143 byte(s)
* Added setting to main menu "View" -> "Auto Restore Window Dimension"
  (disabled by default since it causes issues on some machines).
* Bumped version (1.0.0.svn14).

1 persson 2841 Version SVN HEAD (?)
2    
3 persson 2844 * allow building with G/GDK/GTK_DISABLE_DEPRECATED
4 persson 2841 * fixed building without linuxsampler on Mac
5     * fixed some compiler and cppcheck warnings
6 persson 2845 * avoid using gtk stock items, as they are deprecated in gtk 3.10
7 schoenebeck 2877 * synthesis paremeter page tabs are now scrollable (fixes an issue with
8     GTK 3: default theme uses huge tabs which breaks the overall layout on
9     average window sizes)
10 schoenebeck 2886 * Automake: set environment variable GCC_COLORS=auto to allow GCC to
11     auto detect whether it (sh/c)ould output its messages in color.
12     * NKSP Editor: Added support for liblinuxsampler's NKSP syntax
13     highlighting backend.
14 schoenebeck 2887 * Script Editor: Some color tweaks (using now same text colors as on
15     the NKSP refrence documentation website).
16 schoenebeck 2890 * Script Editor: Added support for liblinuxsampler's NKSP parser
17     backend for displaying parser errors and warnings directly within
18     the source code.
19 schoenebeck 2891 * User settings are now automatically saved and restored.
20 schoenebeck 2895 * Automatically save & restore window size and position.
21 schoenebeck 2897 * Script Editor: Show precise parser error/warning messages as tooltip
22     when the mouse points over the respective location in the script's
23     source code.
24 schoenebeck 2898 * Script Editor: Show a question dialog to the user when the editor is
25     to be closed and the script changes have not been applied yet.
26 schoenebeck 2899 * Script Editor: Added status bar at the bottom of the script editor
27     window showing the amount (if any) of errors and warnings.
28 schoenebeck 2901 * Script Editor: Added menu bar and two initial entries: "Apply" (Ctrl-S)
29 schoenebeck 2903 and "Close" (Ctrl-Q).
30     * Script Editor: if editor is used in live-mode, inform the sampler that
31     it needs to automatically reload the script after the script has been
32     altered and applied with the script editor.
33 schoenebeck 2918 * Added setting to main menu "View" -> "Auto Restore Window Dimension"
34     (disabled by default since it causes issues on some machines).
35 persson 2841
36 schoenebeck 2795 Version 1.0.0 (2015-07-17)
37    
38 persson 2129 * minor fix in configure for cross-compiling
39 persson 2134 * minor Makefile fix for parallel make
40 persson 2151 * use Cairo instead of deprecated gdk drawing primitives
41     * avoid deprecated gtk methods when using newer gtk versions
42     * raised minimum supported gtkmm version to 2.8
43 persson 2169 * ported to gtkmm 3, keeping compatibility with gtkmm 2
44 persson 2246 * gtkmm 3 fix: rewrote the custom widgets (regionchooser and
45     dimregionchooser) so they only draw pixels in the on_draw
46     method. This should make them work again in newer gtkmm 3
47     environments.
48 persson 2325 * added support for new glibmm threads API
49 persson 2344 * gtkmm 3 fix: the WrapLabel custom widget is not needed in gtkmm 3
50 persson 2359 * fixed building on Debian testing (#186)
51 persson 2366 * modernized configure script
52 persson 2392 * added graphical curves for velocity response and crossfade
53 schoenebeck 2395 * added "Duplicate Instrument" function
54 persson 2398 * fixed import of 32 bit float wav files
55 persson 2423 * code refactoring: created a PropEdit class for property editor
56     windows, moved Table class from mainwindow to paramedit
57     * minor gui tweaks: made note entry fields a bit wider, set a
58     minimum width for scales
59     * bug fix: avoid stale information in the instrument properties
60     window when a new file is loaded or the instrument is removed
61 persson 2430 * cross fade graph: draw curves of all layers in the same graph
62 persson 2442 * made sure the instruments menu is updated when instruments are
63     added, removed or renamed
64 persson 2445 * fixed name entry field in instrument properties window
65 persson 2446 * use character encoding Windows-1252 for all strings in gig files
66 schoenebeck 2462 * show dimension zone start and end as numeric text labels
67 schoenebeck 2464 * copying sample informations automatically may now be disabled from the
68     new "Edit" main menu
69 schoenebeck 2466 * import 'fine tune' when importing samples with libsndfile
70 persson 2470 * Mac OS X: initialize gtk and gettext with files from base
71     directory of the libgigedit library
72     * Mac OS X: fixed "recently used" in file dialogs
73     * Mac OS X: avoid crash when starting gigedit as an application
74     bundle
75 schoenebeck 2474 * Mac OS X: try to launch the GUI on the process's "main" thread
76 schoenebeck 2476 * show build date and libgig version number in about dialog
77 persson 2507 * added dialog for editing the CtrlTrigger and Legato midi rules
78 schoenebeck 2536 * if there is no region yet, show a red hint text to the user that he may
79     right click on the region chooser area to add a region
80     * added tooltips to main menu entries (was buggy before)
81     * added tooltips to instruments tree view and samples tree view
82     * added various tooltips and adjusted some labels on the region settings
83     pane
84 schoenebeck 2541 * GIG SOUND FORMAT EXTENSION: only a small set of possible MIDI controllers
85     was selectable for EG1 controller, EG2 controller and attenuation
86     controller (and no CC number was shown in the combo box). Obviously the
87     additional MIDI controllers can only be used with LinuxSampler, they would
88     not work with Gigasampler/GigaStudio. A warning message will be shown
89     though whenever somebody tries to use one of those extension controllers.
90 schoenebeck 2548 * Combine instruments: a new feature that allows to merge a selection of
91     instruments to one new single instrument. It uses the 'layer' dimension
92     to stack up the instruments. This feature is available from the main menu
93     under 'Tools' -> 'Combine Instruments'.
94 schoenebeck 2556 * Dimension zone amount: Support for increasing and decreasing the amount of
95     dimension zones by right clicking on the respective zone and either
96     selecting "delete" or "split" in the popup menu.
97 schoenebeck 2558 * Combine instruments: generalized this tool to allow combining instruments
98     based on any dimension, not only the 'layer' dimension.
99     * 'Dimension Manager' dialog: show dialog window with at least 460x300px on
100     initial usage (was far too small by default).
101 schoenebeck 2560 * File Property Dialog: allow viewing and altering the Giga file format
102     version (by combo box).
103 schoenebeck 2562 * 'Dimension Manager' dialog: added support for viewing and editing
104     dimensions of all regions simultaniously.
105 schoenebeck 2604 * GIG SOUND FORMAT EXTENSION: Added support for managing and editing
106     real-time instrument scripts. Instrument scripts are a LinuxSampler
107     extension of the original Giga format and will not load with the
108     GigaStudio software.
109 schoenebeck 2610 * GIG SOUND FORMAT EXTENSION: Added support for managing script slots for
110     instruments. Script slots define which scripts shall be executed for an
111     instrument by the sampler and in which order.
112 schoenebeck 2623 * Samples tree view on main window: display the amount of references for
113     each sample and show the respective sample in gray color in case it is not
114 schoenebeck 2624 referenced at all.
115     * Samples tree view: implemented sample reference browser, which shows a
116     tree with all instruments and their respective regions which reference the
117     selected sample once ore more.
118 schoenebeck 2625 * Restructured main menu: duplicated all popup menus to the main menu,
119     automatically switch to the right tree view tab when either selecting the
120     "Sample", "Instrument" or "Script" main menu entry.
121 schoenebeck 2626 * Dimension Region Selector: implemented multi zone selection by press and
122     hold CTRL key.
123     * Dimension Region Selector: show bottom and upper limit values for all
124     dimension zones, not just the currently selected ones.
125     * Dimension Region Selector: Fixed drawing issues when zone sizes were
126     altered by mouse drag and labels being displayed at wrong positions.
127 schoenebeck 2641 * Region Chooser: Double click opens dimension manager dialog.
128     * Dimension Manager: Clicking on dimension type cell of an existing dimension
129     opens a popup to alter the dimension type.
130 schoenebeck 2644 * Script Tree: Double click opens script editor.
131 schoenebeck 2683 * Fixed potential crash if exception was thrown while opening a gig file.
132     * Added support for visual progress bar while saving a gig file.
133 schoenebeck 2689 * Automatically switch the sampler's (audible) instrument whenever another
134     instrument was selected in gigedit (this default behavior can be switched
135     off in the settings menu of gigedit).
136 schoenebeck 2690 * Dimension Region Editor: Show coarse sample format info (audio channels,
137     bit depth, sample rate) and unique sample ID (since the gig format allows
138     different samples to have the same name).
139 schoenebeck 2691 * Dimension Region Editor: Added button "Select Sample" on the sample tab,
140     which allows to conveniently select the dimension region's sample on the
141     left hand side's samples tree view.
142 schoenebeck 2696 * Sample Referenve View Dialog: Clicking on a reference in the list closes
143     the dialog and jumps directly to the respective instrument, region and
144     dimension region the respective sample reference is located at.
145 schoenebeck 2697 * Fixed instruments, samples and scripts to appear twice after save.
146 schoenebeck 2701 * Implemented reordering of instruments by drag & drop.
147 schoenebeck 2715 * Implemented replacing of existing samples.
148 schoenebeck 2720 * Added "X" button next to sample reference field, which allows to remove
149     the current sample reference, allowing to create a "silent case" where
150     no sample shall be played.
151 schoenebeck 2772 * Fixed file name disappearing from title bar on certain actions.
152     * Added new menu item "View"->"Refresh All".
153     * Added new menu item "Samples"->"Remove Unused Samples".
154 schoenebeck 2773 * Region Chooser: when moving a region around automatically move the
155     keyboard position dependent pitch accordingly (can be turned off with
156     "Settings"->"Move root key with region moved").
157 persson 2129
158 persson 1959 Version 0.2.0 (2009-07-31)
159 persson 1582
160     * fixed file properties dialog - properties now can be edited
161 persson 1623 * gig files where regions are not internally ordered are now handled
162     * the resize mouse pointer is not shown anymore for regions that
163     can't be resized
164     * the region and dimregion chooser widgets are now resizable
165     * bugfix: sometimes you could not delete more than one dimension
166     * filter headers are now also greyed out when the filter is inactive
167 schoenebeck 1645 * autoconf fix: LS plugin dirs with digits in their prefix
168     (e.g. "/usr/lib64/foo") are now resolved in relative dirs as well
169     (show a warning when resolving the relative path failed)
170 schoenebeck 1654 * keys on the virtual keyboard now highlight on note on events on
171 schoenebeck 1660 sampler side
172     * virtual keyboard can now trigger notes for the sampler (only in
173     live-mode of course)
174 schoenebeck 1661 * implemented alternative behavior for the virtual MIDI keyboard
175     (selectable by combobox below the keyboard)
176     * show absolute velocity value of note-on & note-off events below
177     the virtual MIDI keyboard
178 schoenebeck 1656 * renamed misleading names regarding the gig format's "keyswitching"
179     feature (the dimension is now displayed as "keyswitching" instead of
180     "keyboard" in the dimregchooser widget and the two parameters for
181     defining the actual keyswitching area on the keyboard in the instruments
182     properties dialog are now called "Keyswitching range low/high" instead of
183     "Dimension key range low/high")
184 schoenebeck 1673 * added "replace all samples" function to samples popup menu
185     (patch by Anders Dahnielson, a bit extended, fixes #73)
186 persson 1677 * bugfix: dimension manager window didn't update when another region
187     was selected (#78)
188 schoenebeck 1679 * in "Save As..." dialog set inital filename to "copy_of_<filename>" and
189     show a warning message that saving to the same .gig file will corrupt
190     the sample wave data
191 persson 1714 * fixed compilation with gcc 4.3
192 persson 1725 * the "Add Samples" dialog now remembers current directory (patch by
193     Devin Anderson, fixes #81)
194 persson 1733 * it is now possible to create dimensions where the amount of zones
195     isn't a power of two (patch by Devin Anderson, #89, slightly
196     modified)
197 persson 1793 * fixed configure check for libsndfile loop support
198 persson 1798 * bugfix: when a stereo sample is replaced, make sure both zones of
199     the sample channel dimension get updated with the new sample
200 persson 1799 * minor gui fix: made multi line lables expand to use full width
201 persson 1809 * fixes for building the plugin with MinGW
202 schoenebeck 1824 * added rpm packaging file
203     (patch by Devin Anderson, slightly modified, fixes #88)
204 persson 1831 * made all visible strings translatable
205 schoenebeck 1853 * bugfix: inform the sampler when new file(s) has been imported on save
206     operation (#82)
207 schoenebeck 1877 * updated LinuxSampler plugin of gigedit to the latest liblinuxsampler
208     C++ API changes
209 persson 1898 * Windows: look for translations using base directory of libgigedit
210     dll
211     * virtual keyboard fixes: restore to grey when outside keyboard.
212     Don't trigger multiple notes for each key when moving mouse.
213 persson 1582
214 persson 1562 Version 0.1.1 (2007-12-06)
215 persson 1456
216     * multiple editor windows can now be opened by the plugin
217     * bugfix: gigedit didn't start on windows 2000
218     * standard gtk command line parameters is now handled
219 persson 1533 * parameter edits can now be applied to multiple regions and
220     dimension regions simultaneously - three checkboxes were added
221     that select if changes apply to all regions and/or all dimension
222     regions
223 persson 1456
224 persson 1441 Version 0.1.0 (2007-10-15)
225 persson 1127
226     * fixed compilation with older gcc versions
227 schoenebeck 1134 * added German translation
228 persson 1138 * reworked instrument properties dialog - properties can now be
229     edited
230 schoenebeck 1150 * restructured dimension region editor for elements to be in a more
231     logical and intuitive order
232 schoenebeck 1152 * added Makefile.cvs (just for standard compliance with other projects)
233     * added Debian packaging infrastructure
234 schoenebeck 1156 * implemented sample loop editing
235 persson 1159 * improved labels in dimension region editor
236     * use normal layout for checkboxes
237 schoenebeck 1185 * allow to resize dimension zones even when the respective dimension has
238     no custom dimension splits yet
239 schoenebeck 1213 * moved instrument editor into a shared library 'libgigedit', the 'gigedit'
240     binary is now just calling that shared library
241     * implemented an "instrument editor plugin" for LinuxSampler to allow
242     on-the-fly instrument editing within the sampler's own process
243 schoenebeck 1226 (revised directories to a more automake-friendly structure for this, to
244     avoid compilation and install errors)
245 schoenebeck 1322 * added experimental support to synchronize gigedit with LinuxSampler to
246     avoid race conditions / crash while modifying data structures
247 persson 1236 * added quick start documentation by Alexander Methke
248 persson 1261 * a changed file is now marked with an asterisk in the window title
249     * added close confirmation dialog, shown if file is changed
250     * "save" means "save as" for new files
251     * enabled acceleration keys
252     * add .gig to filename in "save as" if it's not already there
253     * filename character encodings other than utf-8 supported
254 persson 1262 * regions can now be moved, not just resized
255     * improved labels in instrument properties dialog
256     * remove file extensions from file names when importing samples
257 persson 1263 * added digits for octave numbers on the keyboard and made keys
258     outside piano range grey
259 persson 1265 * added support for 24 bit sample import
260     * when importing samples, settings for loops and root note are
261     copied from the sample files (if they have such settings)
262 schoenebeck 1300 * start with a new gig file by default
263 persson 1303 * make sure samplechannel dimension gets created for stereo samples
264     * allow building with older versions of gtk and libsndfile
265     * remember selected dimension when switching regions
266     * check if file is savable before trying to save
267 schoenebeck 1396 * gettext is now an optional dependency
268     * added Dev-C++ project files for Windows systems
269 schoenebeck 1411 * added status bar to the bottom of main window (independent area on the
270     right shows whether gigedit is running stand-alone or attached to
271     LinuxSampler)
272     * fixed crash when gigedit was compiled with CXXFLAGS="-g"
273 persson 1127
274 persson 1119 Version 0.0.3 (2007-03-24)
275    
276     * first release of gigedit

  ViewVC Help
Powered by ViewVC