-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog-0.8
2817 lines (1580 loc) · 76.2 KB
/
ChangeLog-0.8
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
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit 2af055fef7e02f077c868936fcd7cae796bbde25
Author: Stefan Sauer <[email protected]>
NEWS: releasing
commit c202a010bbc4509b38d970e9df65c04cfcec7a02
Author: Stefan Sauer <[email protected]>
po: update translations
commit 6d2827987dc0de001dea36c06880518212577cac
Author: Antonio Ospite <[email protected]>
setup: fix crashes due to an unbalanced lock
commit efa317ba5fcb9fbd74ed803419a565e29fb8b16e
Author: Stefan Sauer <[email protected]>
about: update NEWS
commit b07da70849f9c37188b0dae712205bd375f6157c
Author: Stefan Sauer <[email protected]>
main-page-machine: force grid-canvas redraw on tab switch
commit 03ce055bbe600eb5a31748106fa1e12016632705
Author: Stefan Sauer <[email protected]>
ignore: ignore test log archives
commit 0815d134ca5cf657c73322276099b31b837b1fa5
Author: Stefan Sauer <[email protected]>
docs: typo fixes and comment update
commit 3a4d36353d0814522d9a1a8633fc55945f089be3
Author: Stefan Sauer <[email protected]>
dist: make distcehck fixes
commit 974ab5aa4908148bd15326197b9ff6e885009073
Author: Stefan Sauer <[email protected]>
tests: fix srcdir!=builddir issues for shunit tests
commit 2e9b45b29dd6151af908cf78c9885a7b0aabc4fd
Author: Stefan Sauer <[email protected]>
docs: update bt-edit docs
commit 9993791cab5878a1ba4ed6d0ef258ce2b2442bd3
Author: Stefan Sauer <[email protected]>
docs: remove unused vars
commit 05cfb9078ca5dc29eb32ed146a567176b8fb615b
Author: Stefan Sauer <[email protected]>
tests: also allow to bypass xvfb here
commit d39cb4ef32c7486bdd62e6eb207fde56ca7b7da0
Author: Stefan Sauer <[email protected]>
make: fix make dist
commit 4845b87140f8b25144b83774a24fe6fb3dd199ee
Author: Stefan Sauer <[email protected]>
tests: make init oder for ui/edit closer to other suites
commit 1d47367ee8c5944086e2202360995844d70115be
Author: Stefan Sauer <[email protected]>
check-ui: ensure we reset server_pid
commit 72a89afa83749d22dd2ed0d2424f16bf152f6dae
Author: Stefan Sauer <[email protected]>
make: disable accessibility bridge
commit 13400bdfd197e9db57fd8fc749ad8b1d7efaa9a1
Author: Stefan Sauer <[email protected]>
bt-check-ui: add docs for the uitest helpers and a env-var
commit b2316b175cbf8245b72e7044b3cc56d30f1c55eb
Author: Stefan Sauer <[email protected]>
tests: use a log entry instead of a comment to log markers for test phases
commit 3d5f71eb8cd0b95ca58d6688b7f519964f8112f6
Author: Stefan Sauer <[email protected]>
main-menu: fix a gdk warning
commit e5918bd5da7bbcbe672b399182115f8f8b4704a1
Author: Stefan Sauer <[email protected]>
tests: fix silly typo
commit eea1635eb611eca03bcd29b3db79810699a27cb6
Author: Stefan Sauer <[email protected]>
make: remove the local gst-registry as part of clean
commit 01aa76036d58521263e91ae2f87937747dc6c340
Author: Stefan Sauer <[email protected]>
configure: fix mailing list address
commit 3c1753dc8421d410988afd00b518fd5f6e157393
Author: Stefan Sauer <[email protected]>
tests: skip recording tests for flac for now
commit 73167efc83ceb5895b4ac0a6e7598cc373f7ad21
Author: Stefan Sauer <[email protected]>
tests: tame the logging further
commit 108675fabd6f002247ae1ea8fc3a9ff455dcd0c2
Author: Stefan Sauer <[email protected]>
sink-bin: comment and logging changes
commit 5e055020866648804f52e39197cb4783b49d2f2c
Author: Stefan Sauer <[email protected]>
wire-canvase-item: adjust for renamed constants
commit 97fc795815be101f8a8241ab8d9d75fd9e57ce00
Author: Stefan Sauer <[email protected]>
main-page-machines: improve zoom-fit
commit e9a3ed56e0ba20d9be4020b4242aaeaa7b0d8251
Author: Stefan Sauer <[email protected]>
main-page-machines: simplify the machine-view-size constants
commit 4277c095f88b152ef95532bfd3beeda0ca3492bb
Author: Stefan Sauer <[email protected]>
main-page-machines: pivot point is by default at 0.0, 0.0
commit 228af5f5b7eb4815dbb9a42397bb9a0003595766
Author: Stefan Sauer <[email protected]>
machine-canvas: completely overhaul zooming and scrolling.
commit 838025d64dc02b541e66a412f5e8249bec97b0f3
Author: Stefan Sauer <[email protected]>
main-page-machines: add constants for zoom min/max
commit cad9b7884cd9e02915e25ba3e8295b193db63924
Author: Stefan Sauer <[email protected]>
tests: tame the default logging
commit 8dd63c0c4e5ae0609bf7d2d7281b611341d71c0d
Author: Stefan Sauer <[email protected]>
song: add more logging and another comment for issue #15
commit baf23fd9c30f18297c81213abfab8b7e79174358
Author: Stefan Sauer <[email protected]>
settings: skip sinks with rank=0
commit 170b4c3a4207a52306e8da429d658d6dc6677c13
Author: Stefan Sauer <[email protected]>
makefile.am: tabs to spaces
commit 0c4266664ecf25b1bb991725f484eb17b1c5cc80
Author: Stefan Sauer <[email protected]>
tests: don't use songs in _OBJECT log variants
commit 2e3512b24e235e4b6e9ad07062362bdd7a167b86
Author: Stefan Sauer <[email protected]>
debug: prefix all dot dumps with PACKAGE_NAME
commit 0a468226a57061eca5fe52e15d0d3c4db986851d
Author: Stefan Sauer <[email protected]>
setup: remove unused instance var
commit 6b7376857b6edd9b96fee656e3607f96e72e8044
Author: Stefan Sauer <[email protected]>
gitignore: hide more autofoo outputs
commit 73af4a4089100f52ec7128cdb1c7f1a64c7026ef
Author: Stefan Sauer <[email protected]>
docs: update ignore file for spelling
commit 7348de079bac396f4359f4d953ae8fd78e537b95
Author: Stefan Sauer <[email protected]>
tools: small api doc update
commit 5a6bfcb472368870dda05e7c116e9e074e68cf4d
Author: Stefan Sauer <[email protected]>
gitignore: add more files
commit 0c257cb2ed8e5bb73d3ddf1d51d49ad096bd431d
Author: Stefan Sauer <[email protected]>
options: set a default command (-c) if none is given
commit dbbf706c6c4e64c7f29c1b90b4a5627308fc51e0
Author: Stefan Sauer <[email protected]>
configure: reshuffle AM_PROG_AR and LT_INIT to fix a warning
commit 9541ab9c6fb38b08cd934ed3f5521c0ad1769dd6
Author: Sebastian Rasmussen <[email protected]>
po: add swedish translation
create mode 100644 po/sv.po
commit a6940e1445ada14a8e40c8eb5608f3a4fff0e23e
Author: Stefan Sauer <[email protected]>
main-page-machines: migrate from GtkTable to GtkGrid
commit a71246cf647a55bcdcc6c3969ceb24a8d86d3df1
Author: Stefan Sauer <[email protected]>
main-page-info: migrate from GtkTable to GtkGrid
commit 908dddd64da279f716820051656e7a7afbe87e8e
Author: Stefan Sauer <[email protected]>
TODO: planning for OSC
commit b46aee2a147f5dbbaccd3794f119056474e0e081
Author: Stefan Sauer <[email protected]>
main-page-waves: migrate from GtkTable to GtkGrid
commit 3894ee176b8b1fbfd58da76ba725716870f47c90
Author: Stefan Sauer <[email protected]>
song: add a test for the replay-issue fix in prev commit
commit 3c6011752e7ea4572f33a9e4cdc2e212c42baec3
Author: Stefan Sauer <[email protected]>
build: kill more remains of gnomecanvas
commit 3e24eb8abbea47d5c3efa921e8811c2b365ea6cc
Author: Stefan Sauer <[email protected]>
song: fix re-play of songs
commit d7451597b1ccfc6b8e487f43f0e3a97869dbd459
Author: Stefan Sauer <[email protected]>
build: specify full deps for api-doc targets
commit a9a47543ca5b71d54b5fee204e49562f71dc12ef
Author: Stefan Sauer <[email protected]>
build: specify EXTRA_*_DEPENDENCIES to add instead of replace
commit 4be357ba66bb849f02ed0150df5f65247ab8830f
Author: Stefan Sauer <[email protected]>
song: comment and log message update
commit 6d3178ff2b90d66d455e28b97d09cf006cfc4c45
Author: Stefan Sauer <[email protected]>
po: update comments above gettext macros
commit e8e0d0f46dabd3dc05ceaf33cd4effe2f0b72431
Author: Stefan Sauer <[email protected]>
docs: drop deprecated _init() functions
commit 4eede5ea3a610f2b73ea42833d18db6439b43e07
Author: Stefan Sauer <[email protected]>
build: switch to subdir-objects for automake
commit 187fd343c46e4fcb857caa598ea21d6eaba568d4
Author: Stefan Sauer <[email protected]>
tests: use the CHECK vars from configure instead of manually listing args
commit a19e1c5c7a841d4795a997ef1e79540cd2fef36b
Author: Stefan Sauer <[email protected]>
test: silence the xrand warnings
commit 5cca1099dd7efc3c068dfe20ba846b08257fc313
Author: Stefan Sauer <[email protected]>
design: refine seekinready test
commit 0a9f4e2c794fd5efbf667e871547ea49806abd72
Author: Stefan Sauer <[email protected]>
design: add a repro for bug/733031
create mode 100644 design/gst/seekinready.c
commit d32b8d48c0a324571ca0addb071bd414958664d6
Author: Stefan Sauer <[email protected]>
song: flip the bug define and add a comment
commit a392519d580cf80fbb91505456c324f2832ed750
Author: Stefan Sauer <[email protected]>
song: back to seek in PAUSED
commit e187cf0dcec1d9824bcea339c973ecb1c144d233
Author: Stefan Sauer <[email protected]>
test: use new test helper to make test more robust
commit 2c6512342c53d8fa431cd123f379a8e801e41e24
Author: Stefan Sauer <[email protected]>
docs: fix doc coverage for bt-edit
commit 17819b4eed8115b042ece09f2cad463befa79a2e
Author: Stefan Sauer <[email protected]>
docs: remove obsolete doc entry
commit 101e344a16b864b991d57f38c2fd4f9b824bc71d
Author: Stefan Sauer <[email protected]>
e-song: add play-pos tests
commit 2d72b3b96b7deae942e5ba23e61433a0b3aeaf06
Author: Stefan Sauer <[email protected]>
check: add helper to play until eos
commit 5b75b8991bd154686900c55b18252c5e149ee8f6
Author: Stefan Sauer <[email protected]>
song: fix the seek flags for not 'loop'
commit 44dfb0ddb1ef3b166ea3b0b1ead1483e123f0bb9
Author: Stefan Sauer <[email protected]>
main-page-machines: fix saving of canvas scroll pos
commit 98fe85a0c975a949f95acbc4a0865e5e4d98ddf5
Author: Stefan Sauer <[email protected]>
tools: downgrade a warning
commit 760bf9114892328afa1a01e959f119f7db68a023
Author: Stefan Sauer <[email protected]>
change-log: check is_active to avoid modifying the stack internaly
commit aaaabed01012287358c4a606524fb90ecc44d8a5
Author: Stefan Sauer <[email protected]>
main-page-machines: downgrade some warnings logging
commit 6f790b96c52fab2f14cd9be793dd7f0c174ba461
Author: Stefan Sauer <[email protected]>
change-log: add test for nested groups
commit 10527eef4fc0ccac010953fd13c0c8126a1c5668
Author: Stefan Sauer <[email protected]>
change-log: shorten the test a bit
commit 696f8bd501ec23c062bede0c5c141b0f0ca58a48
Author: Stefan Sauer <[email protected]>
change-log: fix group handling
commit e86d0e2fca50e476501c5a41f3724686265d7da0
Author: Stefan Sauer <[email protected]>
main-page-machines: fix initial machine position for undo/redo
commit 5ac553d56056717df951d359f896c35d8409680a
Author: Stefan Sauer <[email protected]>
change-log: also add debug_mode to undo/redo
commit 976c9704b792711d4828856422ceec8734f222b1
Author: Stefan Sauer <[email protected]>
change-log: add a debug mode
commit 2e4e050710fb411dd86d1a6ec4bc77bc2819d8c3
Author: Stefan Sauer <[email protected]>
todo: planning for undo/redo changes for next dev cycle
commit 477bdb706e0be38352d096823e8c77af08ed1f0c
Author: Stefan Sauer <[email protected]>
machine-properties-dialog: add idea and fix typo
commit edb77ea34dc89bb2064fc23abcedde5a709f9d3e
Author: Stefan Sauer <[email protected]>
machine-pref/prop-dialog: fix parameter box size
commit 639434b6e0251459ca6f723d74cee3bc8f5a85d5
Author: Stefan Sauer <[email protected]>
change-log: explain 'why' in the TODO comment
commit 1f7cdb12a1bf83924205705be4cbae852dc5c751
Author: Stefan Sauer <[email protected]>
indent: remove n_params comment and re-indent
commit dbc2a2a07379314db3a39547c01c75d7052ad0ac
Author: Stefan Sauer <[email protected]>
pixmaps: add large project logo
create mode 100644 pixmaps/hicolor/256x256/buzztrax.png
commit 4f55eb65c31fedcd24f9cf76a21b58f4533f6b8e
Author: Stefan Sauer <[email protected]>
pixmaps: add machine icon template
create mode 100644 pixmaps/gnome/scalable/machines.svg
commit 7d2404014934534de27f73e840cbab4285f0fb61
Author: Stefan Sauer <[email protected]>
gitignore: ignore more test files
commit a3bf30154db864e451513f11da4cd8a0f3526e37
Author: Stefan Sauer <[email protected]>
main-page-sequence: add a workaround for the 150 pixel natural size of gtkentry
commit 098380f2fe6967634e6851575aae311e662c928c
Author: Stefan Sauer <[email protected]>
gitignore: update ignore files
commit 6b64c130c022fe957cb15274d726faeb36ff6427
Author: Stefan Sauer <[email protected]>
appdata: add appdata file
create mode 100644 buzztrax.appdata.xml.in
commit 68aceeb193c58ad2b67d378aa41bf41f6a71a794
Author: Stefan Sauer <[email protected]>
main-page-sequence: fix styling of header lables
commit f9411984a77be93ce47110f006d2942b915d9bdd
Author: Stefan Sauer <[email protected]>
gtkscrolledsyncwindow: remove gtkbin hack
commit 83171f13a1ee73728ef7d51ccee3b5506d1ba639
Author: Stefan Sauer <[email protected]>
gtkscrolledsyncwindow: add a fork of gtkscrolled window
create mode 100644 src/ui/edit/gtkscrolledsyncwindow.c
create mode 100644 src/ui/edit/gtkscrolledsyncwindow.h
commit 3f8e6bb5a407b4ecbb88eab32fb6c6cc169bb590
Author: Stefan Sauer <[email protected]>
main-page-settings: fix scolling speed for slave window
commit 75eb7454427d18cf806bf4e0d67813b73528b0c9
Author: Stefan Sauer <[email protected]>
scrolledwindow: add the hacks to sequence-view
commit 2ece95a020eb13ba9ae8e22421766638e3e0ae1e
Author: Stefan Sauer <[email protected]>
syncviews: add -lm to the compile command
commit 9f1505ecb3c15cbbeaa29bb548dac727f49cf93b
Author: Stefan Sauer <[email protected]>
syncviews: expand the test
commit 2ae2f01b7614ca0e203d076c22997896fb4d6ad7
Author: Stefan Sauer <[email protected]>
docs: update ui_ressource class docs
commit 0f445273878a4675eadf746e36a1227f076f34e1
Author: Stefan Sauer <[email protected]>
song: small cleanup on seek events
commit 49e096aa79aeb1c73cc463a0e342b956b27667e4
Author: Stefan Sauer <[email protected]>
settings-pages: fix layout and missing icon
commit 547ba725dd57afaf8cbeeb340bfb6b06ecc760a6
Author: Thomas Wabner <[email protected]>
fixed #9
commit 041d4f5e91f43adf8c0a637e17bf6f5100d0e945
Author: Stefan Sauer <[email protected]>
tests: silence xvfb in ui integration tests
commit b1dd2ac6e4d38b759bc2170ec2b3473c3fd89c98
Author: Stefan Sauer <[email protected]>
tests: revert -nolock, that is root only on some versions
commit 584525f126c2dd1f697f74acc50ed7167140de22
Author: Stefan Sauer <[email protected]>
tests: try -nolock for xvfb invocations to workaround drone.io issues
commit 7a835876fb629d256fda7d0a9b4d580b2971c855
Author: Stefan Sauer <[email protected]>
tests: export the DISPLAY var when we launched our own Xvfb only
commit 375a3fd29edcc6ada61bcdb5397fcf80fac23112
Author: Stefan Sauer <[email protected]>
tools: we don't have an upstream relase of gst-1.3.0 yet
commit df9873cbf87368dc654b5c0d5914e01c7cddbfd3
Author: Stefan Sauer <[email protected]>
tools: fix version check for gst
commit a4fe9b5d87ef463ddf90acfcc5a36dd3b47ce262
Author: Stefan Sauer <[email protected]>
tests: fix bt-cmd-cli tests
commit 240c6aae0ad089001fe7e9dfc0cf8849c6cc0a15
Author: Stefan Sauer <[email protected]>
tests: use shunit for integration tests
create mode 100755 tests/shunit2
commit ae436c45a37a9bcf91023f6dd056b1f9fa0cbc8c
Author: Stefan Sauer <[email protected]>
tests: add a new helper to archive the logs
commit ec0a9170e3d86e222c9dc05701e6448ebe2af836
Author: Stefan Sauer <[email protected]>
tests: reflow initialisation
commit 93a78ace6eb0df2027957536646895e33c0a7ef3
Author: Stefan Sauer <[email protected]>
settings: don't crash when GSETTINGS_BACKEND is not in env
commit ec70af626507227e0bba01587e23ab01567f2c75
Author: Stefan Sauer <[email protected]>
tests: remove some duplicated includes
commit 59889c6a3b302d99f6e59fef7dba999f2e08a597
Author: Stefan Sauer <[email protected]>
tests: add comment for uninstalled tests
commit 4193c9d815cacf090fcd96f91cfb73086c7ca42e
Author: Stefan Sauer <[email protected]>
settings: fix NULL ptr deref when closing the dialog
commit 59c299f87d257a679a3d315a02a0c94f866422b8
Author: Stefan Sauer <[email protected]>
settings: fix tree-store columns
commit 4fc14dd192179bf43bafbbf98ed4ac2c99d42d1e
Author: Stefan Sauer <[email protected]>
bt-edit: remove the cogl-option group, its deprecated in 1.16
commit 37b6058f87c18eff56f6682a8eb45e96d2586bba
Author: Stefan Sauer <[email protected]>
main-page-sequence: tweak scrollbar policy
commit aec4f583ce131af6f29e093d4f1d36fa908b22a5
Author: Stefan Sauer <[email protected]>
ui: comment and debug logging tweaks
commit 34cebeedd0a12ded1493c3ec2f43ced307c2505e
Author: Stefan Sauer <[email protected]>
syncviews: port demo to gtk3 and add bug repro
commit 69703013101eba3ddeecb0436b703a33aa7e2c8c
Author: Stefan Sauer <[email protected]>
main-page-sequence: replace a GtkTable with a GtkGrid
commit fda4ef1911c3f8e96acbf7ba7ea7c06d482b17d4
Author: Stefan Sauer <[email protected]>
sequence: drop the separators in the header
commit 00857218433eddb9b937a69bacdb3a9244286320
Author: Stefan Sauer <[email protected]>
setup: prepare the seek event only to when we need it.
commit 64fa66a559555cefe0593e937b105aa2c1c22376
Author: Stefan Sauer <[email protected]>
dynlink: apply fixes from dynlink5
commit 6abd7f9dce8f21f4582a635b84f960d645b66162
Author: Stefan Sauer <[email protected]>
dynlink: use the right probe type
commit 583945398ade30dea1e07da3a9ee688ca28b6a1e
Author: Stefan Sauer <[email protected]>
setup: replace the g_usleep hack with a mutex
commit a9ef737ed95fe357985adea3515bea853a18ce96
Author: Stefan Sauer <[email protected]>
setup: implement dynamic pipeline updates
commit 8808471092e8e724e2b108d5c1c28e0ad36a8290
Author: Stefan Sauer <[email protected]>
dynlink: make adding solid
commit a7f658fb09aa3932f9323f43469e1be5f625c823
Author: Stefan Sauer <[email protected]>
design/input: post to gst-1.0
commit 2ad4c805fb6a573197f4b63caecb6da279d4d3e7
Author: Stefan Sauer <[email protected]>
tools: use the new pad_link_return function for gstreamer if available
commit dcab0853557dbf540ec13b692c28b43f08f3103d
Author: Stefan Sauer <[email protected]>
dynlink: fix do_step functions and add more logging
commit 7e38cdadd954f8b80c6b390716dc02eb92323779
Author: Stefan Sauer <[email protected]>
dynlink: extract a helper for request- and ghost-pads
commit a35f982d3ae6330d247f19690b69fdfa709c93a3
Author: Stefan Sauer <[email protected]>
pixbuf: remove custum pixbuf loading code
commit 4f2d1eb4113ac2647aa086d227100a6c93e070a9
Author: Stefan Sauer <[email protected]>
pixbuf: replace two more icon with theme icons
delete mode 100644 pixmaps/stock_media-fwd.png
delete mode 100644 pixmaps/stock_media-next.png
delete mode 100644 pixmaps/stock_media-pause.png
delete mode 100644 pixmaps/stock_media-play.png
delete mode 100644 pixmaps/stock_media-prev.png
delete mode 100644 pixmaps/stock_media-rec.png
delete mode 100644 pixmaps/stock_media-rew.png
delete mode 100644 pixmaps/stock_media-shuffle.png
delete mode 100644 pixmaps/stock_media-stop.png
delete mode 100644 pixmaps/stock_repeat.png
delete mode 100644 pixmaps/stock_volume.png
commit aaa959b9788c3c5f8c82276df006c50f83700ac0
Author: Stefan Sauer <[email protected]>
pixbuf: remove some now unused pixbuf code
commit 7bb0bb41be069c6c6cb9ebb0070ab41947a53517
Author: Stefan Sauer <[email protected]>
settings: use theme icons
delete mode 100644 pixmaps/prefs-audio-card.png
delete mode 100644 pixmaps/prefs-input-gaming.png
delete mode 100644 pixmaps/prefs-input-keyboard.png
commit 0b153b07f0f2dd5debee814739caf3b429d9f4f1
Author: Stefan Sauer <[email protected]>
autofoo: make autofoo happy about README.md
commit 46223ab60717436b3e230c0e6f650f299b5d1746
Author: Stefan Sauer <[email protected]>
dynlink: comment updates
commit 68a00612dc3d69fbc76daffa0f99108824372dd2
Author: Stefan Sauer <[email protected]>
pattern-editor: grab some colors from the old style again
commit 9593dff736be00d9bcc423079800abb53926364f
Author: Stefan Sauer <[email protected]>
README: markdown fixes
commit 6ec099108ff1749f1c0a461020535376c258cfe1
Author: Stefan Sauer <[email protected]>
README: aparently a plain README won't be rendered as markdown
delete mode 100644 README
create mode 100644 README.md
commit 86c8e4bf2f365b1c96ff1d1441cc964418be3e6d
Author: Stefan Sauer <[email protected]>
REAME: more markdown and rename back.
create mode 100644 README
delete mode 100644 readme.md
commit d68d34a9c915df44d6398a2191cceb1d2361ee2d
Author: Stefan Sauer <[email protected]>
pattern-editor: fix theme colors
commit 644d177addc424a4e5556a05e7584701121e075a
Author: Stefan Sauer <[email protected]>
machine-canvas: the background color from the theme is in 'base'
commit 6d18a41c0721532f31da0c910fd580897109225e
Author: Stefan Sauer <[email protected]>
stylecolors: make stylecolors work with gtk2/3 and fix a typo
commit 2a7b17a32727fef7c00f42523c0d98a9a6cd95fa
Author: Stefan Sauer <[email protected]>
sequence: fix color mis-match of shading and selection
commit d80b5822650c6fd71fd9702eb3c63a58495b0eea
Author: Stefan Sauer <[email protected]>
ui: move the machine colors to css
commit c0f0e7c105c146ec09c44e886b323a17f6eb0afe
Author: Stefan Sauer <[email protected]>
ui-resources: remove one now unused function
commit f46e49412ffef4c3072d0dc928c899fd06fbbbef
Author: Stefan Sauer <[email protected]>
ui: move signal analyzer colors to css theme
commit 13dd2f526dbf5583fd4071d162c98b9b42fd9322
Author: Stefan Sauer <[email protected]>
ui: replace more colors with css themeing
commit ec96cbecdef2f46fc8b19c231b89dbdc7fd3bfd4
Author: Stefan Sauer <[email protected]>
sequence-view: cache colors
commit eb5d2fcdbdb9a96d4bb297f9e748ec4e851330ab
Author: Stefan Sauer <[email protected]>
ui: replace some static colors with theme colors
commit 66f4eb4d37671534f13a265869d32778d9d5f8e2
Author: waffel <[email protected]>
renamed README to get better github look and feel and added drone.io status badget afgain
delete mode 100644 README
create mode 100644 readme.md
commit 8362dc5db1e373a9a5073a669eb270ce256601e9
Author: Stefan Sauer <[email protected]>
main: defer startup dialogs
commit 323544f8870fa7c4af30a8d9df3fcb017658298a
Author: Stefan Sauer <[email protected]>
design: fix arg handling
commit b86a5e61df20803df4f634afdafb77fa26475df9
Author: Stefan Sauer <[email protected]>
bt-edit: cleanup main() code
commit e917ab196ad953448d76c64f122262d6f670d096
Author: Stefan Sauer <[email protected]>
theme: add preliminary dark-theme support
create mode 100644 src/ui/edit/bt-edit.dark.css
create mode 100644 src/ui/edit/bt-edit.light.css
commit 5e0ace8981cbce75d58b77366298c3bb65e16f12
Author: Stefan Sauer <[email protected]>
rc: remove gtk2 rc files
delete mode 100644 src/ui/edit/bt-edit.compact.gtkrc
delete mode 100644 src/ui/edit/bt-edit.gtkrc
commit 1f7e284c21bc60d924b208bd25df656205352de7
Author: Stefan Sauer <[email protected]>
stylecolors: allow to test different themes
commit 2f4c6f57954e6a612dc147d2d579d539778f27bd
Author: Stefan Sauer <[email protected]>
docs: tell about changing the setup while playing
commit 17494c3609d2699e84ceb750f687ca7f21ff89a7
Author: Stefan Sauer <[email protected]>