-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitlog.txt
4145 lines (3242 loc) · 161 KB
/
gitlog.txt
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 281d419c3439ddd124a74a8f0198aa54b3ce8264
Merge: 78f0779 8efa11b
Author: David Zhang <[email protected]>
Date: Thu Dec 7 13:59:31 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 78f077975a1e58ce8fa89fe57c71cc23a1c5b04c
Author: David Zhang <[email protected]>
Date: Thu Dec 7 13:59:27 2017 -0500
d
src/gui.ml | 2 --
src/model.mli | 1 +
2 files changed, 1 insertion(+), 2 deletions(-)
commit 8efa11b34e51112195d457e7525204894f2e068f
Merge: 1a688f3 29ffe1d
Author: sjb274 <[email protected]>
Date: Thu Dec 7 13:59:23 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 1a688f31dc228e030aebc33525617aa5bc66bd6c
Author: sjb274 <[email protected]>
Date: Thu Dec 7 13:59:17 2017 -0500
removed TODO
src/song.mli | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 29ffe1dd806cd839dbadfd145f1c98df9f66a480
Merge: b97f32e 47513d6
Author: David Zhang <[email protected]>
Date: Thu Dec 7 13:58:29 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit b97f32e3c491eedb419ace6b5eca6bb27555252b
Author: David Zhang <[email protected]>
Date: Thu Dec 7 13:58:27 2017 -0500
slider variants
src/gui.ml | 13 ++++++-------
src/gui.mli | 2 +-
src/input_event_manager.ml | 12 ++++++------
src/model.ml | 19 +++++--------------
src/model.mli | 2 ++
5 files changed, 20 insertions(+), 28 deletions(-)
commit 47513d6ce3fef1c06ea086dc2466b2148d3b0ffe
Author: sjb274 <[email protected]>
Date: Thu Dec 7 13:54:09 2017 -0500
added midi_player comment
src/midi_player.ml | 3 +--
src/midi_player.mli | 1 +
2 files changed, 2 insertions(+), 2 deletions(-)
commit 2ced2047e609dc7ce2b74d9760225b1192f2304b
Merge: 8119a68 c22d13d
Author: sjb274 <[email protected]>
Date: Thu Dec 7 13:39:08 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 8119a688c15f614d85db0e6a7b0e7ff1d29dffcd
Author: sjb274 <[email protected]>
Date: Thu Dec 7 13:38:54 2017 -0500
comment model
src/model.ml | 39 ++++++++++++++++++++++-----------------
src/model.mli | 8 +++-----
2 files changed, 25 insertions(+), 22 deletions(-)
commit c22d13d06e78f5897c4381fd3404b6787ad8c978
Merge: 6f79a19 7f46046
Author: Daniel Weber <[email protected]>
Date: Thu Dec 7 13:24:47 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 6f79a195a65a0803e1e76e1d6e0203b9422563c4
Author: Daniel Weber <[email protected]>
Date: Thu Dec 7 13:24:39 2017 -0500
updated run instruction
3110 Final Project Doc.pdf | Bin 240971 -> 243729 bytes
README.md | 4 ++++
2 files changed, 4 insertions(+)
commit 7f460463b19e6b31f5a6214f34e0958f92a16324
Author: David Zhang <[email protected]>
Date: Thu Dec 7 13:18:17 2017 -0500
commenting
src/gui.ml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit c6eb62e3aabf2285b53f6070629e4ea92377712f
Author: David Zhang <[email protected]>
Date: Thu Dec 7 13:16:09 2017 -0500
commenting
src/input_event_manager.ml | 23 +++++++++++++++++++++--
1 file changed, 21 insertions(+), 2 deletions(-)
commit 86f4a7d50c6666da78f77f04375b203fea9a8e57
Merge: 4f5fa5f 7d420d7
Author: David Zhang <[email protected]>
Date: Thu Dec 7 13:16:03 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 7d420d7a953d2762501e0d6a222cc5b751cabec8
Merge: 69fd95c c3ad77d
Author: Daniel Weber <[email protected]>
Date: Thu Dec 7 13:15:49 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 69fd95c9d07541ec0e5f17af541f4da8d480cad3
Author: Daniel Weber <[email protected]>
Date: Thu Dec 7 13:15:38 2017 -0500
added command line width and height arguments
src/model.ml | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
commit c3ad77db0aad1e2271572c4f62e88d23d2ecb02c
Author: sjb274 <[email protected]>
Date: Thu Dec 7 13:13:54 2017 -0500
made _5_midi _full_midi
src/model.ml | 2 +-
src/resources/elec_data/{elec_5_midi.json => elec_full_midi.json} | 0
src/resources/eq_data/{eq_5_midi.json => eq_full_midi.json} | 0
src/resources/kpsk_data/{kpsk_5_midi.json => kpsk_full_midi.json} | 0
4 files changed, 1 insertion(+), 1 deletion(-)
commit 2679b7832c45af4a74d34a4f509a19a82705ec09
Merge: 16c6361 bf7713a
Author: sjb274 <[email protected]>
Date: Thu Dec 7 13:10:50 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 16c6361e7f991f2ce544cb5861b3f9cd1e953b53
Author: sjb274 <[email protected]>
Date: Thu Dec 7 13:10:41 2017 -0500
added mas comments
src/keyboard_layout.mli | 14 +++++---------
src/model.ml | 1 +
src/model.mli | 1 +
3 files changed, 7 insertions(+), 9 deletions(-)
commit 4f5fa5f9040006f56b4881a3b17b83da005a9a4d
Author: David Zhang <[email protected]>
Date: Thu Dec 7 13:06:24 2017 -0500
comments
src/input_event_manager.ml | 21 +++++++++++++++------
src/metronome.ml | 15 ++++++++++++---
2 files changed, 27 insertions(+), 9 deletions(-)
commit bf7713a16bfb1308e96389cd2c044a15b90a5d30
Merge: e3c63a9 7e3f252
Author: Daniel Weber <[email protected]>
Date: Thu Dec 7 12:54:18 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit e3c63a91095aba0ce6702dab2a91f83f16eee8bf
Author: Daniel Weber <[email protected]>
Date: Thu Dec 7 12:53:48 2017 -0500
added full midi files
lines.py | 16 +
src/resources/conversions/app_midi.js | 35 +
src/resources/elec_data/elec_5_midi.json | 2235 +++++++++++++++++
src/resources/eq_data/eq_5_midi.json | 2920 ++++++++++++++++++++++
src/resources/kpsk_data/kpsk_5_midi.json | 3950 ++++++++++++++++++++++++++++++
5 files changed, 9156 insertions(+)
commit 7e3f2521cff30434a6fd1f7d7e2299da66e20337
Merge: 81214b2 a160b08
Author: sjb274 <[email protected]>
Date: Thu Dec 7 12:48:11 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 81214b21b15edb80dd51b27dda6adb553ce1d34d
Author: sjb274 <[email protected]>
Date: Thu Dec 7 12:47:50 2017 -0500
commented gui_utils
src/gui_utils.ml | 76 ++++++++++++++++++++++++++++++++------------------------
1 file changed, 43 insertions(+), 33 deletions(-)
commit a160b08c14604c1c349cf0affb8361f26529605e
Author: David Zhang <[email protected]>
Date: Thu Dec 7 12:43:25 2017 -0500
bpm slider
src/gui.ml | 10 +---------
src/input_event_manager.ml | 2 +-
src/model.ml | 5 +++--
3 files changed, 5 insertions(+), 12 deletions(-)
commit 252ffe920987c3e73db461986f362cda6c24d078
Merge: bf5a15b 8a25bb8
Author: David Zhang <[email protected]>
Date: Thu Dec 7 12:36:52 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit bf5a15b590659036038a4b4cabfdf8ebf5da66c2
Author: David Zhang <[email protected]>
Date: Thu Dec 7 12:36:17 2017 -0500
d
src/gui.ml | 18 +++++++++++++++++-
src/gui.mli | 5 ++++-
src/model.ml | 3 ++-
3 files changed, 23 insertions(+), 3 deletions(-)
commit 8a25bb8e9ef57a31df8c33b797e09a3cd09ba7ec
Merge: 77a271b ad274dc
Author: sjb274 <[email protected]>
Date: Thu Dec 7 12:14:50 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit 77a271be6df5c056565344d06eb9e57dae9f9621
Author: sjb274 <[email protected]>
Date: Thu Dec 7 12:14:42 2017 -0500
changed button_standard to button
src/{button_standard.ml => button.ml} | 24 ++++++-----
src/{button_standard.mli => button.mli} | 4 ++
src/gui.ml | 8 ++--
src/input_event_manager.ml | 10 ++---
src/model.ml | 74 ++++++++++++++++-----------------
src/model.mli | 16 +++----
6 files changed, 72 insertions(+), 64 deletions(-)
commit ad274dc971fb4b92fc3f4110c00993a107bd3db5
Merge: a215dd0 7b7c068
Author: Daniel Weber <[email protected]>
Date: Thu Dec 7 12:11:27 2017 -0500
merged
commit a215dd012e105884150d5fdcc20d13f162459bfc
Author: Daniel Weber <[email protected]>
Date: Thu Dec 7 12:11:03 2017 -0500
added comments and cleanup
src/audio_effects.ml | 82 ----------------------------------------------
src/fft.ml | 61 +++++++++++++++++++---------------
src/filter.ml | 2 ++
src/input_event_manager.ml | 6 ++--
src/model.ml | 4 +++
src/song.ml | 1 +
src/sound_manager.ml | 12 ++++---
src/synth.ml | 35 +++++++++++---------
8 files changed, 72 insertions(+), 131 deletions(-)
commit 7b7c0688710f146fee03bfceeae377823fb42762
Author: sjb274 <[email protected]>
Date: Thu Dec 7 11:57:53 2017 -0500
added clarification functions/removed unneeded parens
src/gui.ml | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
commit 96177ec494eca77b34242795ccead6962b696999
Author: sjb274 <[email protected]>
Date: Thu Dec 7 00:59:23 2017 -0500
fixed cop paste errors
src/button_standard.ml | 2 +-
src/button_standard.mli | 2 +-
src/gui.ml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
commit b589eb2d29efe3e81ec2d1ce98aa1745ab1159ad
Author: sjb274 <[email protected]>
Date: Thu Dec 7 00:40:37 2017 -0500
changed comment in gui.mli
src/gui.mli | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit bdaf941af367b3fe5fd36c671518b95a25d043dc
Merge: d566d75 dacee41
Author: sjb274 <[email protected]>
Date: Thu Dec 7 00:38:24 2017 -0500
Merge branch 'master' of https://github.coecis.cornell.edu/dw475/3110-final
commit d566d75fd0a70dfbcf8f9ed9bffa63f09e544d48
Author: sjb274 <[email protected]>
Date: Thu Dec 7 00:38:08 2017 -0500
cleaned and commented gui.ml
src/gui.ml | 220 +++++++++++++++++++++++++++++++++----------------------------
1 file changed, 119 insertions(+), 101 deletions(-)
commit 70e2f2e054a64d1956259be6522f4c03094b3487
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 23:40:42 2017 -0500
updated main makefile
Makefile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
commit dacee413eee03e6e6122d957f1fd0b1448f7092f
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 23:34:27 2017 -0500
added readme
README.md | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
commit cf748a020172df6f6c6908ba517788738d9a352f
Author: David Zhang <[email protected]>
Date: Wed Dec 6 23:25:48 2017 -0500
comments
src/model.mli | 7 +++++++
1 file changed, 7 insertions(+)
commit da9915c0d3d68d4dbfc8aa6c64221cc1c2ec62dd
Merge: 620e4a6 60dc0eb
Author: David Zhang <[email protected]>
Date: Wed Dec 6 23:23:05 2017 -0500
Merge branch 'master' into synth_gui
commit 620e4a61380f3b8508a42ea4fbae499cd29666b1
Author: David Zhang <[email protected]>
Date: Wed Dec 6 23:22:40 2017 -0500
comment
src/model.mli | 7 +++++++
1 file changed, 7 insertions(+)
commit 60dc0ebe37c062380e071f61803b1173488d886d
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 23:17:38 2017 -0500
cleanup
src/model.ml | 25 +++++++++----------------
1 file changed, 9 insertions(+), 16 deletions(-)
commit af4e7279b28f9e72824a468182f7a345ef78d347
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 23:03:40 2017 -0500
minor sound manager and adsr fixes
src/adsr.ml | 7 ++++++-
src/sound_manager.ml | 10 ++++------
2 files changed, 10 insertions(+), 7 deletions(-)
commit d8ceb6c04ca1af8940a93580c578295310f32563
Merge: 6ccc316 595e892
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 22:52:24 2017 -0500
Merge pull request #49 from dw475/synth_gui
Synth gui
commit 595e892e01ee56f77f8edff5b83dd52872cd343b
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 22:51:05 2017 -0500
removed merged comments
src/gui.ml | 19 -------------------
src/input_event_manager.ml | 24 ------------------------
2 files changed, 43 deletions(-)
commit 9cd95285bc8c2464f154573ceb04fc098ee43a79
Merge: c77a4a7 6ccc316
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 22:49:27 2017 -0500
merged
commit c77a4a7385b1af79729e56a56ea69eb4fc191721
Merge: 02bfd5b eec5eef
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 22:37:29 2017 -0500
merged
commit 02bfd5be49f2bedcf93d8d1751d37d0585fde9fe
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 22:37:06 2017 -0500
adsr bugfixes
src/adsr.ml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit eec5eefcc9eaf17ec3ef1ab613a8aebb5f452585
Merge: 6d221c4 c4f0ddf
Author: David Zhang <[email protected]>
Date: Wed Dec 6 22:30:09 2017 -0500
Merge branch 'synth_gui' of https://github.coecis.cornell.edu/dw475/3110-final into synth_gui
commit 6d221c42f6dadfc3c4161efb65613efbdd31fcf4
Author: David Zhang <[email protected]>
Date: Wed Dec 6 22:30:06 2017 -0500
spacebar fix
src/input_event_manager.ml | 1 +
1 file changed, 1 insertion(+)
commit c4f0ddfa35be9b4d513d0c0cf3e7673fcf2243cb
Merge: d48788c 5220012
Author: sjb274 <[email protected]>
Date: Wed Dec 6 22:26:39 2017 -0500
Merge branch 'synth_gui' of https://github.coecis.cornell.edu/dw475/3110-final into synth_gui
commit d48788c780269a499cd67ff232168e7cfa1a5929
Author: sjb274 <[email protected]>
Date: Wed Dec 6 22:26:36 2017 -0500
added some comments to gui
src/gui.ml | 68 ++++++++++++++++++++++++++++++++++++++++++--------------------
1 file changed, 46 insertions(+), 22 deletions(-)
commit 5220012ae01f107dad9c38a2527e0f8d6033d8e6
Author: David Zhang <[email protected]>
Date: Wed Dec 6 22:26:24 2017 -0500
space bar
src/model.ml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
commit 806cfc700c003712ec19ff2683562c8ace168154
Author: David Zhang <[email protected]>
Date: Wed Dec 6 22:23:41 2017 -0500
sliders
src/model.ml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 080298e5f9a240ae9a4a5bd59f8f7f11578a2da4
Merge: 933c763 676612d
Author: David Zhang <[email protected]>
Date: Wed Dec 6 22:20:55 2017 -0500
Merge branch 'synth_gui' of https://github.coecis.cornell.edu/dw475/3110-final into synth_gui
commit 933c763313089997b239bc88008af891647c4ce9
Author: David Zhang <[email protected]>
Date: Wed Dec 6 22:20:53 2017 -0500
sliders
src/gui.ml | 76 +++++++++++++++++++++++++++++++++++++++++++---
src/input_event_manager.ml | 59 +++++++++++++++++++++--------------
src/model.ml | 42 +++++++++++++++++++++++++
src/model.mli | 20 ++++++++++++
4 files changed, 171 insertions(+), 26 deletions(-)
commit 6ccc3163b30dce24b32687e985c71658568f0ecb
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 21:51:08 2017 -0500
minor clear keyboard bugfix
src/input_event_manager.ml | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
commit cf8346d270d30d97815874ff4a88204d695adb8e
Author: David Chu <[email protected]>
Date: Wed Dec 6 20:55:48 2017 -0500
added comments
src/gui.ml | 6 +++++-
src/input_event_manager.ml | 4 ++++
src/midi.ml | 8 ++++++++
src/model.ml | 3 ++-
src/tick.ml | 6 +++++-
5 files changed, 24 insertions(+), 3 deletions(-)
commit 676612d16c5e76459150335d1e43f2d4262e0651
Author: sjb274 <[email protected]>
Date: Wed Dec 6 19:56:18 2017 -0500
added waveform selectors
src/gui.ml | 20 ++++++++++++--
src/input_event_manager.ml | 3 ++-
src/model.ml | 66 ++++++++++++++++++++++++++++++++++++++++------
src/model.mli | 11 +++++++-
src/sound_manager.ml | 3 +--
src/synth.ml | 12 ++++-----
src/synth.mli | 5 +---
7 files changed, 95 insertions(+), 25 deletions(-)
commit 0959cff6d8079b9d3067031c47d5dfc6246941e4
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 19:24:59 2017 -0500
added doc
3110 Final Project Doc.pdf | Bin 0 -> 240971 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
commit 7a044d7374afdf46fe1bba29ef32f63049947b6b
Author: sjb274 <[email protected]>
Date: Wed Dec 6 18:54:34 2017 -0500
added synth buttons
src/gui.ml | 18 +++++++++++++-
src/input_event_manager.ml | 3 ++-
src/model.ml | 61 +++++++++++++++++++++++++++++++++++++++-------
src/model.mli | 3 +++
4 files changed, 74 insertions(+), 11 deletions(-)
commit 17dfc36b504fe8e50b654778a4cf5b11f6998e2b
Merge: 88f4efb 491eb46
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 13:40:16 2017 -0500
merged
commit 491eb4667fcc35af027b7fab0b5c1a9d4d2708fa
Author: Daniel Weber <[email protected]>
Date: Wed Dec 6 13:34:34 2017 -0500
made filter a global filter instead of one per sound
src/model.ml | 11 ++++++-----
src/model.mli | 2 +-
src/sound_manager.ml | 18 ++++++++++--------
src/synth.ml | 10 ++--------
src/synth.mli | 4 ++--
5 files changed, 21 insertions(+), 24 deletions(-)
commit 88f4efb7bceb24e8ca9aa52bf0e6232732f96e7b
Author: sjb274 <[email protected]>
Date: Wed Dec 6 01:43:52 2017 -0500
added more precision... cuz why not
src/model.ml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit ea62cee84fae438f102ed161d1f979d1bef2731a
Author: sjb274 <[email protected]>
Date: Wed Dec 6 01:36:44 2017 -0500
added buttons to go to the synth and back, also added grid (works?)
src/button_standard.ml | 32 ++++++++---
src/button_standard.mli | 14 +++--
src/gui.ml | 89 +++++++++++++++++++++++-------
src/input_event_manager.ml | 76 ++++++++++++++++----------
src/main.ml | 2 +-
src/model.ml | 131 ++++++++++++++++++++++++++++++++++++++-------
src/model.mli | 11 +++-
7 files changed, 274 insertions(+), 81 deletions(-)
commit 18178f7a4b25cafeb64807ca61c588636370d4ff
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 22:56:25 2017 -0500
updated install scripts for ounit and yojson
install/mac_install.sh | 2 ++
install/vm_install.sh | 5 ++++-
2 files changed, 6 insertions(+), 1 deletion(-)
commit 2806ebc43fe239c7d2b5bf0411813c152fdd9002
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 22:36:58 2017 -0500
fixed filters and adsr and added the params to the model
src/adsr.ml | 84 +++++++++++++++++++++++++++++++++-------------------
src/filter.ml | 22 ++++++++------
src/filter.mli | 9 +++---
src/gui.ml | 3 +-
src/model.ml | 18 ++++++++++-
src/model.mli | 8 +++++
src/sound_manager.ml | 2 +-
src/synth.ml | 9 +++---
8 files changed, 102 insertions(+), 53 deletions(-)
commit 8820f5258a33a972b4bd4c699f33e682b7f11733
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 21:19:20 2017 -0500
added a tick module
src/main.ml | 54 +++++++++---------------------------------------------
src/tick.ml | 37 +++++++++++++++++++++++++++++++++++++
src/tick.mli | 6 ++++++
3 files changed, 52 insertions(+), 45 deletions(-)
commit b5674927a303eec8cc6df1acf09105a47a0cac03
Author: David Chu <[email protected]>
Date: Tue Dec 5 13:05:18 2017 -0500
Scrub shows beats/total beats on the right side
src/gui.ml | 5 +++++
src/main.ml | 1 +
src/model.ml | 10 +++++++++-
src/model.mli | 6 ++++++
4 files changed, 21 insertions(+), 1 deletion(-)
commit 6326793e3d25acbc3206cfa9a953534280a6e348
Author: David Zhang <[email protected]>
Date: Tue Dec 5 12:12:57 2017 -0500
format
src/gui.ml | 24 +++++++++++++++++++-----
src/model.ml | 3 ++-
2 files changed, 21 insertions(+), 6 deletions(-)
commit e55cea8e16b20f878f2ca89db2b7c12689833d7b
Author: David Zhang <[email protected]>
Date: Tue Dec 5 12:09:29 2017 -0500
bpm text
src/gui.ml | 17 ++++++++++++++---
src/main.ml | 2 +-
src/metronome.ml | 6 +++++-
src/metronome.mli | 6 ++++++
src/model.ml | 2 +-
src/model.mli | 2 +-
6 files changed, 28 insertions(+), 7 deletions(-)
commit 8634cd0ff59b0e0caf801a8ad84aadcfe0082230
Merge: 3249e38 7ae4aad
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 02:35:31 2017 -0500
Merge pull request #46 from dw475/bpm_slider
BPM slider
commit 7ae4aad04e9b6c7df102a179b0de1f876065eff7
Author: sjb274 <[email protected]>
Date: Tue Dec 5 02:31:14 2017 -0500
moved elements around slightly
src/gui.ml | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
commit fdcc4f7e28818cf14916aea6c8918a1ba8a02836
Merge: 2c46327 3249e38
Author: sjb274 <[email protected]>
Date: Tue Dec 5 02:20:48 2017 -0500
merged
commit 3249e385cc4b8b8daf6ef175d81d9bc1c2a1fc34
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 01:48:37 2017 -0500
fixed static
src/sound_manager.ml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
commit a8fca425f922e7356f3bbb489613832e45d27eb2
Merge: 87bf5b1 904fba3
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 01:34:14 2017 -0500
merged
commit 87bf5b102d350f483d3b4a2e071d59c2a248121a
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 01:32:24 2017 -0500
minor filter modification
src/filter.ml | 4 +---
src/gui.ml | 3 +--
src/input_event_manager.ml | 2 +-
src/model.ml | 2 +-
src/synth.ml | 13 +++++++------
5 files changed, 11 insertions(+), 13 deletions(-)
commit 2c463272850f0e055af514be81fdd638afcce3b1
Author: David Zhang <[email protected]>
Date: Tue Dec 5 01:32:12 2017 -0500
clear keyboard
src/input_event_manager.mli | 4 ++++
src/main.ml | 5 ++++-
2 files changed, 8 insertions(+), 1 deletion(-)
commit f0db5a1bc3e601b24cca1cadc6c5554c97d8df57
Author: David Zhang <[email protected]>
Date: Tue Dec 5 01:26:31 2017 -0500
bpm slider
src/model.ml | 3 +++
1 file changed, 3 insertions(+)
commit 904fba313b670ee859bc87e9e2122f18efa85439
Merge: c13651f b6104f2
Author: sjb274 <[email protected]>
Date: Tue Dec 5 01:23:31 2017 -0500
merged
commit 5fde8e5ae05320ee99abdadacff6e28c197d16bd
Author: David Zhang <[email protected]>
Date: Tue Dec 5 01:15:19 2017 -0500
format
src/metronome.ml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
commit 30997e6219803ca2e883a16efc7b190f40f8194e
Author: David Zhang <[email protected]>
Date: Tue Dec 5 01:11:54 2017 -0500
fix
src/metronome.ml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
commit c13651fe69bbdd9791b88ed427ff134f9ba3c814
Merge: 091cafa a6e39f4
Author: sjb274 <[email protected]>
Date: Tue Dec 5 01:10:36 2017 -0500
merged
commit 4dce1ff02b92c6a3cf661c10a82065f893e85ffd
Merge: 5ba6a28 33740d7
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:52:30 2017 -0500
Merge branch 'bpm_slider' of https://github.coecis.cornell.edu/dw475/3110-final into bpm_slider
commit 5ba6a284775b3cb4d6c493b3b950331fdf747c70
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:52:29 2017 -0500
reverse
src/gui.ml | 64 +++++++++++++++++++++++++++++++++++++++-
src/gui.mli | 3 ++
src/input_event_manager.ml | 52 ++++++++++++++++++++++++++++-----
src/main.ml | 39 +++++++++++++++++++++----
src/metronome.ml | 16 ++++++++++
src/metronome.mli | 12 ++++++++
src/midi.ml | 38 ++++++++++++++++++++++--
src/midi.mli | 11 +++++++
src/midi_player.ml | 1 -
src/model.ml | 73 +++++++++++++++++++++++++++++++++++++++-------
src/model.mli | 48 ++++++++++++++++++++++++++----
11 files changed, 322 insertions(+), 35 deletions(-)
commit 33740d7b79126861a004e6f3e70ac20c473374da
Merge: 6bcc4b7 13ac0e7
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:49:30 2017 -0500
Merge branch 'bpm_slider' of https://github.coecis.cornell.edu/dw475/3110-final into bpm_slider
commit 6bcc4b7869a457594a02a10cf14673cff1a0c969
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:49:27 2017 -0500
k
src/model.ml | 1 -
1 file changed, 1 deletion(-)
commit a6e39f4b8de9848f53ad65d033d5c4201c9ee2b7
Author: sjb274 <[email protected]>
Date: Tue Dec 5 00:41:46 2017 -0500
fixed graphical bug with select and cancel
src/gui.ml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
commit 13ac0e71cea548ccf8560e8b0afbad5eab2e9799
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:37:47 2017 -0500
d
src/model.ml | 1 -
1 file changed, 1 deletion(-)
commit 7ba25a964e11114a56ba454fca1db326b74b06ee
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:30:48 2017 -0500
ds
src/model.ml | 1 +
1 file changed, 1 insertion(+)
commit b6104f2ee23a00d0888fd4a681ef2491b0fde0db
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 00:28:45 2017 -0500
added zip script and fixed unmatched patterns
Makefile | 2 ++
src/Makefile | 2 +-
src/eq.json | 21 ------------
src/gui.ml | 1 +
src/input_event_manager.ml | 83 ++++++++++++++++++++++++----------------------
5 files changed, 47 insertions(+), 62 deletions(-)
commit 585564fb09ab3eb8e61aae2e93fb23959682da42
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:26:57 2017 -0500
bpm start
src/input_event_manager.ml | 6 ++++--
src/main.ml | 1 +
src/model.ml | 1 -
3 files changed, 5 insertions(+), 3 deletions(-)
commit de52806963245df0fec0737aa232a6c0a934af57
Author: sjb274 <[email protected]>
Date: Tue Dec 5 00:23:09 2017 -0500
removed unused files
src/file_button.ml | 86 ----------------------------------------------
src/file_button.mli | 33 ------------------
src/gui.ml | 4 +--
src/input_event_manager.ml | 1 -
4 files changed, 2 insertions(+), 122 deletions(-)
commit 71025f8629c6962ffccbbf7788cb696432d0b0a7
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:21:12 2017 -0500
slider
src/main.ml | 1 -
1 file changed, 1 deletion(-)
commit e1eaeac541619966f306b4c410a9ec1e64693a40
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:18:42 2017 -0500
slider
src/metronome.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit b226445f52c92a6fd115ccf756b9b25d6389a063
Author: sjb274 <[email protected]>
Date: Tue Dec 5 00:17:18 2017 -0500
converted all buttons to use the modular syntax
src/gui.ml | 72 +++++++++++++++++++++-------------------------
src/gui.mli | 6 ----
src/input_event_manager.ml | 17 ++---------
src/model.ml | 49 +++++++++++++++++--------------
src/model.mli | 2 +-
5 files changed, 63 insertions(+), 83 deletions(-)
commit 3c1bce8eb01c08f810cd84ed316241ab0d340163
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:16:50 2017 -0500
metronome
src/metronome.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit b44f316a7e6081c714ffcf9bc37536194caa7c3f
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:14:57 2017 -0500
bpm slider
src/gui.ml | 1 -
src/main.ml | 2 ++
src/metronome.ml | 4 ++++
src/metronome.mli | 5 ++++-
src/model.ml | 5 ++++-
5 files changed, 14 insertions(+), 3 deletions(-)
commit 5bcafd41933174aa2ff7727c1dc9097371046e0b
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 00:12:01 2017 -0500
changed mac install error message
install/mac_install.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit add5fdddf85c14f97c6cce34df9d4665cbb1e594
Author: Daniel Weber <[email protected]>
Date: Tue Dec 5 00:08:37 2017 -0500
made install scripts executable and removed unused files
audio_test/.merlin | 4 -
audio_test/Makefile | 6 --
audio_test/_tags | 3 -
audio_test/a0.mp3 | Bin 23822 -> 0 bytes
audio_test/a0.wav | Bin 249934 -> 0 bytes
audio_test/agane.ttf | Bin 66416 -> 0 bytes
audio_test/draw.ml | 34 --------
audio_test/install.sh | 5 --
audio_test/linux_install_deps.sh | 20 -----
audio_test/mac_install_deps.sh | 1 -
audio_test/notes | 3 -
audio_test/test.ml | 171 ---------------------------------------
audio_test/ttf_install.sh | 2 -
audio_test/virtual_box_setup.sh | 34 --------
graphics_test/Makefile | 6 --
graphics_test/_tags | 3 -
graphics_test/test.ml | 28 -------
gtk_test/.merlin | 2 -
gtk_test/Makefile | 15 ----
gtk_test/_tags | 1 -
gtk_test/graph.ml | 107 ------------------------
gtk_test/graphtest | Bin 2132019 -> 0 bytes
gtk_test/install.sh | 1 -
gtk_test/mac_install_deps.sh | 1 -
gtk_test/simple | Bin 2093854 -> 0 bytes
gtk_test/simple.cmi | Bin 1731 -> 0 bytes
gtk_test/simple.cmo | Bin 7208 -> 0 bytes
gtk_test/simple.ml | 32 --------
gtk_test/test.ml | 45 -----------
gtk_test/tutorial.ml | 5 --
install/mac_install.sh | 0
install/vm_install.sh | 0
32 files changed, 529 deletions(-)
commit b72c16bce27cf7be35c1c0753d0bcb0eefa2fe23
Merge: 91ca723 bf6b120
Author: David Zhang <[email protected]>
Date: Tue Dec 5 00:04:02 2017 -0500
Merge branch 'feature_34' into bpm_slider
commit bf6b120f65e819fc785623f52824f2c2276ff543