-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtq
1716 lines (1146 loc) · 50.9 KB
/
tq
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 4c7c2052551f928313d2d5d12d23967fc305f579[m[33m ([m[1;36mHEAD -> [m[1;32mmaster[m[33m)[m
Author: mariusjenin <[email protected]>
Date: Tue Jan 31 16:09:09 2023 +0100
Undo chunks
[33mcommit 15be159ecf178809b6d2c74d040a848582c1aa35[m[33m ([m[1;31morigin/master[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Author: GabrielCGI <[email protected]>
Date: Tue Jan 31 12:11:26 2023 +0100
update
[33mcommit bceaa234f68320585b58277a6ee85a3027852ddc[m
Author: GabrielCGI <[email protected]>
Date: Thu Jan 26 18:22:47 2023 +0100
publish
zd
[33mcommit 1f43174b1b797633444514d44164971d84970ad6[m
Author: GabrielCGI <[email protected]>
Date: Wed Jan 25 15:46:36 2023 +0100
global
[33mcommit 19f57d5a04a0662f52fc7a83364c50158526b3f7[m
Author: GabrielCGI <[email protected]>
Date: Sun Jan 22 21:13:32 2023 +0100
abcimport
[33mcommit e3e4fd0c3456642bedabe37af4a483b9fc85dbf8[m
Author: GabrielCGI <[email protected]>
Date: Sun Jan 22 17:26:41 2023 +0100
shadermaker
[33mcommit 15957769f467f1ed86ea6270e7fccfea65772a4a[m
Author: GabrielCGI <[email protected]>
Date: Thu Jan 19 16:42:36 2023 +0100
bat
[33mcommit 6def1f523ccb060be24d9b165a5eded8542bcfaa[m
Author: GabrielCGI <[email protected]>
Date: Wed Jan 18 15:01:05 2023 +0100
update
[33mcommit abc523e8523210c1d388cc7f551e034c2759d372[m
Merge: be13837 5aadd4e
Author: GabrielCGI <[email protected]>
Date: Mon Jan 16 12:41:04 2023 +0100
Merge branch 'master' of https://github.com/GabrielCGI/pipe
[33mcommit be13837e1788b534c15f254f946f7c354a859268[m
Author: GabrielCGI <[email protected]>
Date: Mon Jan 16 12:40:34 2023 +0100
snippet
[33mcommit 5aadd4e21af6c7c9207ea3ee92773defec9dc8b9[m
Author: GabrielCGI <[email protected]>
Date: Sun Jan 8 18:53:05 2023 +0100
add per face assign char pip
[33mcommit 419410fc18c207708c8b92f658c08aeb04472cd6[m
Author: GabrielCGI <[email protected]>
Date: Sun Jan 8 17:54:07 2023 +0100
snippet
[33mcommit d55616faa03c315c630c20b7997e628c7da67f7d[m
Author: GabrielCGI <[email protected]>
Date: Sun Jan 8 17:53:42 2023 +0100
Update char_pip_pymel.py
[33mcommit fd7662d5a4a4fadf84a20f5bd1fb60c62478a4f8[m
Author: GabrielCGI <[email protected]>
Date: Tue Jan 3 10:33:06 2023 +0100
exr2mov
[33mcommit c280ace9c4e13180085fd0a548a38fc4008f47b2[m
Author: GabrielCGI <[email protected]>
Date: Tue Dec 20 11:47:52 2022 +0100
fix sort
[33mcommit a21ffe41ac75fb1576fffb3d8ad043b9355c9161[m
Author: GabrielCGI <[email protected]>
Date: Tue Dec 20 11:41:01 2022 +0100
deploiment assetBrwoser
[33mcommit 545588761afd68076f60b315cbdf5ee6e85e6b8c[m
Author: GabrielCGI <[email protected]>
Date: Tue Dec 20 09:56:06 2022 +0100
Create assetBrowserdev.py
[33mcommit 2bdabbd030431b2c07d099b5e6eedc0524147d98[m
Author: GabrielCGI <[email protected]>
Date: Mon Dec 19 16:39:37 2022 +0100
menage
[33mcommit c72c3ef67594b994c25830e426b97c3567bba189[m
Author: GabrielCGI <[email protected]>
Date: Mon Dec 19 09:42:46 2022 +0100
updae
[33mcommit 4a63bfa8edbb830171b6b8d01cb66da1e03ec7d9[m
Author: GabrielCGI <[email protected]>
Date: Sat Dec 17 10:01:37 2022 +0100
update
[33mcommit 0d7cdcc91348f1b3d7670355181cf7b1344dba3b[m
Author: GabrielCGI <[email protected]>
Date: Fri Dec 16 14:55:43 2022 +0100
delete unused script
[33mcommit b0fc03ec899e272c30e0410515add1644d6c28cd[m
Author: GabrielCGI <[email protected]>
Date: Tue Dec 13 18:44:28 2022 +0100
update
[33mcommit 2a316b9965bd63f9ea98d0d6551fbe458538ecef[m
Author: GabrielCGI <[email protected]>
Date: Mon Dec 12 18:55:49 2022 +0100
dzd
zd
[33mcommit 109ae9819b353f83629d97b0f25245a13b3b3c05[m
Author: GabrielCGI <[email protected]>
Date: Mon Dec 12 16:05:24 2022 +0100
up
[33mcommit 768405722da82c4b47b7756f2d621ef20edab5b4[m
Author: GabrielCGI <[email protected]>
Date: Sun Dec 11 17:31:33 2022 +0100
update
[33mcommit aeb1ef1d0a4046f2a5345a4ffb14d50e01c2c5db[m
Author: GabrielCGI <[email protected]>
Date: Sun Dec 11 13:02:22 2022 +0100
update_global
[33mcommit 692ba7977bfe3baffdd7e9148dd88bd18e4806da[m
Author: GabrielCGI <[email protected]>
Date: Fri Dec 9 19:49:31 2022 +0100
clean shelves
[33mcommit ffcb956b0fcce57c5f120bb575d0e8086fd0e387[m
Author: GabrielCGI <[email protected]>
Date: Fri Dec 9 19:47:51 2022 +0100
new_abc_export
[33mcommit 711f880e9c7ca63ce9dea2ff5a19ceb06612769a[m
Author: GabrielCGI <[email protected]>
Date: Thu Dec 8 19:22:14 2022 +0100
publish
[33mcommit fd3acb45e81d29f769291a141bca31fd10b97188[m
Author: GabrielCGI <[email protected]>
Date: Thu Dec 8 14:34:42 2022 +0100
updat
[33mcommit 681afdecacd734f83aa3c09dd60ffe7342d5e44f[m
Author: GabrielCGI <[email protected]>
Date: Thu Dec 8 10:07:13 2022 +0100
pymel_continue
[33mcommit 70391b6459c093590b6c239040102565191f4ec3[m
Author: GabrielCGI <[email protected]>
Date: Wed Dec 7 17:55:10 2022 +0100
pymel
[33mcommit d6fe20f202d90bd87a40cc08ff1ddc099b90d4b7[m
Author: GabrielCGI <[email protected]>
Date: Wed Dec 7 15:32:51 2022 +0100
pymel
[33mcommit 1819eea2042d9086f6523751bd26267e6d1365bc[m
Author: GabrielCGI <[email protected]>
Date: Tue Dec 6 15:27:37 2022 +0100
pymel
[33mcommit fb4b82defba1b914afe6d4c681281bd4e3b04904[m
Author: GabrielCGI <[email protected]>
Date: Mon Dec 5 11:02:57 2022 +0100
loader_update
[33mcommit f35f8dfcc78b136ae54b917a8bfe139c06ede2a6[m
Author: GabrielCGI <[email protected]>
Date: Mon Dec 5 11:02:03 2022 +0100
abcPipeline update
[33mcommit 134b06b9acb52aca864df2e18d34f95593412b53[m
Author: GabrielCGI <[email protected]>
Date: Fri Dec 2 17:03:30 2022 +0100
update
[33mcommit e563d29ab94086d2a6dee6b4c4cd8adb1000dad9[m
Author: GabrielCGI <[email protected]>
Date: Thu Dec 1 14:18:34 2022 +0100
UPDATE
[33mcommit 8c3e7ae98ef7a7f1cbb25ff370d21cb24098d0a0[m
Author: GabrielCGI <[email protected]>
Date: Mon Nov 28 10:33:41 2022 +0100
idk
[33mcommit 0c9520a5ecc13538d5d23f58b2ca8d4b602e1193[m
Merge: 2703454 4d199ec
Author: GabrielCGI <[email protected]>
Date: Mon Nov 28 10:27:51 2022 +0100
Merge branch 'master' of https://github.com/GabrielCGI/pipe
[33mcommit 4d199ec29aefbbae3381996bf4481ad3a5ddc7ee[m
Author: GabrielCGI <[email protected]>
Date: Sun Nov 27 22:52:02 2022 +0100
update_baker
[33mcommit f597e76eaebfba191f79e8cdccf078665358b6e3[m
Author: GabrielCGI <[email protected]>
Date: Sun Nov 27 20:16:54 2022 +0100
clean_copy_shader
[33mcommit 185be4ceebdfe820cedecf77d662b943e7ac05aa[m
Author: GabrielCGI <[email protected]>
Date: Sun Nov 27 16:56:49 2022 +0100
super_publish
[33mcommit 520f2c8e2136369643aa82debd12a65901b7a68a[m
Author: GabrielCGI <[email protected]>
Date: Sun Nov 27 15:02:07 2022 +0100
ca avance
[33mcommit 095e115bf212937fb24e0dbdd4d4d317357a4f3d[m
Author: GabrielCGI <[email protected]>
Date: Sat Nov 26 19:48:19 2022 +0100
update
[33mcommit 31520cca3dda3c0ae15cc8a8f2e83a11aeff016f[m
Author: GabrielCGI <[email protected]>
Date: Sat Nov 26 18:06:09 2022 +0100
advancement
[33mcommit 13348e40f8a96f0cd36f4fcc71188266382c71c9[m
Author: GabrielCGI <[email protected]>
Date: Sat Nov 26 09:05:16 2022 +0100
home copy
[33mcommit 2703454728fc9e405f2e181dbba91df22c61921c[m
Author: GabrielCGI <[email protected]>
Date: Thu Nov 24 10:37:11 2022 +0100
proxypreeper
[33mcommit 715436bb748c5910d1584b174fe94c04f3118c02[m
Author: GabrielCGI <[email protected]>
Date: Tue Nov 22 15:42:38 2022 +0100
prepper_proxy
[33mcommit fd6208db886baab02eb12aba93de12c58b83cbd7[m
Author: GabrielCGI <[email protected]>
Date: Mon Nov 21 12:42:08 2022 +0100
asset publisher update and push function to asset loader
[33mcommit f12d60af441c5e4cfd24fc3f871352cf69a5419c[m
Author: GabrielCGI <[email protected]>
Date: Mon Nov 21 12:40:59 2022 +0100
noice + aov update
[33mcommit 23489aaaab425db3d005f4b46da36eab7fc22764[m
Author: GabrielCGI <[email protected]>
Date: Wed Nov 16 13:53:39 2022 +0100
clean
[33mcommit 6f5fabd719236a7ce17698acf253c624cf7cffd4[m
Author: GabrielCGI <[email protected]>
Date: Mon Nov 14 14:38:10 2022 +0100
browser_ update + lentil
[33mcommit 06e89902acd5f0ee766898e2101bbc5175bc4068[m
Author: GabrielCGI <[email protected]>
Date: Wed Nov 9 18:34:22 2022 +0100
asset_publisher_progress
[33mcommit f3aae17954d83506f897055f14636d2702082fc2[m
Author: GabrielCGI <[email protected]>
Date: Mon Nov 7 19:31:58 2022 +0100
assetPubliser
[33mcommit 776b1a9e0c21e766813e558b6d860e7b4d5b3bd2[m
Author: GabrielCGI <[email protected]>
Date: Mon Nov 7 16:49:19 2022 +0100
asset_publisher
[33mcommit 2af5147c42729e0e0f0c1d34234d791405e51b32[m
Author: GabrielCGI <[email protected]>
Date: Wed Nov 2 14:37:31 2022 +0100
maya_scanner
[33mcommit 2d190537b75abd7bad1e58f13757fc43fa7682d4[m
Author: GabrielCGI <[email protected]>
Date: Fri Oct 28 13:02:17 2022 +0200
update
[33mcommit c9573683610028199b729caf4f99e14e4dcb2d46[m
Author: GabrielCGI <[email protected]>
Date: Mon Sep 26 15:39:39 2022 +0200
light picker
[33mcommit 40ec66a0d6e95afb19a53c1449c9409a4bd10ac7[m
Author: GabrielCGI <[email protected]>
Date: Mon Sep 26 12:45:16 2022 +0200
dublas
[33mcommit 76413cff9ada47f0d2e458fa66502b01d2ff6e33[m
Author: GabrielCGI <[email protected]>
Date: Mon Sep 26 12:40:30 2022 +0200
dublast
[33mcommit ac4bc4709d0d059bf279df99472c175c67e449a6[m
Author: GabrielCGI <[email protected]>
Date: Mon Sep 19 15:15:40 2022 +0200
update avant red swan
[33mcommit d32b39e6ef596250e1704bbcafe5e3684aea4008[m
Author: GabrielCGI <[email protected]>
Date: Fri Aug 26 16:28:38 2022 +0200
collectMayaScene fast with time stamp
[33mcommit 737814a09d77e9ad8b083016658f935473629a06[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 25 16:01:01 2022 +0200
turbotron_override
[33mcommit 2c955626f5ce1512630a94c33e7696ed09117f68[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 25 15:59:53 2022 +0200
Update turbotron_dev.py
[33mcommit a8dfd519a11c8b8185272f9e2b6efecc23e8e870[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 25 15:39:30 2022 +0200
update turbotron
[33mcommit 10b6eb45505d5b57e20ec871ba9df8ecad83a595[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 25 15:01:57 2022 +0200
turbotron_dev
[33mcommit 554a6fc8617907c3bc149ab6420650f0dc39ec53[m
Author: GabrielCGI <[email protected]>
Date: Wed Aug 24 13:17:23 2022 +0200
pyside_version of turbotron
[33mcommit 383b33bf0ee71b0e1e0b7db1f0fc2dcb2263dadb[m
Author: GabrielCGI <[email protected]>
Date: Wed Aug 24 10:47:20 2022 +0200
turbotron overide
[33mcommit 53fec8bb4cc394dcd18679233e229037b7ab956c[m
Author: GabrielCGI <[email protected]>
Date: Tue Aug 23 12:12:06 2022 +0200
noice submission add + aov bottle
[33mcommit 59ca3c89cffc5c1dd6fc42b858982885013987d5[m
Author: GabrielCGI <[email protected]>
Date: Mon Aug 22 17:42:54 2022 +0200
turbotron_save_before_update
[33mcommit adc3aef7a722973199c60f709f0921ed474858ce[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 21 22:19:39 2022 +0200
turbotron_dev_official_release
[33mcommit e7eca76c3e1a3b47e950b4023a93bcead62efa5f[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 21 21:04:54 2022 +0200
turbotron
[33mcommit 97f8ea5fd3c23404056d31ccf69f21352aec5812[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 21 19:51:13 2022 +0200
fork turbotron
[33mcommit 19e2a2a71712e018fbe416afd580653f68d18d74[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 21 17:54:44 2022 +0200
add denoiser
[33mcommit 34aad8659ceeaefa11887c4c11f4cc5f46e45da9[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 21 16:39:54 2022 +0200
add denoiser for lentil
[33mcommit d9b0669658d72882bb2c139eeef9ddc42e8823ca[m
Author: GabrielCGI <[email protected]>
Date: Sat Aug 20 20:53:11 2022 +0200
add setup variance
[33mcommit 0fab0802c1af7297737776c76047757630275670[m
Author: GabrielCGI <[email protected]>
Date: Wed Aug 17 11:46:11 2022 +0200
globalupdate
[33mcommit b5de2dabbd878f3f72fd88e449ac33126fbd7304[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 11 22:26:54 2022 +0200
prevent same naming in alembic (self overwriting)
[33mcommit d68e9e017c01739a9dda7e81338eeeda0d530645[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 11 17:39:06 2022 +0200
noice_automaton_add
[33mcommit 15e01ac9cb27b6964e64987a1f93fbaf56ee0bf9[m
Author: GabrielCGI <[email protected]>
Date: Wed Aug 10 00:11:38 2022 +0200
set all cam to perspective
[33mcommit 60dd27b8c35096261573705f7a26add5e35094e9[m
Author: GabrielCGI <[email protected]>
Date: Tue Aug 9 21:52:02 2022 +0200
Update collectMayaScene.py
[33mcommit 937cabe35d29c2766fb73d8067093b8795cc7d0f[m
Author: GabrielCGI <[email protected]>
Date: Tue Aug 9 16:37:46 2022 +0200
Update submitToDeadline_pathMapping.py
[33mcommit 9aae243d02f5fdc453920245e50ca715820d3ba1[m
Author: GabrielCGI <[email protected]>
Date: Tue Aug 9 15:01:29 2022 +0200
verification time AND size for collect file
[33mcommit 952e3ebc4991b50057c7faf1de1f9a67a33196ba[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 23:39:59 2022 +0200
copy scene file option to copy online the scene
[33mcommit d722d7e2d80681e9a3a2265b10133decc45dd38c[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 22:35:54 2022 +0200
add progress bar
[33mcommit a89683215e64a86ae90e127949bd862a160c310c[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 22:06:18 2022 +0200
update
[33mcommit 6bb22aa0c24a1c460d9d124805bc308d7ef4689f[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 21:52:17 2022 +0200
shelf_submit_to_deadline
[33mcommit bd6073d2c3ed3deb548f5fa4c20f20987a24250c[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 20:57:17 2022 +0200
add custom deadline to shelf
[33mcommit 825d7d6f6b60cc105e986edf764fba7fe46ca635[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 20:00:31 2022 +0200
submitToDealine custom (add comment used as variable)
[33mcommit 0cadbbeda269617bbb387f3fc15f561a82f0b827[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 18:11:04 2022 +0200
submit_to_deadline_path_mapping_processing
[33mcommit 46f6f227844ac3b9f4ea219b7c19ea0c3691f4cb[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 17:07:39 2022 +0200
add my_comment = "ranch_path_mapping" as controler
[33mcommit 8e0dbc268f3826479f96e46c6ab71458a8c92e09[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 17:06:25 2022 +0200
deadline_rangement
[33mcommit a6f353dbff165e6692b87e5474216038d8b7bd82[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 16:57:52 2022 +0200
deadline modification
[33mcommit ba61694c5972835ec4ab91ce7dbae1395c644114[m
Author: GabrielCGI <[email protected]>
Date: Sun Aug 7 16:50:06 2022 +0200
lentil_hot_fix
[33mcommit 09d7dde3c4cf51480e6d0e61d0774196f4263c59[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 4 11:54:39 2022 +0200
updateda shelf reload camfocus
[33mcommit b33f3d5d1b06c85f934c243243278f73b6c9156a[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 4 11:53:58 2022 +0200
focus distance_fix
[33mcommit b51b17ff9047ab6ec696eb610f6012432d9a674a[m
Author: GabrielCGI <[email protected]>
Date: Wed Aug 3 20:05:47 2022 +0200
control_room
[33mcommit 57b6718e1b4d71cc9fd0f7336f499f24f0e00475[m
Author: GabrielCGI <[email protected]>
Date: Sat Jul 30 21:13:13 2022 +0200
fixe fichier écraser par turbotron
[33mcommit 5b8632f1f6a62491d89615e425e816409f3a5b49[m
Author: GabrielCGI <[email protected]>
Date: Sat Jul 30 21:06:49 2022 +0200
Update turbotron.py
[33mcommit 9cc56d71a27b6e76800f647e272b23db30040f83[m
Author: GabrielCGI <[email protected]>
Date: Sat Jul 30 20:55:22 2022 +0200
turbotron + menage
[33mcommit 4f728da5e29bb4ccaaf5a22bdf7cbbd78a07099d[m
Author: GabrielCGI <[email protected]>
Date: Fri Jul 29 15:17:18 2022 +0200
abc pipeline modif
[33mcommit 606658d5cc79f01199919fe786b4aa2928304186[m
Author: GabrielCGI <[email protected]>
Date: Fri Jul 22 16:08:57 2022 +0200
doctor fix
[33mcommit 667f5bfef0cc295de868163f44d36def0a834be2[m
Author: GabrielCGI <[email protected]>
Date: Wed Jul 20 14:36:16 2022 +0200
guerlain launcher
[33mcommit 4a100229077a6a3e850697aad0ceafee1141b973[m
Author: GabrielCGI <[email protected]>
Date: Mon Jul 18 10:53:40 2022 +0200
update lentil
[33mcommit 0606f7044aa3006585446b6c310bb9e4fa3d2312[m
Author: GabrielCGI <[email protected]>
Date: Wed Jul 6 17:40:23 2022 +0200
update
[33mcommit bfd92760a70c787c3427e43f2c8d283b46953625[m
Author: GabrielCGI <[email protected]>
Date: Fri Jul 1 19:19:20 2022 +0200
fixaov
[33mcommit c468ed97ed1599c1b4b816bb5926bf041f1ea14f[m
Author: GabrielCGI <[email protected]>
Date: Fri Jul 1 14:59:59 2022 +0200
lentil_ignore
[33mcommit 306fa63c99c0efb7183fdb4921ac1d2837c7093d[m
Author: GabrielCGI <[email protected]>
Date: Fri Jul 1 11:06:25 2022 +0200
update
[33mcommit 8346f3ff67df55f9ec0eeaacf8b642fe48c6d830[m
Author: GabrielCGI <[email protected]>
Date: Mon Jun 27 20:10:43 2022 +0200
Update aov.py
[33mcommit 031fd55836a9ffb4297a70a6632390b820cd6891[m
Author: GabrielCGI <[email protected]>
Date: Mon Jun 27 19:04:02 2022 +0200
shelf
[33mcommit 05959c5309ef41c560fe91af70c94d701076e6aa[m
Author: GabrielCGI <[email protected]>
Date: Mon Jun 27 18:59:32 2022 +0200
abc_pipe
[33mcommit 567b5abe00bc1688d2d33ac88fab75941b8f35a5[m
Author: GabrielCGI <[email protected]>
Date: Fri Jun 10 17:09:36 2022 +0200
Update shelf_Bloom.mel
[33mcommit 2b356f2939427524d5ab0024681d928d340ba1bd[m
Author: GabrielCGI <[email protected]>
Date: Fri Jun 10 17:08:31 2022 +0200
fix bug
fix bug
[33mcommit 60dadd6c0bfe719be3ed16f6c6acf6ccbf7c4001[m
Author: GabrielCGI <[email protected]>
Date: Wed Jun 8 14:46:17 2022 +0200
transferShaders
[33mcommit c372581376b7f9f3f89d1c093cbcaf9560182ea3[m
Author: GabrielCGI <[email protected]>
Date: Mon May 30 14:52:43 2022 +0200
Delete 2022087995704.pdf
[33mcommit 96447e23a64d49c47aeb172baba1258b7283b3d3[m
Author: GabrielCGI <[email protected]>
Date: Mon May 30 14:52:21 2022 +0200
uptdate
[33mcommit 24feb09272c216a86cb7fd2da028187322ba289c[m
Author: GabrielCGI <[email protected]>
Date: Fri May 20 10:45:02 2022 +0200
genreral update
[33mcommit b94b42b4764959437f267b7c20ca1d4d0fb7f34d[m
Author: GabrielCGI <[email protected]>
Date: Wed Apr 27 14:43:18 2022 +0200
update_post_candyUp
[33mcommit a67eb6cd9e5dc22fc673f30bd0df079c93d7391c[m
Author: GabrielCGI <[email protected]>
Date: Wed Mar 2 12:22:18 2022 +0100
global_update
[33mcommit 3101cd810dd317b2600450bc0bf5720d6686d4fb[m
Author: GabrielCGI <[email protected]>
Date: Wed Feb 16 20:33:24 2022 +0100
copy_shader
[33mcommit 4d8763b355929d40676b042d0429cb0ceec8814d[m
Author: GabrielCGI <[email protected]>
Date: Wed Feb 16 17:26:24 2022 +0100
proxyfy
[33mcommit 6fa730500e8f1c87a94a07b95cebfdad312ec275[m
Author: GabrielCGI <[email protected]>
Date: Wed Feb 16 14:06:12 2022 +0100
tx pipe
[33mcommit 8a97eadcb2c9c8204c6185d06d4a31ed7f7a71a7[m
Author: GabrielCGI <[email protected]>
Date: Fri Feb 11 16:22:18 2022 +0100
candyUp update
candyUp update
[33mcommit ecfb35c2403d99504c6d288d65b364987086eaae[m
Author: GabrielCGI <[email protected]>
Date: Sun Jan 30 13:14:04 2022 +0100
global change
[33mcommit 21f9cec8b7a94279aba817a09a0e702d59048ad3[m
Author: GabrielCGI <[email protected]>
Date: Tue Jan 11 23:13:23 2022 +0100
BACKUP
EF
[33mcommit 0b872a1b16c32b7681419348618ab0d5d7378ab4[m
Author: GabrielCGI <[email protected]>
Date: Wed Oct 27 16:42:34 2021 +0200
Cleaning tool improving !
[33mcommit 091d8cfa1b576a4df1e418696f92d0aecebdd59d[m
Author: GabrielCGI <[email protected]>
Date: Mon Oct 25 19:34:46 2021 +0200
maintenance
[33mcommit 485cbd4cbbac8bca27c811a35704246875f7cf8b[m
Author: GabrielCGI <[email protected]>
Date: Tue Oct 5 16:41:32 2021 +0200
pipe export
[33mcommit 1acafa694dc163f22efb03a273c5a1400bc7ed7b[m
Author: GabrielCGI <[email protected]>
Date: Thu Sep 9 13:18:35 2021 +0200
swarovki update
daily update
[33mcommit b24397d3eb15eca65a1a88b0d8918bb6de75013f[m
Author: GabrielCGI <[email protected]>
Date: Mon Aug 23 14:31:51 2021 +0200
Update shelf_Bloom.mel
[33mcommit 8c45fcfafdbbf86cf0b12514263bdaf6f4e50a6a[m
Author: GabrielCGI <[email protected]>
Date: Mon Aug 23 14:31:32 2021 +0200
general
[33mcommit 5949aa006a432e3c41b466e2529f20959fb9f0d1[m
Author: GabrielCGI <[email protected]>
Date: Fri Jul 30 18:11:12 2021 +0200
DIVERS
[33mcommit af08918243137f43d4f64589e80b5edf40f312eb[m
Author: GabrielCGI <[email protected]>
Date: Thu Jul 29 15:39:53 2021 +0200
Update startupSettings.py
[33mcommit 9e1de0746b0e087518f6d3edd69ca6a1e688bd9e[m
Author: GabrielCGI <[email protected]>
Date: Thu Jul 29 15:37:42 2021 +0200
megascan + abcpipeline + launcher + startupSetting
[33mcommit 744b9cea2b77be0881d83d8bb5a09be1dbc03f0f[m
Author: GabrielCGI <[email protected]>
Date: Thu Jul 15 18:52:51 2021 +0200
ACES 2.0 TEXTURES CONVERTER
[33mcommit bc892a6264abaec18cfd4ca0076c2449fa4201ed[m
Author: GabrielCGI <[email protected]>
Date: Thu Jul 15 14:59:26 2021 +0200
python 3
[33mcommit 97193b3bf8cc3ea3625264e782801ebde300cd7f[m
Author: GabrielCGI <[email protected]>
Date: Wed May 12 16:18:56 2021 +0200
python 3 migration
[33mcommit 97d027f692139b9c885bbab0acf81ea7263cdd0b[m
Author: GabrielCGI <[email protected]>
Date: Wed May 12 11:35:32 2021 +0200
maya 2022 update
[33mcommit 6b8496f0df21bc00f7f4b3f26148ed5e8247238d[m
Author: GabrielCGI <[email protected]>
Date: Thu May 6 11:15:46 2021 +0200
Maintenance
[33mcommit 0226ea8f68866b3024ec85685e348e7adcda226e[m
Merge: 3dcabc1 fb2457b
Author: GabrielCGI <[email protected]>
Date: Mon Feb 8 12:12:51 2021 +0100
Merge branch 'master' of https://github.com/GabrielCGI/pipe
[33mcommit 3dcabc140c1094186d540867e26121d5eda2e57a[m
Author: GabrielCGI <[email protected]>
Date: Mon Feb 8 12:12:38 2021 +0100
launcher
Yeti & Arnold launcher
script nuke to list read node
[33mcommit fb2457b1a60999f90340cafaf399f80474f65fc5[m
Author: GabrielCGI <[email protected]>
Date: Sun Nov 8 21:07:12 2020 +0100
gazu snippet test
[33mcommit 55102c44f147e3b1cd03f29a3147f5c143578e77[m
Merge: 223ad58 b68ac82
Author: GabrielCGI <[email protected]>
Date: Mon Oct 5 14:39:31 2020 +0200
Merge pull request #38 from GabrielCGI/dev
Update fastVP.py
[33mcommit b68ac82d2c9aee2b306d1c88d0bf2f7470d4ca69[m[33m ([m[1;31morigin/dev[m[33m, [m[1;32mdev[m[33m)[m
Author: GabrielCGI <[email protected]>
Date: Mon Oct 5 14:39:30 2020 +0200
Update fastVP.py
[33mcommit 223ad58dfb38aed855c32a5f2d3c760909900d3b[m
Author: GabrielCGI <[email protected]>
Date: Mon Oct 5 14:36:35 2020 +0200
yetilauncher
[33mcommit dbb5bb4e28afd94e9284a2ea1d01b36804f9b6e4[m
Author: GabrielCGI <[email protected]>
Date: Wed Sep 9 12:23:33 2020 +0200
update doctor
[33mcommit b3b8b7574e8ca823a737e41d48b6102231e597af[m
Merge: e85fd2f dbb5bb4
Author: GabrielCGI <[email protected]>
Date: Wed Sep 9 12:23:02 2020 +0200
Merge pull request #37 from GabrielCGI/dev
update doctor
[33mcommit e85fd2fc75f5822ed8baed50fccb3164e9aea991[m
Merge: 6dd1cef 0198012
Author: GabrielCGI <[email protected]>
Date: Wed Sep 9 11:35:43 2020 +0200
Merge pull request #36 from GabrielCGI/dev
Update doctor.py
[33mcommit 01980124dcab6ac59f14e3c1afd8301cfe1726f7[m
Author: GabrielCGI <[email protected]>
Date: Wed Sep 9 11:27:10 2020 +0200
Update doctor.py
[33mcommit 6dd1cef60a135acc0676052d9abe9c7eb42adf77[m
Merge: ee5a204 b6bfe4b
Author: GabrielCGI <[email protected]>
Date: Wed Aug 26 19:22:54 2020 +0200
Merge pull request #35 from GabrielCGI/dev
Update aov.py
[33mcommit b6bfe4b282c4e430356b9380c98a7043f5408e73[m
Author: GabrielCGI <[email protected]>
Date: Wed Aug 26 19:22:46 2020 +0200
Update aov.py
[33mcommit ee5a20446d3c8e5f3245d105573486735e48e1cd[m
Merge: f6ad814 9a4ccf3
Author: GabrielCGI <[email protected]>
Date: Wed Aug 26 19:10:45 2020 +0200
Merge pull request #34 from GabrielCGI/dev
aov character mask
[33mcommit 9a4ccf364b4e8b859dba052c66e3c14a25b3df2e[m
Author: GabrielCGI <[email protected]>
Date: Wed Aug 26 19:10:34 2020 +0200
aov character mask
[33mcommit f6ad8149df12fc885dc2a2728ad826fdcdf5a23e[m
Merge: 547ce44 cb320f2
Author: GabrielCGI <[email protected]>
Date: Thu Aug 20 15:59:48 2020 +0200
Merge pull request #33 from GabrielCGI/dev
Dev
[33mcommit cb320f2061bef7345e7faf7fa2deb3afaf5d6a96[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 20 15:59:35 2020 +0200
Update abcPipelineExport.py
[33mcommit 547ce444d68df0d8dbef37e8316ecc7f7c4dc224[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 20 15:59:29 2020 +0200
abcUpdater
[33mcommit 77e0a7b1f10278334e0f1f3918e9d343ae50c75b[m
Author: GabrielCGI <[email protected]>
Date: Thu Aug 20 15:57:57 2020 +0200
Update nukeReadLoader.py
[33mcommit 5dee3b0720ecd0791ed48455c3806cefe37c6e4e[m
Merge: 399d63c 0cf0faa
Author: GabrielCGI <[email protected]>
Date: Mon Aug 10 13:54:25 2020 +0200
Merge pull request #32 from GabrielCGI/dev
update abcPipeline paradise adaptation
[33mcommit 399d63c0a4327a1747fb1f8a1cd214c44390d56e[m
Author: GabrielCGI <[email protected]>
Date: Mon Aug 10 13:54:10 2020 +0200
backup abcpipeline
backup