-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
694 lines (517 loc) · 25.7 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
2016-02-27 Stazed <[email protected]>
* src/seqedit.cpp:
set focus on sequence open to seqroll when not "Untitled"
2016-02-26 Stazed <[email protected]>
* src/mainwnd.cpp:
fix incorrect save on file exist overwrite Gtk::RESPONSE_NO:
stop changing global file name on import
2016-02-19 Stazed <[email protected]>
* src/mainwnd.cpp, src/perfedit.cpp, src/perfedit.h:
move timeout seqroll keybind for jack toggle to mainwnd
since perfedit may not have been opened
2016-02-18 Stazed <[email protected]>
* src/mainwnd.cpp, src/mainwnd.h
src/options.cpp, src/optionsfile.cpp, src/perfedit.cpp,
src/perfedit.h, src/perform.cpp, src/perform.h,
src/perfroll.cpp, src/pixmaps/Module.am, src/pixmaps/transportFollow.xpm,
src/seqroll.cpp: add transport follow toggle button with keybinding:
move jack sync button to perfedit & add keybinding to seqroll
2016-02-16 Stazed <[email protected]>
* src/mainwnd.cpp, src/mainwnd.h, src/pixmaps/Module.am,
src/pixmaps/jack.xpm, src/pixmaps/menu.xpm:
add pixmaps for menu and jack buttons
2016-02-02 Stazed <[email protected]>
* src/seqedit.cpp, src/seqroll.cpp, src/seqroll.h:
fix seqedit toggle play to work with song/live toggle
2016-01-30 Stazed <[email protected]>
* src/perfroll_input.cpp:
stop pushing to undo when nothing selected on motion notify
2016-01-29 Stazed <[email protected]>
* src/mainwnd.cpp, src/perform.cpp, src/perform.h,
src/perfroll.cpp, src/perfroll.h, src/perfroll_input.cpp
src/seqroll.cpp: add song toggle to seqroll:
fix unnecessary pushes to undo - perfroll
2016-01-27 Stazed <[email protected]>
* src/mainwnd.cpp, src/options.cpp, src/optionsfile.cpp,
src/perform.cpp, src/perform.h, src/seq24.cpp:
add menu stop button to mainwnd.cpp and keybinding:
refactor mainwnd on_key_press_event() for menu to
auto shut off menu when sequence is running
2016-01-25 Stazed <[email protected]>
* src/seqevent.cpp, src/seqroll.cpp:
optimize code for !mark_selected() to stop unnecessary redraw
2016-01-23 Stazed <[email protected]>
* src/globals.h, src/mainwnd.cpp, src/optionsfile.cpp,
src/perfedit.cpp, src/perform.cpp, src/perform.h,
src/perfroll.cpp, src/perfroll.h, src/seq24.cpp,
src/userfile.cpp: fix start from perfedit to always start in song mode:
rename global_jack_start_mode to global_song_start_mode:
change command line message for renaming
2016-01-18 Stazed <[email protected]>
* src/seqedit.cpp, src/sequence.cpp:
add note velocity to play notes:
change tooltip
2016-01-17 Stazed <[email protected]>
* src/sequence.cpp, src/sequence.h:
fix note volume button in sequence,
now applies to all notes - off == default 100
velocity for painted notes and step edit
2016-01-17 Stazed <[email protected]>
* src/seqroll.cpp, src/seqroll.h:
add seqroll follow tranport
2016-01-16 Stazed <[email protected]>
* src/mainwnd.cpp, src/mainwnd.h, src/options.cpp, src/optionsfile.cpp,
src/perform.cpp, src/perform.h: add keybinding for song mode
and jack sync buttons:
add "New-keys" to optionsfile for backward compatibility
2016-01-15 Stazed <[email protected]>
* src/seqevent.cpp, src/seqroll.cpp:
add redo & select all events to seqevent:
add grid marker - formerly only 'fruity' to all
2016-01-15 Stazed <[email protected]>
* src/seqedit.cpp, src/seqevent.cpp, src/seqroll.cpp,
src/sequence.cpp, src/sequence.h: add move notes with cursor keys:
left/right move to snap: shift left/right move to tick :
ctrl left/right move transport line to grid:
fix unnecessary pushes to undo when nothing selected in mark_selected()
2016-01-15 Stazed <[email protected]>
* src/globals.h, src/mainwnd.cpp, src/optinsfile.cpp,
src/perfedit.cpp, src/perform.cpp, src/perform.h,
src/perfroll.cpp, src/seqroll.cpp, src/sequence.cpp:
refactor to use global_is_running in place of
perform::is_running() & is_pattern_playing to make things
consistant: fix compiler warning
2016-01-11 Stazed <[email protected]>
* src/seq24.cpp: fix command line args
2016-01-06 Stazed <[email protected]>
* src/perform.cpp, src/perform.h, src/perfroll.h:
add follow transport to song editor
2016-01-04 Stazed <[email protected]>
* src/perform.cpp: fix slave mode with no master(bbt)
2016-01-03 Stazed <[email protected]>
* src/options.cpp, src/perform.cpp:
fix bbt jack calc, remove song mode buttons from options
2016-01-02 Stazed <[email protected]>
* src/mainwnd.cpp, src/mainwnd.h, src/options.cpp,
src/perform.cpp, src/perform.h:
add jack sync toggle to mainwnd and remove from options window
2016-01-01 Stazed <[email protected]>
* src/perform.cpp, src/perform.h:
fix jack master mode
2016-01-01 Stazed <[email protected]>
* src/lfownd.cpp: set lfownd to raise
2015-12-26 Stazed <[email protected]>
* src/mainwnd.cpp, src/perfedit.cpp, src/perform.cpp,
src/perform.h, src/perfroll.cpp, src/seqedit.cpp,
src/seqroll.cpp, src/seqroll.h:
move start_playing & stop_playing to perform.cpp
2015-12-26 Stazed <[email protected]>
* src/seqkeys.cpp, src/seqkeys.h, src/seqroll.cpp:
add note listen on draw/move seqroll
2015-12-23 Stazed <[email protected]>
* src/mainwnd.cpp, src/mainwnd.h:
add song mode toggle button to main window
2015-12-21 Stazed <[email protected]>
* src/Module.am, src/lfownd.cpp, src/lfownd.h,
src/seqdata.h, src/seqedit.cpp, src/seqedit.h,
src/sequence.cpp, src/sequence.h:
add lfo-window: add lfo window to seq undo
2015-12-20 Stazed <[email protected]>
* src/seqedit.cpp, src/seqedit.h:
add play/stop buttons to seqedit
2015-12-18 Stazed <[email protected]>
* src/perfedit.cpp, src/perfedit.h, src/perform.cpp, src/perform.h,
src/seqedit.cpp, src/sequence.cpp, src/sequence.h:
add redo button to perfedit:
make perfedit undo/redo sensitive
2015-12-18 Stazed <[email protected]>
* src/perfedit.cpp, src/seqedit.cpp:
add add'l grid snap items to match beats per measure:
set default grid snap according to beats per measure
2015-12-17 Stazed <[email protected]>
* src/globals.h, src/mainwnd.cpp, src/midifile.cpp,
src/perfedit.cpp, src/perfedit.h, src/perform.cpp,
src/perform.h: add beat per measure and beat width to file write and read
2015-12-17 Stazed <[email protected]>
* src/seqedit.cpp, src/sequence.cpp, src/sequence.h:
add set sensitive to sequence undo/redo:
fix song triggers not drawing on sequence undo/redo - set dirty
2015-11-19 Stazed <[email protected]>
* src/perfroll.cpp, src/perfroll_input.cpp, src/sequence.cpp,
src/sequence.h: Song editor enhancements,
add trigger split to split on mouse click location - grid snap:
add CTRL-V paste of trigger to middle mouse click on open track
2015-11-10 Stazed <[email protected]>
* src/globals.h, src/mainwnd.cpp,src/perform.cpp
src/seqedit.cpp, src/seqroll.cpp, src/sequence.cpp,
src/sequence.h : new functions to expand or compress patterns
(doubling or halving timing of selected pattern):
new actions to select notes on even or odd beats (1/4, 1/8 or 1/16):
new event value randomize function:
lower bpm minimum from 20 to 5:
got rid of a few magic numbers for consistency:
+++ Release 0.9.3 (2016-02-24) +++
2016-01-22 Wolfgang Illmeyer <[email protected]>
* configure.ac, src/perfedit.cpp, m4/*: Make the build work with
C++11, as required by recent versions of gtkmm
2012-02-25 Guido Scholz <[email protected]>
* src/perform.*: Remove --file option from jack session
commandline, hint by Frank Kober
2012-02-24 Guido Scholz <[email protected]>
* src/perform.*: Register empty process callback for JACK, patch
provided by Lieven Moors
2012-01-05 Sebastien Alaiwan <[email protected]>
* src/perform.cpp: Fix clock tick drift
2011-01-04 Guido Scholz <[email protected]>
* src/lash.*, src/seq24.cpp: Fix lash client initialization
+++ Release 0.9.2 (2010-11-27) +++
2010-11-25 Guido Scholz <[email protected]>
* configure.in: remove unused variables, harmonize option
enabling/disabling
2010-11-24 Guido Scholz <[email protected]>
* src/mainwnd.cpp, src/mainwnd.h: use initialization list for
members, close pipe on exit, use name label for sreen set name
2010-11-23 Guido Scholz <[email protected]>
* src/seq24.cpp: read only existing configuration files
2010-11-23 Guido Scholz <[email protected]>
* src/configfile.cpp, src/configfile.h, src/controllers.h,
src/event.cpp, src/event.h, src/font.cpp, src/font.h, src/globals.h,
src/maintime.cpp, src/maintime.h, src/mainwid.cpp, src/mainwid.h,
src/mainwnd.h, src/midibus.cpp, src/midibus.h,
src/midibus_portmidi.cpp, src/midibus_portmidi.h, src/midifile.cpp,
src/mutex.cpp, src/mutex.h, src/options.cpp, src/options.h,
src/optionsfile.cpp, src/optionsfile.h, src/perfedit.cpp,
src/perfedit.h, src/perfnames.cpp, src/perfnames.h, src/perform.cpp,
src/perform.h, src/perfroll.cpp, src/perfroll.h, src/seqdata.cpp,
src/seqdata.h, src/seqedit.cpp, src/seqedit.h, src/seqevent.cpp,
src/seqevent.h, src/seqkeys.cpp, src/seqkeys.h, src/seqmenu.cpp,
src/seqmenu.h, src/seqroll.cpp, src/seqroll.h, src/seqtime.cpp,
src/seqtime.h, src/sequence.cpp, src/sequence.h, src/userfile.cpp,
src/userfile.h: remove trailing whitespaces
2010-11-23 Guido Scholz <[email protected]>
* src/mainwnd.cpp, src/seq24.cpp: add missing line breaks
2010-11-23 Guido Scholz <[email protected]>
* man/seq24.1, src/mainwnd.h, src/seq24.cpp: remove -f commandline
option to be replaced by a simple <filename> argument
2010-11-23 Guido Scholz <[email protected]>
* src/lash.cpp, src/lash.h, src/seq24.cpp: fix lash connect to
start after command line parsing
2010-11-22 Guido Scholz <[email protected]>
* src/mainwnd.cpp, src/mainwnd.h: add interrupt handlers for
SIGINT and SIGUSR1 to enable LADISH level 1 support
2010-11-22 Guido Scholz <[email protected]>
* src/mainwnd.cpp: fix typo again
2010-11-22 Guido Scholz <[email protected]>
* src/keybindentry.cpp, src/keybindentry.h, src/Makefile.am,
src/options.cpp: move keybindentry class to separate file
2010-11-21 Guido Scholz <[email protected]>
* src/mainwnd.cpp: fix typo
2010-11-21 Guido Scholz <[email protected]>
* src/seq24.cpp: change short option for version to V, fix
compiler warning
2010-11-20 Guido Scholz <[email protected]>
* man/seq24.1: add missing command line parameters to man page
2010-11-20 Guido Scholz <[email protected]>
* src/seq24.cpp: add missing command line parameters to help
message, show also short options, add version option
2010-11-20 Guido Scholz <[email protected]>
* src/lash.cpp, src/seq24.cpp: first parse command line before
anything else is done
2010-11-20 Guido Scholz <[email protected]>
* src/mainwnd.cpp: fix doubled key event for screen set name line
(notes edit line)
2010-11-20 Guido Scholz <[email protected]>
* src/mainwnd.cpp: rearrange bottom line item layout to get rid of
whitespace label spacing, add mnemonics for widgets
2010-11-20 Guido Scholz <[email protected]>
* src/mainwnd.cpp: rearrange bottom line item addition
2010-11-14 Guido Scholz <[email protected]>
* src/mainwnd.cpp: rename box containers to make clear what they
are responsible for
2010-11-11 Guido Scholz <[email protected]>
* src/mainwnd.h: remove doubled options header include
2010-11-11 Guido Scholz <[email protected]>
* src/options.cpp: remove doubled "show_all()" call
2010-11-11 Guido Scholz <[email protected]>
* INSTALL, configure.in, src/globals.h, src/perform.cpp,
src/perform.h, src/seq24.cpp: add support for jack session, patch
provided by Torben Hohn (slightly changed)
2010-11-10 Guido Scholz <[email protected]>
* src/pixmaps/Makefile.am: add missing file
2010-11-10 Guido Scholz <[email protected]>
* src/pixmaps, configure.in, src/Makefile.am, src/font.cpp,
src/mainwnd.cpp, src/perfedit.cpp, src/seqedit.cpp, src/bus.xpm,
src/pixmaps/bus.xpm, src/collapse.xpm, src/pixmaps/collapse.xpm,
src/copy.xpm, src/pixmaps/copy.xpm, src/down.xpm,
src/pixmaps/down.xpm, src/expand.xpm, src/pixmaps/expand.xpm,
src/font_b.xpm, src/pixmaps/font_b.xpm, src/font_w.xpm,
src/pixmaps/font_w.xpm, src/key.xpm, src/pixmaps/key.xpm,
src/learn.xpm, src/pixmaps/learn.xpm, src/learn2.xpm,
src/pixmaps/learn2.xpm, src/length.xpm, src/pixmaps/length.xpm,
src/loop.xpm, src/pixmaps/loop.xpm, src/menu_empty.xpm,
src/pixmaps/menu_empty.xpm, src/menu_full.xpm,
src/pixmaps/menu_full.xpm, src/midi.xpm, src/pixmaps/midi.xpm,
src/note_length.xpm, src/pixmaps/note_length.xpm, src/perfedit.xpm,
src/pixmaps/perfedit.xpm, src/play.xpm, src/pixmaps/play.xpm,
src/play2.xpm, src/pixmaps/play2.xpm, src/q_rec.xpm,
src/pixmaps/q_rec.xpm, src/quanize.xpm, src/pixmaps/quanize.xpm,
src/rec.xpm, src/pixmaps/rec.xpm, src/redo.xpm, src/pixmaps/redo.xpm,
src/scale.xpm, src/pixmaps/scale.xpm, src/seq-editor.xpm,
src/pixmaps/seq-editor.xpm, src/seq24.xpm, src/pixmaps/seq24.xpm,
src/seq24_32.xpm, src/pixmaps/seq24_32.xpm, src/sequences.xpm,
src/pixmaps/sequences.xpm, src/snap.xpm, src/pixmaps/snap.xpm,
src/song-editor.xpm, src/pixmaps/song-editor.xpm, src/stop.xpm,
src/pixmaps/stop.xpm, src/thru.xpm, src/pixmaps/thru.xpm,
src/tools.xpm, src/pixmaps/tools.xpm, src/undo.xpm,
src/pixmaps/undo.xpm, src/zoom.xpm, src/pixmaps/zoom.xpm: cleanup
pixmap files into separate directory
2010-11-10 Guido Scholz <[email protected]>
* src/perform.cpp: fix sched_param memory leaks
2010-11-10 Guido Scholz <[email protected]>
* src/options.cpp: fix typo
2010-11-10 Guido Scholz <[email protected]>
* src/options.cpp, src/options.h: fix tooltip usage for older GTK
versions (GTK_MINOR_VERSION < 12)
+++ Release 0.9.1 (2010-11-08) +++
2010-11-08 Guido Scholz <[email protected]>
* depcomp, install-sh, missing, mkinstalldirs: remove
administrative autotools scripts from repository
2010-11-08 Guido Scholz <[email protected]>
* NEWS: fix some typos
2010-11-08 Guido Scholz <[email protected]>
* src/perform.cpp: fix compiler warning
2010-11-08 Guido Scholz <[email protected]>
* src/perform.cpp: Revert revision 48.1.21..48.1.23 MIDI clock
change
2010-11-07 Guido Scholz <[email protected]>
* src/options.*: table container for control keys, table
container for mute-group keys, mnemonics for notebook pages,
Jack sync page redesigned using group frames and mnemonics,
select mouse interaction mode via radiobuttons.
* src/mainwnd.cpp: Update author list and date
2010-11-06 Guido Scholz <[email protected]>
* src/options.cpp: Use stock-id for OK button, split notebook
setup according to contained pages, table container for sequence
group keys
2010-11-05 Guido Scholz <[email protected]>
* src/mainwnd.cpp: fix HButtonBox compile error
2010-02-21 Sebastien Alaiwan <[email protected]>
* src/configfile.cpp, src/event.cpp, src/event.h, src/maintime.cpp,
src/mainwid.cpp, src/mainwid.h, src/midibus.cpp, src/midibus.h,
src/midifile.cpp, src/midifile.h, src/options.cpp,
src/perfnames.cpp, src/perfroll.cpp, src/perftime.cpp,
src/perftime.h, src/seqdata.cpp, src/seqdata.h, src/seqedit.cpp,
src/seqedit.h, src/seqevent.cpp, src/seqevent.h, src/seqkeys.cpp,
src/seqmenu.cpp, src/seqroll.cpp, src/seqroll.h, src/seqtime.cpp,
src/sequence.cpp: Merged constructor initializer lists
2010-02-21 Sebastien Alaiwan <[email protected]>
* src/event.cpp, src/mainwnd.cpp, src/seqmenu.cpp: Merged
2010-02-21 Sebastien Alaiwan <[email protected]>
* src/configfile.cpp, src/event.cpp, src/event.h, src/maintime.cpp,
src/mainwid.cpp, src/mainwid.h, src/midibus.cpp, src/midibus.h,
src/midifile.cpp, src/midifile.h, src/options.cpp, src/perfnames.cpp,
src/perfroll.cpp, src/perftime.cpp, src/perftime.h, src/seqdata.cpp,
src/seqdata.h, src/seqedit.cpp, src/seqedit.h, src/seqevent.cpp,
src/seqevent.h, src/seqkeys.cpp, src/seqmenu.cpp, src/seqroll.cpp,
src/seqroll.h, src/seqtime.cpp, src/sequence.cpp: Code improvement:
use initializer lists in constructors
2010-02-20 Sebastien Alaiwan <[email protected]>
* src/event.cpp, src/mainwnd.cpp, src/seqmenu.cpp: Merge removal
of useless nullity tests
2010-02-20 Sebastien Alaiwan <[email protected]>
* src/event.cpp, src/mainwnd.cpp, src/seqmenu.cpp: Removed
unecessary nullity tests before deletes. deleting NULL has no effect.
2010-02-20 Sebastien Alaiwan <[email protected]>
* src/midifile.cpp: Cleanup: removed some unused variables,
reduced unecessary big scope of some other variables
2010-02-20 Sebastien Alaiwan <[email protected]>
* src/midifile.cpp, src/midifile.h: Wrapped reading of single
bytes, and removed the push_front/reverse list browsing insanity.
2010-02-20 Sebastien Alaiwan <[email protected]>
* src/midifile.cpp, src/midifile.h: Use STL in midifile instead of
news/deletes
2009-10-06 Ivan Hernandez <ihernandez@kiuts>
* src/sequence.cpp, src/sequence.h: Plyphonic Step Edit
2009-10-06 Ivan Hernandez <ihernandez@kiuts>
* src/seqroll.cpp, src/sequence.cpp: Monophonic Step Edit on Sequence
2009-10-05 Ivan Hernandez <ihernandez@kiuts>
* src/sequence.cpp: Fixed adding notes on the begining when midi
record is on and not playing sequence
2009-09-26 Killian EBEL <[email protected]>
* src/perform.cpp: Fixed jack_position_t->bar calculation which
always where 0 or negative while using Hydrogen 0.9.4 at the same
time.
2009-06-27 Guido Scholz <[email protected]>
* src/mainwnd.cpp: Mute group learn dialogs changed to use
std:string formatting.
2009-06-26 Guido Scholz <[email protected]>
* configure.in: Support for --as-needed linker flag added to
remove unused library references.
2009-06-25 Guido Scholz <[email protected]>
* src/perform.cpp: MIDI clock control modified.
2009-06-24 Kevin Meinert <[email protected]>
* src/globals.h, src/midifile.cpp: Support for mute groups in
MIDI files added.
2009-06-23 Guido Scholz <[email protected]>
* src/mainwid.cpp, src/mainwnd.cpp, src/options.cpp,
src/perfnames.cpp, src/perftime.cpp, src/perfedit.cpp,
src/seqdata.cpp, src/perform.cpp, src/seqedit.cpp, src/seqkeys.cpp,
seqtime.cpp. src/seqmenu.cpp, src/optionsfile.cpp,
src/userfile.cpp: sprintf() replaced by snprintf() to avoid
buffer overflows.
2009-06-18 Kevin Meinert <[email protected]>
* src/globals.h, src/mainwnd.cpp, src/midibus_portmidi.cpp,
src/options.cpp, src/optionsfile.cpp, src/perfedit.cpp,
src/perform.cpp, src/seq24.cpp, src/seqroll.cpp: Some compiler
warnings fixed, generic key name translation.
2009-05-29 Guido Scholz <[email protected]>
* src/options.cpp: Fixed missing return value for
on_key_press_event().
* src/midibus.cpp: Improved MIDI buffer size handling.
* man/seq24.1: Command line option for mouse interaction method
added.
* SEQ24: Documentation for mute groups added (provided by Andrea
delle Canne and Frank Kober).
2009-05-29 Sebastien Alaiw <[email protected]>
* src/midibus.cpp: Fixed handling of error condition for
snd_midi_event_decode().
2009-05-28 Kevin Meinert <[email protected]>, Andrea delle Canne
* src/globals.h, src/learn.xpm, src/learn2.xpm, src/mainwid.*,
src/options.*, src/optionsfile.cpp, src/perfedit.cpp,
src/perform.*, src/seq24.cpp, src/seqedit.cpp, src/seqmenu.cpp,
src/seqroll.cpp, src/userfile.cpp: Mute group feature added.
2009-05-27 Kevin Meinert <[email protected]>
* src/perform.*: Support for MIDI clock synchronization added.
* src/globals.h, src/mainwnd.cpp, src/options.h,
src/optionsfile.cpp, src/seq24.cpp, src/perfroll.*, src/seqroll.*,
src/seqevent.*, src/sequence.*: Fruitty loop editing added.
2009-05-22 Sebastien Alaiw <[email protected]>
* src/mainwnd.cpp: Fixed file save as crash.
* src/midifile.cpp: Fixed MIDI sysex event reading.
2009-05-22 Guido Scholz <[email protected]>
* src/seq24.cpp, src/midibus.*, midibus_portmidi.*, perform.cpp,
options.cpp, lash.*, seauence.h, globals.h, configwin32.h:
Support for (lost) Win32 platform support added (reworked
patch from Kevin Meinert, Rob Buse).
* src/seqedit.cpp, src/seqroll.*: Optimized redraw for sequencer
roll background (from Win32 version, Rob Buse).
2009-03-14 Stéphane Letz <>
* src/iperform.cpp: Adaptations for jack2 applied.
2008-12-01 Guido Scholz <[email protected]>
* src/seq.cpp, src/optionsfile.cpp: Fixed error if path for
last used directory is not properly set.
* src/mainwnd.cpp: "Cancel" option added to "Save file?"
question.
2008-11-30 Guido Scholz <[email protected]>
* src/mainwnd.cpp: Check for GTK minor version added to avoid
tooltip compile error for GTK < 2.12.
2008-11-29 Guido Scholz <[email protected]>
* src/globals.h, src/configfile.*, src/midifile.*,
src/mainwnd.*, src/optionsfile.*, src/seq24.cpp: Handle
filenames more consistently as UTF-8 strings.
+++ Release 0.9.0 (2008-11-27) +++
2008-11-27 Guido Scholz <[email protected]>
* src/perfedit.cpp, src/seqedit.cpp: Window icons for song
editor and sequence editor added.
2008-10-18 Guido Scholz <[email protected]>
* src/midifile.cpp: Fixed memory leak if MIDI file format error
occurs. Error messages added to give user better feedback about
reason behind file read error.
2008-09-28 Daniel Ellis <[email protected]>
* src/perfroll.cpp: Panning in the song editor using the scroll
wheel (when SHIFT is used).
2008-09-16 Daniel Ellis <[email protected]>
* src/seqdata.cpp, src/seqedit.*, src/seqroll.cpp: Zooming and
panning in the editor window using the scroll wheel (when CTRL
or SHIFT are used) implemented. Horizontal scroll step interval
increased to 1/16 note per zoom level and page interval to
1 bar.
2008-09-16 Guido Scholz <[email protected]>
* src/mainwnd.*: About dialog changed to use new layout. Project
contributors added accordingly.
* src/seqdata.cpp: Buffer overflow fixed; provided by Anthony
Green.
2008-09-15 Guido Scholz <[email protected]>
* src/main.cpp, src/mainwnd.*: File new/open/save/close logic
rewritten to monitor user applied file changes.
2008-09-13 Guido Scholz <[email protected]>
* src/dump.cpp, src/Makefile.am: "dump" program removed, source
files in Makefile.am reordered.
* configure.in, src/Makefile.am: Cleanup compiler and linker
variables handling for gtkmm library.
* src/mainwnd.*: Use newer file dialog, MIDI files are
preselectable. ".midi" suffix is added if user does not append a
valid MIDI file extension.
New menu item to show and hide song edit window. Tooltips for
bottom line elements added.
2008-09-08 Jaakko Sipari <[email protected]>
* perfroll.cpp, seqevent.cpp, seqroll.cpp: Added backspace as
an optional delete key to the pattern editor.
2008-09-08 Guido Scholz <[email protected]>
* src/mainwnd.cpp: Keyboard shortcuts for menu items added.
Menu rearranged to use less separators.
2008-09-07 Guido Scholz <[email protected]>
* src/mainwnd.*: Title page naming changed.
* src/seqedit.cpp: Fixed GTK warning about invalid input string,
caused by buffer overflow.
2008-08-30 Guido Scholz <[email protected]>
* man/seq24.1: Man page from Ubuntu added; written by Dana
Olson.
2008-08-27 Guido Scholz <[email protected]>
* src/*.xpm: Fixed missing "const" to avoid compiler warnings.
* configure.in: Enabled bzip2 tarball for make target "dist".
Checks for gtkmm-2.4 , sigc-2.0 and asound libraries added.
* main.cpp, src/seq24_32.xpm: Application icon added. Typos
fixed.
* event.cpp, font.cpp: Missing include for header files added;
was complained by gcc 4.3.
* mainwnd.h, options.cpp, perfedit.*, seqedit.cpp, seqmenu.cpp:
Switched to sigc++-2.0 API, to make program compatible to latest
sigc++ version (2.2).
2008-07-03 Ivan Hernandez <[email protected]>
* redo.xpm, seqedit.*, sequence.*: Added Redo function on
sequence editor.
2008-05-19 Ivan Hernandez <[email protected]>
* midifile.cpp: Fixes the BPM saving on 64bit platforms, patch
provided by Pete Leigh.
2008-05-12 Ivan Hernandez <[email protected]>
* globals.h, mainwnd.cpp, optionsfile.cpp, seqedit.*,
seqroll.cpp, sequence.*, q_rec.xpm, quanize.xpm: Round robbin
logic on sequence edit. Start stop shortcut on sequence editor.
Remembers last used directory on configuration so you go where
you worked. Live Quantize, so notes get to the right time when
you play. Fixed volume. Makes midi input have a fixed volume
when you record.
v0.4.2 ------------------------------------------------
2003-5-14
* Updated main interface
* added --priority flag (runs at higher priority)
* refactored midi system, took out midi prebuffer
v0.4.1 ------------------------------------------------
* Fixed gcc 3.2 compile problem
* real time value change in data window
v0.4.0 ------------------------------------------------
2002-10-8
* Added Performace editor.
v0.3.0 ------------------------------------------------
2002-9-16
* Midi clock configure Dialog ( removed #ifndef MIDI_CLOCK stuff )
* Updated main interface (progress bars, spin widgets for bpm and screen set )
* Midi recording & midi Thru in edit window
* Ability to move/select/delete rouge Note On/Off events (just deleted them before )
* Added Paino Roll progress indicator, removed one from upper time bar thing.
* Removed context menu to switch from Add/Select mode on paino roll. Now
you just right click and hold down on paino roll and event bar to toggle modes.
* Moved Event select button, now on bottom with a display of curent event type.
v0.2.0 -------------------------------------------------
2002-08-04
* Added Control Code Editor
2002-07-16
* seqkeys.C - fixed black key drawing problem
v0.1.1 -------------------------------------------------
2002-07-15 Rob Buse [email protected]
* added #define _GNU_SOURCE to makefile.in
v0.1.0 -------------------------------------------------
2002-07-14 Rob Buse [email protected]
* Initial release of seq24-0.1.0 woohoo!