-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathet --hard HEAD~1
20495 lines (13796 loc) · 647 KB
/
et --hard HEAD~1
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
[33mcommit a55d2c4daa77e42572c7440787140d536dc65d02[m[33m ([m[1;36mHEAD -> [m[1;32mjuce_template[m[33m, [m[1;31morigin/juce_template[m[33m)[m
Author: dave <[email protected]>
Date: Sun Dec 6 17:50:17 2020 +0000
Added legacy CPU definition for Windows
[33mcommit 9da7981bc2cd50c154b1d094098764a074d94dd9[m
Author: dave <[email protected]>
Date: Tue Dec 1 00:12:00 2020 +0000
Prevent binaries folder opening on Linux when exporting from cli
[33mcommit 5f500a40bbb29c9b886866ed535cc213618559cb[m
Author: dave <[email protected]>
Date: Sun Nov 29 19:31:30 2020 +0000
Removed underscores in binary name (instead of adding them) because I realised it messes with the WinInstaller generator
[33mcommit 02f1763f2c181c44e072c0bb34402847cb23c232[m
Author: dave <[email protected]>
Date: Fri Nov 27 19:14:44 2020 +0000
Fixed typo in ProjectTemplate
[33mcommit 631d1f677c329868db7ef349c04b4df98f4d36fc[m
Author: dave <[email protected]>
Date: Wed Nov 25 15:35:22 2020 +0000
Improved output binary naming. Added bigjob flag to VS2017. Added VST3 SDK path
[33mcommit 1837d4617592da0a22a2cfeb70e2f08abd70c64b[m[33m ([m[1;31morigin/cliOptions[m[33m, [m[1;32mcliOptions[m[33m)[m
Author: dave <[email protected]>
Date: Wed Oct 21 17:35:09 2020 +0100
Prevent binaries directory from opening automatically when exporting from CLI
[33mcommit 97c81ad4c3ad9e22b927847f450bf385c29f5ee6[m[33m ([m[1;31morigin/ippExportPaths[m[33m, [m[1;32mippExportPaths[m[33m)[m
Author: dave <[email protected]>
Date: Fri Oct 16 17:53:58 2020 +0100
Fix ipp paths being added to projucer file even when ipp is disabled.
[33mcommit b995d60d74904ddb0391012c969f1e10bd1c6673[m[33m ([m[1;31morigin/scriptnode[m[33m, [m[1;32mremove[m[33m, [m[1;32mcheckout[m[33m)[m
Author: chrisboy2000 <[email protected]>
Date: Wed Aug 19 18:19:31 2020 +0200
- added Export as AIFF with metadata tool function
[33mcommit af0d2bce4969bdc569c021a0586ef5b10bdd3ce5[m
Merge: 99d933ae fcb6888b
Author: Christoph Hart <[email protected]>
Date: Wed Aug 19 17:36:06 2020 +0200
Merge pull request #160 from davidhealey/fix_gnux_compilation
Fix gnux compilation
[33mcommit fcb6888be68ee807f5a0ab01e9690c291410c7e1[m[33m ([m[1;31morigin/fix_gnux_compilation[m[33m, [m[1;32mfix_gnux_compilation[m[33m)[m
Author: davidhealey <[email protected]>
Date: Tue Aug 18 01:17:46 2020 +0100
Cast a few ints to fix ambiguous overload error
[33mcommit 61018e747c811d504000ebdf21ae605c6672271f[m
Author: davidhealey <[email protected]>
Date: Mon Aug 17 13:15:57 2020 +0100
Corrected file naming issue
[33mcommit 99d933ae78b23007c1880026a52bfecd64404838[m
Author: chrisboy2000 <[email protected]>
Date: Thu Aug 6 15:09:13 2020 +0200
- added proper ColumnWidthRatio array property to PresetBrowser floating tile
[33mcommit 0fc602a51c53dceed03e7ff78410a9f01a8b7553[m
Author: chrisboy2000 <[email protected]>
Date: Tue Aug 4 20:15:54 2020 +0200
- post-merge fixes
[33mcommit 707beb61c072864dd01741dcab7120186ff44bfc[m
Merge: adb1723f 2607c151
Author: Christoph Hart <[email protected]>
Date: Tue Aug 4 13:51:30 2020 +0200
Merge pull request #156 from davidhealey/develop
Merging David Healey's develop branch into scriptnode
[33mcommit adb1723f28f4fddc4fe29c0ead444af0c0b84a01[m
Merge: 0f25f9b0 d30e21dd
Author: chrisboy2000 <[email protected]>
Date: Tue Aug 4 13:31:40 2020 +0200
Merge branch 'scriptnode' of https://github.com/christophhart/HISE into scriptnode
[33mcommit 0f25f9b0b25236087bffe083f4c12321f90e8196[m
Author: chrisboy2000 <[email protected]>
Date: Tue Aug 4 13:27:25 2020 +0200
- added Menu->View->Reset Look and Feel to remove scripted LAF from HISE UI
- added `drawScrollbar()` to scripted LAF
- made all floating tiles use the custom LAF for their child elements if possible (eg. MidiSourcePanel)
- fixed context menu in Javascript editor
- fixed selection of include files
[33mcommit d30e21dd1fb7f10f037986200fef6ab3e293d4bc[m
Author: chrisboy2000 <[email protected]>
Date: Sat Aug 1 23:37:20 2020 +0200
- added Assign to Midi CC to MIDI learn context menu
[33mcommit 060a887f06595a97f1dc1770bba5292f97f7221b[m
Author: chrisboy2000 <[email protected]>
Date: Sat Aug 1 23:22:42 2020 +0200
- fixed MIDI mappings not being initialised in the compiled plugin
[33mcommit 640e14dfdce2ea0eb512e57551888201a4023ad9[m
Author: chrisboy2000 <[email protected]>
Date: Sat Aug 1 22:27:53 2020 +0200
- fix compilation on macOS?
[33mcommit e705bbd2df16f609d85f4d4fdc67412f55f93f86[m
Merge: 60f85322 33c1f835
Author: chrisboy2000 <[email protected]>
Date: Sat Aug 1 22:21:10 2020 +0200
Merge branch 'scriptnode' of https://github.com/christophhart/HISE into scriptnode
[33mcommit 60f85322003cb8e8702a718a7917d0f197bf0230[m
Author: chrisboy2000 <[email protected]>
Date: Sat Aug 1 22:21:05 2020 +0200
- fixed MIDI file import with non-960 ticks
[33mcommit 2607c1514c5e867928c93a6fad83ab9da2be9e2d[m
Merge: 2b898fd1 a30cfe59
Author: davidhealey <[email protected]>
Date: Thu Jul 30 17:31:27 2020 +0100
Merged scriptnode into develop
[33mcommit a30cfe5969c672a33a55a0f9ae5a3a51c624da9a[m
Merge: e89fc69b 33c1f835
Author: davidhealey <[email protected]>
Date: Thu Jul 30 17:16:18 2020 +0100
Merge branch 'scriptnode' of https://github.com/christophhart/HISE into scriptnode
[33mcommit 33c1f8359286f8aa15af4091bfe4b3861877aae8[m
Author: chrisboy2000 <[email protected]>
Date: Thu Jul 30 13:04:02 2020 +0200
- added option to remove icon in alert window
[33mcommit 37c640cbd2c39709fe5caa781ac8b3cfc6ff4ed9[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 21:33:06 2020 +0200
- added "Password" as font style to labels to allow hidden text input
[33mcommit dbd5c1fd72604227daa1cb31572832a0553c3624[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 21:31:57 2020 +0200
- fixed custom fonts in alertwindow look and feel
[33mcommit 28ee485103f273554dc7101c641d9d22f17f1351[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 10:08:33 2020 +0200
- added merged API docs
[33mcommit b7256d6ae17b1c75fc2c382a72f066edcb57eaa0[m
Merge: bc92cf21 e33d27a6
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 10:01:57 2020 +0200
Merge branch 'scriptnode' of https://github.com/christophhart/HISE into scriptnode
[33mcommit bc92cf21dc32b34092c0f6bc4028a363bf5616a7[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 10:01:41 2020 +0200
- added scripting API for encrypted expansions
[33mcommit becd3d55072b6b17d236de992750060fa8309c9e[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 10:00:40 2020 +0200
- added optional preset browser expansion column
[33mcommit 59a07c4ac241fd84d7dbaefee47f81fd925a2f33[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 10:00:02 2020 +0200
- added custom expansion flag on export based on ExpansionType setting
[33mcommit 34f649e30efbd19b5c7f233215660baf374b8401[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 09:59:20 2020 +0200
- various expansion fixes
[33mcommit 87278a0d3f16578a6d8314e6a31a7b7c67aa4ac7[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 29 09:55:32 2020 +0200
- replaced all expansion preprocessors with runtime setting `Project::ExpansionType`
[33mcommit e33d27a6f50681fb08d498991703cf55267fcaf1[m
Author: chrisboy2000 <[email protected]>
Date: Tue Jul 28 23:09:56 2020 +0200
- added ScriptPanel.addChildPanel() methods
[33mcommit 8e4b19df125a5f43a2627ecbf31f2cf29a7bd89d[m
Author: chrisboy2000 <[email protected]>
Date: Mon Jul 27 10:10:06 2020 +0200
- added alertwindow look and feel customisation
[33mcommit 915a6f78777c774563671c1bed5b85c08170846b[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 22 20:17:50 2020 +0200
- added customizable settings LAF
[33mcommit 7e15128fe21698a762f9fbe0873647eb2d725f65[m
Author: chrisboy2000 <[email protected]>
Date: Wed Jul 22 20:10:04 2020 +0200
- added `Server.setHttpHeader()` function
[33mcommit 2b898fd15c1e386cb0bef5150243e6bc0ecf5d8f[m
Author: davidhealey <[email protected]>
Date: Sun Jul 19 15:39:32 2020 +0100
Fix merge error in last commit
[33mcommit 929de350ae0037e16471a532c4b44a5e87cdbae5[m
Author: chrisboy2000 <[email protected]>
Date: Sun Jul 19 14:21:21 2020 +0200
- fixed FileSystem.AppData folder
[33mcommit 49b994302e8587dd3f3fb6b812091f9ba794bc87[m
Author: chrisboy2000 <[email protected]>
Date: Sat Jul 18 18:06:12 2020 +0200
- added File.deleteFileOrDirectory()
[33mcommit 32b8de284f42f953e72ecd2c619bdea4e40908b5[m
Author: chrisboy2000 <[email protected]>
Date: Sat Jul 18 11:09:55 2020 +0200
- added File and Server Scripting API
[33mcommit c82a00f0d45798a437591c793a73e2736663ca99[m
Author: chrisboy2000 <[email protected]>
Date: Fri Jul 17 21:45:02 2020 +0200
- fixed autocomplete not showing scriptnode classes
[33mcommit 370a37dbd1ab2ca8b2c19650ed79390895ddb07b[m
Merge: 96512b8b 4a778921
Author: davidhealey <[email protected]>
Date: Sun Jul 12 22:41:52 2020 +0100
Merge branch 'ustk-develop' into develop
[33mcommit 4a778921e31d850d185041f3a24d5700b71886ec[m
Merge: 96512b8b a0a9eca7
Author: davidhealey <[email protected]>
Date: Sun Jul 12 22:41:10 2020 +0100
Merge branch 'develop' of https://github.com/ustk/HISE into ustk-develop
[33mcommit 6e4e940bc61f87b122ae17ca754706e8aa85aead[m
Author: Christoph Hart <>
Date: Sat Jul 11 13:46:38 2020 +0200
- fix samplerate issue in FL Studio on macOS
[33mcommit bf968d90af8ab93213a650816bc9a0764f5b5ca2[m
Author: Christoph Hart <>
Date: Sat Jul 11 12:08:00 2020 +0200
- fix compilation on macOS
[33mcommit e0c8dde99ba1817d8e93f5e1053c08cab9685455[m
Author: chrisboy2000 <[email protected]>
Date: Sat Jul 11 11:37:03 2020 +0200
- fixed some arpeggiator issues
[33mcommit d238e452d37160794f3ca0e790f7928b0a737b59[m
Author: chrisboy2000 <[email protected]>
Date: Sat Jul 11 11:36:31 2020 +0200
- added macro modulation source container
[33mcommit 94129aac6612a08f0962eb20b3c3daf1478c95a4[m
Author: chrisboy2000 <[email protected]>
Date: Sat Jul 11 11:35:15 2020 +0200
- added frontend macro system
[33mcommit a0a9eca7d4673613e77f75e1521fd074669d2c17[m
Author: ustk iMac <[email protected]>
Date: Tue Jul 7 15:02:22 2020 +0200
Fix ScriptSlider tooltip not showing
[33mcommit 0e3c9d4cee4a18f9c7d7abe8345d3ad87c68f606[m
Author: ustk iMac <[email protected]>
Date: Mon Jul 6 19:21:32 2020 +0200
PresetBrowser add ColumnWidthRatio property
[33mcommit 4f5afd28be890be033cabf977a19dae7a2223239[m
Author: ustk iMac <[email protected]>
Date: Mon Jul 6 13:47:44 2020 +0200
Fix Bank Rename & Delete buttons in 2 columns mode
[33mcommit 64733dac95bf75bdd07e2fd25c9f381f06bdf749[m
Author: ustk iMac <[email protected]>
Date: Sun Jul 5 22:21:37 2020 +0200
Update API ValueTree
[33mcommit f56a93f281c9e22a0457dfc3ab42db4e390e6206[m
Author: ustk iMac <[email protected]>
Date: Sun Jul 5 22:19:02 2020 +0200
Add Engine.getName() API
[33mcommit e34e8378370b1abfd24326dbf142e3b976c9f9b6[m
Author: ustk iMac <[email protected]>
Date: Sun Jul 5 22:16:32 2020 +0200
Fix Engine.getVersion() was returning name
[33mcommit 3a5cd5f16e7fe376586d98abf458aa00684fd878[m
Author: ustk iMac <[email protected]>
Date: Sat Jul 4 12:12:49 2020 +0200
Fix delete preset in 1 or 2 columns mode not updating properly
Might be done in a better way...
[33mcommit 77353dcf14ef579e5f35f3cd48b1004229eb7a22[m
Author: ustk iMac <[email protected]>
Date: Sat Jul 4 12:12:02 2020 +0200
Fix preset renaming in 1 or 2 columns mode
Might be done in a better way...
[33mcommit 9ae7bdf7cfcc34fd4f86e0cb6586c77f99c102cc[m
Author: ustk iMac <[email protected]>
Date: Sat Jul 4 12:10:15 2020 +0200
Fix Prev/Next not updating the PresetBrowser correctly
Might be done in a better way...
[33mcommit eeea900d02a28795703656c9c689fbfd8a2b6140[m
Author: ustk iMac <[email protected]>
Date: Thu Jul 2 23:46:31 2020 +0200
Custom LAF minor cleaning
[33mcommit 96512b8b4671526815177185e11e157828bf07a5[m
Merge: 1205eac0 c89baf9c
Author: Christoph Hart <[email protected]>
Date: Thu Jul 2 16:46:01 2020 +0200
Merge branch 'scriptnode' into develop
[33mcommit c89baf9cddd8d95e4ed7c1ceb9fab55d19bf3019[m
Author: chrisboy2000 <[email protected]>
Date: Thu Jul 2 16:43:21 2020 +0200
- fixed DspNetwork parameter unbinding
[33mcommit 5ff8422739cc145c8f6b5b097084ee19fb172d52[m
Author: chrisboy2000 <[email protected]>
Date: Thu Jul 2 16:42:45 2020 +0200
- removed some warnings and fixed compilation
[33mcommit 7d7228245bf133e81ba7c537a889215c61491614[m
Author: chrisboy2000 <[email protected]>
Date: Thu Jul 2 16:42:13 2020 +0200
- added MainController::getPositionInfo()
[33mcommit f0b2d8b30420212c771fbcf5159e5db0d85ff8b4[m
Author: ustk iMac <[email protected]>
Date: Thu Jul 2 16:23:35 2020 +0200
Linear Slider custom LAF minor change
[33mcommit 1205eac0d8fbddcba7c828fbc0d84b3364961c60[m
Merge: b17c7c7a 785185c4
Author: David Healey <[email protected]>
Date: Wed Jul 1 22:45:43 2020 +0100
Merge pull request #8 from ustk/develop
Add Rotary & Linear Sliders custom LAF
[33mcommit b17c7c7aa110bbbaf60e94b897192cf4e35a6dd6[m
Merge: b964da71 2bac59ac
Author: David Healey <[email protected]>
Date: Wed Jul 1 22:45:29 2020 +0100
Merge pull request #7 from Levitanus/develop
fix JUCE gcc9 compilation failure (got from JUCE)
[33mcommit 785185c4f03e8911f2a79b7c14fb0911641e6507[m
Author: ustk iMac <[email protected]>
Date: Wed Jul 1 18:49:47 2020 +0200
Add Rotary & Linear Sliders custom LAF
[33mcommit 2bac59ac88c9cdc3198892602f7b1d7687c5ad88[m
Author: Timofey <[email protected]>
Date: Wed Jul 1 07:47:56 2020 +0700
fix JUCE gcc9 compilation failure (got from JUCE)
[33mcommit b964da71fa5825ec3793fe0bbd0ca37e10db71fd[m
Merge: 46e5de12 0e9b226a
Author: David Healey <[email protected]>
Date: Wed Jun 17 17:04:49 2020 +0100
Merge pull request #5 from ustk/develop
Add relaunch warning after samples installation
[33mcommit 0e9b226a524e477eb58548685d2feaf3dc1dd21f[m
Author: ustk iMac <[email protected]>
Date: Wed Jun 17 17:58:07 2020 +0200
Add relaunch warning after samples installation
[33mcommit 46e5de12452db1a92853d62e1a06a7ed636b14cc[m
Merge: 81530de6 ed6aabe4
Author: David Healey <[email protected]>
Date: Mon Jun 1 13:34:02 2020 +0100
Merge pull request #4 from ustk/develop
Fix getGlobalPositionY wrong parent value
[33mcommit ed6aabe4fdb42414740aa9640d3dc3c5e33d6159[m
Author: ustk iMac <[email protected]>
Date: Mon Jun 1 11:54:02 2020 +0200
Add Save XML "NOT WORKING" info in menu
[33mcommit 22f7d52e5e136b6a35a28bd481c98a1269c641d1[m
Author: ustk iMac <[email protected]>
Date: Mon Jun 1 11:29:58 2020 +0200
Fix getGlobalPositionY wrong parent value
[33mcommit 81530de6db1acdd3b0cddecaaac11ced616f056a[m
Merge: 4bc0d026 61685593
Author: David Healey <[email protected]>
Date: Sun May 17 11:55:35 2020 +0100
Merge pull request #3 from ustk/develop
Component List folded by default
[33mcommit 61685593ce29e7720b30490ef800ee4936f40bb3[m
Author: ustk iMac <[email protected]>
Date: Fri May 15 20:23:17 2020 +0200
Component List folded by default
[33mcommit 4bc0d026c2ad0341d0ff85fc051689c1f7885477[m[33m ([m[1;32mloopsImport[m[33m)[m
Merge: 9cfe5016 d5eb6c27
Author: David Healey <[email protected]>
Date: Tue May 12 17:24:32 2020 +0100
Merge pull request #2 from ustk/develop
Add "Save XML" menu entry !!!THIS DOESN'T WORK YET!!!
[33mcommit d5eb6c27bc79e0e4be1050ace278145f581a7221[m
Author: ustk iMac <[email protected]>
Date: Tue May 12 17:20:42 2020 +0200
Smooth the graph zooming via CMD + mouse wheel, Allow smaller zoom
[33mcommit 84a28ed9b7bf722cd3007eebc3d9f60db38ac75f[m
Author: ustk iMac <[email protected]>
Date: Tue May 12 16:49:34 2020 +0200
Add "Save XML" menu entry !!!THIS DOESN'T WORK YET AS NOTHING IS SAVED NO MATTER THE POPUPS/CONSOLE!!!
[33mcommit 9cfe5016c4ccb4b128afc5b82ccdf07f221c43d8[m
Merge: b23ebee0 34bc033b
Author: David Healey <[email protected]>
Date: Mon May 11 23:33:55 2020 +0100
Merge pull request #1 from ustk/develop
Allow emptying Viewport list with vp.set("items", "")
[33mcommit 34bc033b55f9057b5c68402b036d61eae26cce79[m
Author: ustk iMac <[email protected]>
Date: Tue May 12 00:11:55 2020 +0200
Allow emptying Viewport list with vp.set("items", "")
[33mcommit b23ebee0c8743026ded82b8b311ea50083c46872[m
Author: davidhealey <[email protected]>
Date: Tue Apr 14 01:20:52 2020 +0100
Implemented legacy cpu support option for GNU/Linux in standalone template
[33mcommit 5534c8633319a44c2c36b0b5627adb2e7ca9728a[m
Author: davidhealey <[email protected]>
Date: Tue Apr 14 01:16:40 2020 +0100
Fix mistake in last commit
[33mcommit 8c4ad5beb8f81e8bd64b296611c3c1d912bbcd9d[m
Author: davidhealey <[email protected]>
Date: Tue Apr 14 01:11:03 2020 +0100
Implemented use_ipp wildcard for GNU/Linux templates
[33mcommit 31860f8b8a89e1404e6c240a73d5708ef711fcbc[m
Author: davidhealey <[email protected]>
Date: Tue Apr 14 00:34:50 2020 +0100
Fixed typo
[33mcommit d721a6ff1d45ab3b722b4a7957cf90d1be73de8e[m
Author: davidhealey <[email protected]>
Date: Mon Apr 13 21:27:37 2020 +0100
Added IPP paths to Linux export templates
[33mcommit 0131c12cee6bdf5b485b0df0b2acc529550b51f6[m
Author: davidhealey <[email protected]>
Date: Mon Apr 13 18:56:43 2020 +0100
Adde commandline argument to enable legacy cpu support
[33mcommit cfbe62f0678f66dd720305d45d4079d1f6cd7f46[m
Author: davidhealey <[email protected]>
Date: Mon Apr 13 18:56:06 2020 +0100
Added preferences checkbox to enable legacy cpu support
[33mcommit e634e73fc542f0c1c015524022b5640246237ca4[m
Author: davidhealey <[email protected]>
Date: Sun Apr 12 13:39:04 2020 +0100
Implemented HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON option
[33mcommit 4a205543fb9b1324abc3508b79473d11224652b8[m
Author: davidhealey <[email protected]>
Date: Sat Apr 11 16:44:48 2020 +0100
Made JACK enabled by default on Linux Standalone builds - did it correctly this time
[33mcommit df2f48a7d8b9d9d5c4e74eb08cd11bcb284fb515[m
Author: Christoph Hart <>
Date: Wed Apr 8 12:39:17 2020 +0200
- fix compilation on macOS
[33mcommit 0a2382005eedb5b4fe4515b6a6707d63b8872743[m
Author: davidhealey <[email protected]>
Date: Mon Apr 6 16:47:25 2020 +0100
removed duplicate line
[33mcommit 7c59b7fe9440e9391b47da5d9d56b6eefc8802cf[m
Author: davidhealey <[email protected]>
Date: Sun Apr 5 15:34:07 2020 +0100
Increased max arp steps to 128 - thanks Ulrik!
[33mcommit 41390f0ea10f428e74658d05a5aa967140d48858[m
Author: davidhealey <[email protected]>
Date: Tue Mar 31 18:03:10 2020 +0100
Added isBypassed functions for midiprocessor, audioloopplayer, and childsynths
[33mcommit b00970f46c434e8f78943b5bc8709247d49bfc63[m
Author: davidhealey <[email protected]>
Date: Tue Mar 31 17:46:17 2020 +0100
Added effect isBypassed wrapper
[33mcommit 4513566d78a0ea7d64426ff6053ced6a232bca0c[m
Author: davidhealey <[email protected]>
Date: Sat Mar 28 01:32:05 2020 +0000
Added expansion tags
[33mcommit eaca02449da01e740ca9a2f1f8a55f70bbc2ff13[m
Author: davidhealey <[email protected]>
Date: Thu Mar 26 18:31:01 2020 +0000
Added Sampler getNumAttributes() function
[33mcommit 1c032432c74df33a23c16dc07bf7541cca869335[m[33m ([m[1;31morigin/getAllFunctions[m[33m)[m
Author: davidhealey <[email protected]>
Date: Thu Mar 26 16:54:29 2020 +0000
Added Sampler getAttributeId()
[33mcommit cd18956e834ae93cdc247a81f86a2297ef5b1f98[m
Author: davidhealey <[email protected]>
Date: Thu Mar 26 16:43:16 2020 +0000
Added ScriptingChildSynth and ScriptingAudioSampleProcessor getAttributeId()
[33mcommit 9fec7a8a02799f0ac7e460ae928a12e36140ac50[m
Author: davidhealey <[email protected]>
Date: Thu Mar 26 16:34:31 2020 +0000
Added ScriptingEffect getAttributeId()
[33mcommit 8d04c9bfab8a94b0783ff647a885f9938f24a254[m
Author: davidhealey <[email protected]>
Date: Thu Mar 26 16:29:39 2020 +0000
Added ScriptingModulator getAttributeId()
[33mcommit e89fc69ba402fe4ad04b8ae435d64f639b4010a4[m
Merge: d7a3cdd8 85da61fd
Author: davidhealey <[email protected]>
Date: Wed Mar 25 01:37:00 2020 +0000
Replaced f functions with non-f versions
[33mcommit 85da61fd0b97bc8a1463c35e7c186e64815e2444[m
Author: davidhealey <[email protected]>
Date: Wed Mar 25 01:26:34 2020 +0000
Added getAllEffects function
[33mcommit 30e5d141762a2cb3ab81edccae69d0cfbfaddbfc[m[33m ([m[1;31morigin/attributeid[m[33m)[m
Author: davidhealey <[email protected]>
Date: Wed Mar 25 01:06:55 2020 +0000
Added getAllComponents function
[33mcommit 80c51e6304576f574f19962cff55524111b06be1[m
Author: davidhealey <[email protected]>
Date: Tue Mar 24 23:52:04 2020 +0000
Added ScriptProcessor getAttributeId function
[33mcommit c7f36af579fbeb498c44d630adad59007b25fd92[m
Author: chrisboy2000 <[email protected]>
Date: Thu Mar 19 11:47:48 2020 +0100
- SNEX: started some optimizations
[33mcommit cd528b4081ccbee9a0c208b359527a1b5192ece3[m
Author: chrisboy2000 <[email protected]>
Date: Wed Mar 18 13:41:05 2020 +0100
- SNEX: cleaned up namespace stuff
[33mcommit 00161be6576e4b3854cc446ef247338dad5d9176[m
Author: chrisboy2000 <[email protected]>
Date: Wed Mar 18 11:20:31 2020 +0100
- SNEX: proceed with new symbol resolver
[33mcommit b7fa1c833370cf8a7a4a7acaffa570f91dfeca34[m
Author: chrisboy2000 <[email protected]>
Date: Tue Mar 17 16:28:39 2020 +0100
- SNEX: started with more robust symbol resolving system
[33mcommit 804635cb2b910f685c54eded3c1fcb06a5368fab[m[33m ([m[1;31morigin/velocityRange[m[33m)[m
Author: davidhealey <[email protected]>
Date: Mon Mar 16 16:12:08 2020 +0000
Updated project settings
[33mcommit 01f8dc57ed4cf068927f2c8118196e0708773a5e[m
Author: davidhealey <[email protected]>
Date: Mon Mar 16 16:08:46 2020 +0000
Revert def change
[33mcommit bcab93f382eefcd20826e423c38dbd4ed8defa34[m
Author: chrisboy2000 <[email protected]>
Date: Thu Mar 12 21:37:41 2020 +0100
- SNEX: fixed namespace (still not 100%)
[33mcommit f8ddfcbf1eb7da0111163b2608af5244c36a4f0a[m
Author: chrisboy2000 <[email protected]>
Date: Thu Mar 12 16:13:57 2020 +0100
- SNEX: worked on namespace
[33mcommit 49615d39abeb24476d480a36711fc93243049c91[m
Author: chrisboy2000 <[email protected]>
Date: Thu Mar 12 09:02:13 2020 +0100
- SNEX: started namespace functionality (unfinished)
[33mcommit bd0540a9bbd28db89313068829c76cb8a12134de[m
Author: chrisboy2000 <[email protected]>
Date: Wed Mar 11 22:28:30 2020 +0100
- fixed leaking
- fixed passing objects by value
[33mcommit 1b08f632b24c917fb327029ab31ff5110194353d[m
Author: chrisboy2000 <[email protected]>
Date: Wed Mar 11 14:27:05 2020 +0100
- SNEX: added variadic templates
- SNEX: improved inlining
[33mcommit 7b65b40bf20493c9f58188c89bc343cf51faa86c[m
Author: chrisboy2000 <[email protected]>
Date: Mon Mar 9 10:56:15 2020 +0100
- SNEX: added predefined variadic templates
- SNEX: added operator overloads (unfinished)
[33mcommit 4a38d67e07ff9e44b97ab51a65e6dbf461e2598e[m
Author: chrisboy2000 <[email protected]>
Date: Thu Mar 5 21:42:17 2020 +0100
- SNEX. added function inlining
[33mcommit 27222002c80467e218140eaf3834baa91bc00113[m
Author: chrisboy2000 <[email protected]>
Date: Fri Feb 28 11:02:11 2020 +0100
- SNEX: minor cleanup
[33mcommit c14a2f3353d8e11476971842f67132323f82a3a6[m
Author: chrisboy2000 <[email protected]>
Date: Fri Feb 28 10:31:19 2020 +0100
- SNEX: fixed external member functions
[33mcommit e23ff4e33ff02c961629a9cc7a70b595d67738db[m
Author: chrisboy2000 <[email protected]>
Date: Thu Feb 27 17:26:29 2020 +0100
- SNEX: added external struct with member functions
[33mcommit 1ceb0c1304f693f293b439399d0f121184d5ee1a[m
Author: chrisboy2000 <[email protected]>
Date: Thu Feb 27 14:43:23 2020 +0100
- SNEX: changed function return type to TypeInfo
[33mcommit bf69cb9194a3737d169124f9747c2521c1473ee5[m
Author: chrisboy2000 <[email protected]>
Date: Thu Feb 27 14:38:01 2020 +0100
- SNEX: use TypeInfo for Expression types
[33mcommit 9391895036377f94e8ea83e48cc05b5d478f37ff[m
Author: chrisboy2000 <[email protected]>
Date: Thu Feb 27 10:54:37 2020 +0100
- SNEX Rewrite: added typeinfo
[33mcommit b44d08fa9a037b955bb045741769d82439248677[m
Author: chrisboy2000 <[email protected]>
Date: Wed Feb 26 09:29:33 2020 +0100
- SNEX: added function parameter references
[33mcommit 3f3aa6f2806592a6fab59ac5d11c3887f7ca70ce[m
Author: chrisboy2000 <[email protected]>
Date: Wed Feb 26 08:57:47 2020 +0100
- SNEX: cleanup
[33mcommit 187c78869a4069a260215a273c90db0e5b7d6364[m
Author: chrisboy2000 <[email protected]>
Date: Wed Feb 26 08:56:51 2020 +0100
- changed speed display to x realtime
[33mcommit ee4a8c10646f6c895bdab62bb36aba6445c1d968[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 25 18:22:01 2020 +0100
- SNEX: fixed stuff
[33mcommit f7963574e9fa2bc2f98ba20eb5e1b4035772eba3[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 25 15:49:17 2020 +0100
- SNEX: added stack based complex type definitions
[33mcommit 6b3bbe1e0cf18bc9ee5aa74f516a9a2b895b3e02[m
Author: chrisboy2000 <[email protected]>
Date: Mon Feb 24 13:16:35 2020 +0100
- changed markdown editor project
[33mcommit 98952206ccd51ad6d4ab2db0a41083cf1e45a6b0[m
Author: chrisboy2000 <[email protected]>
Date: Mon Feb 24 13:16:22 2020 +0100
- SNEX: added file-based compiler test system
[33mcommit 16296bdf00ecd7bc7d1a2cb1e0d3cef8048f0789[m
Author: chrisboy2000 <[email protected]>
Date: Mon Feb 24 13:15:01 2020 +0100
- SNEX: minor clean up
[33mcommit 02595d35afc9a01e532477b1c7867ba598597f4d[m
Author: chrisboy2000 <[email protected]>
Date: Mon Feb 24 13:13:28 2020 +0100
- added filename path to dump method
[33mcommit d74f36e888b857f65115139c60eb2d129df568ea[m
Author: chrisboy2000 <[email protected]>
Date: Fri Feb 21 13:36:53 2020 +0100
- SNEX: added compile time constant evaluation for template arguments & initialiser lists
- SNEX: added wrap<size> type for wrap-around data accessor (SOUL style)...
[33mcommit d809b89b37ab02354c96cf59c52060c81f67e1de[m
Author: chrisboy2000 <[email protected]>
Date: Thu Feb 20 09:39:09 2020 +0100
- SNEX: fix invalid registers
[33mcommit d88a519a81f38000e7dbaf490546bb015894023b[m
Author: Christoph Hart <[email protected]>
Date: Thu Feb 20 09:26:10 2020 +0100
- SNEX: partially fixed 64bit absolute memory address issue
[33mcommit a50ce5a36692c697d6183c948eb19252f0cdaac3[m
Author: Christoph Hart <[email protected]>
Date: Wed Feb 19 15:21:44 2020 +0100
- SNEX: fix macOS compilation
[33mcommit 35d54086caa9268645331113c30b2e88353bd7f6[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 18 13:41:21 2020 +0100
- SNEX: fix unit test && some issues
[33mcommit 4d73a8e5d3fcc6c4d96eb3c8c0cf320c3b03fee5[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 18 11:33:04 2020 +0100
- fixed compilation errors
[33mcommit 832c868b7ce7e134bf6c1d365aaabc5f4892e4d4[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 18 11:21:34 2020 +0100
- fix SNEX module paths
[33mcommit 9ea367fdbc7f990943f0794fdd7d01b2461fd916[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 18 11:10:14 2020 +0100
- snex: added struct & span types && fixed other things
- add using aliases
[33mcommit 57175c1c56816204c101a753cb675c5d1c64cdeb[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 18 10:55:01 2020 +0100
- remove custom SSE code in SVF EQ to fix crashes on certain CPUs
[33mcommit 0476e0ea7054d939505f72405a57b068aa003bc2[m
Author: chrisboy2000 <[email protected]>
Date: Wed Feb 12 17:05:50 2020 +0100
- intermediate state
[33mcommit 81d4fa45a465172e9ee4abfd453b6a631ed45e3d[m
Author: chrisboy2000 <[email protected]>
Date: Mon Feb 10 20:56:53 2020 +0100
- SNEX. struct & spans: halfway there...
[33mcommit 2b100f1e0c1f79b790181eac194dd6a26df6bc41[m
Author: chrisboy2000 <[email protected]>
Date: Sat Feb 8 13:17:24 2020 +0100
- SNEX: fixed basic syntax rules with new symbol system (rest still broken)
[33mcommit 8b0637d70000e309afd4d1ae62f4a879a0e0b295[m
Merge: 34d415ac 16478c65
Author: chrisboy2000 <[email protected]>
Date: Fri Feb 7 21:40:24 2020 +0100
Merge branch 'snex_rewrite' of https://github.com/christophhart/HISE into scriptnode
# Conflicts:
# hi_tools/hi_standalone_components/AdvancedCodeEditor.h
[33mcommit 16478c651645e8be863c8e5806a7e7f1ef666efb[m[33m ([m[1;31mupstream/snex_rewrite[m[33m)[m
Author: chrisboy2000 <[email protected]>
Date: Fri Feb 7 21:36:54 2020 +0100
- rewrite SNEX with better data model (unfinished)
[33mcommit daff35433a8040f329539f83ba21190221f3d6ea[m
Author: chrisboy2000 <[email protected]>
Date: Fri Feb 7 21:36:01 2020 +0100
- ui changes
[33mcommit 34d415ac94fde4d1bd9d109953230d01eb2bbbfc[m
Author: chrisboy2000 <[email protected]>
Date: Fri Feb 7 21:23:58 2020 +0100
- fix compilation for 32bit macOS
[33mcommit fe6581bd9578fd7c171405a134124ab8f5fff98e[m
Author: Christoph Hart <>
Date: Fri Feb 7 19:18:19 2020 +0100
- fixed compilation
[33mcommit d6ffb3e7bb8bd879aab45187d7f3aac103405099[m
Author: Christoph Hart <>
Date: Fri Feb 7 19:17:55 2020 +0100
- fixed preset restoring with RAW
[33mcommit c1eb71650d51bb97b38d9accc40d3ab6b40a977e[m
Author: davidhealey <[email protected]>
Date: Wed Feb 5 23:41:46 2020 +0000
Made velocity ranges of 1 possible
[33mcommit 11f1f558795e77685d5e32d9fde36d3bd7b41114[m
Author: davidhealey <[email protected]>
Date: Wed Feb 5 21:10:53 2020 +0000
Modified Linux Make command to use all cores
[33mcommit cfa1678db5d87bbd4681679a9fbb41bfd03f401d[m
Author: davidhealey <[email protected]>
Date: Wed Feb 5 21:10:03 2020 +0000
Enable JACK by default on Linux builds
[33mcommit acd8fe105b86a410b00b842f341dad5274c174af[m
Author: davidhealey <[email protected]>
Date: Wed Feb 5 21:03:58 2020 +0000
Replaced ceilf, modf, floorf, with non-f versions
[33mcommit d7a3cdd820957294a87adf21fca10856315479ff[m
Author: davidhealey <[email protected]>
Date: Wed Feb 5 14:35:26 2020 +0000
Modified Linux Make command to use all cores
[33mcommit ae7e63baff060f2e991e1f743e95b5998829e920[m
Author: davidhealey <[email protected]>
Date: Wed Feb 5 14:32:08 2020 +0000
Enable JACK by default on Linux builds
[33mcommit 6ea9d33c1e578ad6d495ba96b3ad29dbf2068a22[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 4 10:29:16 2020 +0100
- refactored script editor to be extendable with other languages
[33mcommit db90d9f949ac9e0132d1bac683933fbaa50e7a49[m
Author: chrisboy2000 <[email protected]>
Date: Tue Feb 4 10:26:37 2020 +0100