-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpre-github-history.log
2879 lines (1927 loc) · 86.2 KB
/
pre-github-history.log
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 ff09bf803590b63355d2ef7da2485e3702ee0311
Author: Peter B <[email protected]>
Date: Sun Mar 20 14:54:45 2022 +0100
Added variant of mkparent.sh with option to define subfolder levels.
commit af37ba421b736e133e329af977183012a8fd412a
Author: Peter B <[email protected]>
Date: Sun Mar 20 14:45:47 2022 +0100
Added temp-folder config option to INI example.
commit 36aacbcad0933841ee5e2be95fc2c85dc92de580
Author: Peter B <[email protected]>
Date: Sun Mar 20 12:57:00 2022 +0100
Added new known issues to list.
commit f81a19fc5a44f36dd3493eab74a4a7f1e3afc8a6
Author: Peter B <[email protected]>
Date: Sun Mar 20 12:55:48 2022 +0100
Added "DIR_TEMP" parameter to define location of temporary folder.
Changed default from "/tmp" to "/var/cinbox".
commit 1ec01f485ab0cff192f43cc8c0a24297c3651576
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Feb 2 16:02:33 2022 +0100
CInbox: Added information about known issues and git-handling
commit 0d8644c8a75683cd5f21686bfca2eebed044dc94
Author: Peter B <[email protected]>
Date: Mon May 31 22:54:19 2021 +0200
Added BRIK to version string, to better identify this production stable release :)
commit 8f7c8cce56539631db261d04713d0990510a4eb3
Author: Peter B <[email protected]>
Date: Mon May 31 22:06:32 2021 +0200
Updated version to v1.3.0
commit 6f11cdc0be6c0dda9a452162102d22ec0031f527
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Feb 3 18:32:37 2020 +0100
Fixed abstract-function header mismatch (PHP7).
commit e5754490328a7ba093b6531bf72b13600ff5165b
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Aug 2 20:51:59 2019 +0200
Added first part for content hash validation (FFmpeg task).
commit 7a885142cd983517e52c4f8a2ead2fbd615b98da
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Aug 2 20:45:05 2019 +0200
Fixed typo "hash type x is".
commit be9fc60070e1bf69f3f2c39f5a3e25e2d99f9718
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Aug 2 13:30:32 2019 +0200
Added check and report if FFmpeg config options are incomplete.
commit 27961af2a439c182c555001153f29c623b54067d
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 22:49:50 2019 +0200
Forgot to add new Doxygen output files.
commit 469d4dd139600e0e6a197b5014b47c342d0e10dc
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 20:50:04 2019 +0200
Updated translation (de_AT).
commit 4e03d02cd363fc99e23da4d89dce7012789459d0
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 20:48:03 2019 +0200
Fixed typo in linebreak.
commit ea66a66e4b7dccbb98a0299fdef623618d4ea01c
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 20:36:52 2019 +0200
Updated Doxygen docs.
commit 33418100f98247a6a3542e7f71c4189155007022
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 20:36:20 2019 +0200
Fixed and improved Doxygen comments in FFmpeg task.
commit 19d34334cae9ff808a52dbc72838bd4d218b18eb
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 19:56:36 2019 +0200
Updated TODO comment.
commit faff8c5ad1888d23c89a0bef5da8da00fe3817f4
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 13:59:12 2019 +0200
Bumped version to 1.3.0-trunk to avoid confusion (NO RELEASE!)
commit 7154fb049e6034ae8368f25635c57a2c648bbd68
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 13:56:32 2019 +0200
Fixed premature skipping of FFmpeg recipes if not all have matching source files.
commit 68f788753f40216f4ff6befb6c8dc1694873e79e
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 30 13:14:37 2019 +0200
Added support for DIR_BASE/DIR_SOURCE placeholders in TARGET_FOLDER.
commit ac0e82fa92b61f6a30fdc1bd1bb05b1141241b76
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 18:32:05 2019 +0200
Moved target-file/folder check methods from CopyToTarget to general Copy class.
commit 8552c60d380e66fb04e0286b7289f83527c2f721
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 17:39:56 2019 +0200
Added custom script for renaming (Brik, s3info).
commit 69aee0307c3769a54652c2fdfe614e0be18426af
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 17:39:32 2019 +0200
Fixed case typo: logFile => logfile
commit 7fbecba6cf2d2c3b6187818f2a67647872e91ec0
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 16:08:37 2019 +0200
Added providing Item path to Bucket script.
commit 9448ee1e50cc4f5d3b6b8e5d3999ac65b9dba107
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 16:07:44 2019 +0200
Added test script for debugging arguments passed to external programs.
commit 4c72be090ef724b1c266761b668c6fa2806d7eed
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 15:57:29 2019 +0200
Changed S3OutRename to task interface for using .s3info files.
commit b466518df0aa3a8a6b9b1d6ebd52973a4a872ca6
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 13:32:30 2019 +0200
Added loading of .s3info file.
commit 91e534b6325690bc9adc78b2672c3786af56974c
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 12:44:53 2019 +0200
Added skeleton for S3 output renaming (based on .s3info files).
commit 099d8918fca8f39db252d0f74a238d8e9a8766e4
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Jul 29 12:28:27 2019 +0200
Added Doxygen grouping of class properties (FFmpeg task).
commit 81e51079c39f9113e9ca2cbdc105630a7d13e56d
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Sat Jul 27 22:06:34 2019 +0200
Started adding option for hash validation in FFmpeg task.
commit 70573e6189231840f3c76611123b778697828aee
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Sat Jul 27 21:41:30 2019 +0200
Added logging of FFmpeg command to execution logfile (for quicker debugging)
commit be9b2c7216b657d2c2d2e9e5105a734b34bd6343
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Sat Jul 27 21:06:53 2019 +0200
Added support for writing FFmpeg output to logfile.
commit 5cb1435e2680beb2fbc36b5a85b07f8a89d639f1
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Sat Jul 27 21:06:05 2019 +0200
Added command-logfile resolve and deletion methods (from TaskCopy).
commit 9145ed0cee97f2b5ac6473312743ca3c3e475f41
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Sat Jul 27 20:59:40 2019 +0200
Fixed wrong reference to class property instead of local variable ($logFile).
commit 9de711ee0449abd36cc473a7edc26e0d8b44f35d
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jul 26 20:38:07 2019 +0200
Added dir in/out placeholders for source/target files.
commit 6ee48deddfaa15a2e6d057400cc91f2042f2041e
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jul 26 19:48:28 2019 +0200
Added check for existing targets in FFmpeg task.
commit 0ee5fbf8c9c14b6fbd2b451d183219b71e0f04ef
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jul 26 17:06:23 2019 +0200
Added support for relative paths in FFmpeg targets.
commit dc09772445ca7726d6fd93d9a54860d5d05de7c9
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jul 26 17:03:32 2019 +0200
Added method for resolving relative pathnames even if target doesn't exist yet.
commit 223f3036c30fe5add6bddf1aed638c2a6dbfaa13
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jul 26 14:36:53 2019 +0200
Handling of "no matching input files found" in FFmpeg task.
commit e73187008e2e66bb06a00fc197b1835257278cb2
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jul 26 14:21:46 2019 +0200
Added multi-recipe support for FFmpeg task.
commit 989aaac53a9b02f9da527715c054000bf0ba3cc5
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jul 26 12:32:27 2019 +0200
Fixed typo.
commit 88a48780e56a9da25d393158de63448745613433
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jul 26 12:31:58 2019 +0200
Preparing multi-recipe support in FFmpeg task.
commit ed5c514d9f5248cee256bb413e8b7af66326d6e0
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 20:51:20 2019 +0200
Added resolveInOut and basic config + functionality of FFmpeg task (not usable yet!)
commit 1f8ef2402102b357c14ec640a5ba661254847efd
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 20:50:55 2019 +0200
Added placeholder for FILE_OUT without suffix.
commit 54e6a39f4a4b73f15e573f296c2c4d7ce447ad62
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 20:48:46 2019 +0200
Remove file-exists check for getBasename to allow preparation of filenames.
commit caea3e45d38c4ba0113a5bdfb87474686e99a9c5
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 19:26:58 2019 +0200
Added placeholder for input file without extension/suffix.
commit 9afc924abcd968db45851450de4ffd022841903f
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 19:26:11 2019 +0200
Added get-method for accessing placeholders in config.
commit c602acbc2947b4639ae91cf63e08c2cbda751a99
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 15:54:23 2019 +0200
Added FFmpeg task for transcoding (not usable yet!)
commit 64a0369d143b8264c7be03669ebcf27b3977a94c
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 14:20:22 2019 +0200
Added method for getting basename (with+without extension).
commit d6bff0e79106835141e0c4bbe07e09df0674a2a2
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 14:13:35 2019 +0200
Fixed missing "abstract" in CopyRsync task class.
commit 8b129fc668498734b2c5184c7e50070867b7eb5d
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jul 25 13:02:56 2019 +0200
Improved comments for Doxygen.
commit 6265f115467d3ef4da55efe39710ecb648f301eb
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Jul 24 13:26:45 2019 +0200
Improved hint positioning and text for classname and task label in skeleton.
commit 4947ba210fb5d46c608f499ecb1ff907eed5e81f
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Jul 24 13:17:05 2019 +0200
Fixed note for finalize() in skeleton.
commit 20f93739b6f9bd52206c899dc40330a9affd983a
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Jul 24 12:19:11 2019 +0200
Improved hint text for declaring CONF settings in skeleton.
commit c82d3c54402eb9af8e2f8539b9a1bab132467c69
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Jul 24 12:14:23 2019 +0200
Added note about possible change to placeholder declarations.
commit d08d783451b0fd60d2ca0d872b09d019b7551a8e
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Jul 24 12:13:55 2019 +0200
Added TODO hint for changing class name in skeleton.
commit 834de20019252ca120578b6eff8434870970f173
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Oct 18 17:34:04 2018 +0200
Added PDF version of CInbox documentation.
commit 8cc86c9fd834e701004842e355ac9779a6551766
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Oct 18 17:27:08 2018 +0200
Docs: Fixed typo in log-style parameter (CV).
commit 3a04a1f40a60e0eee0e84c0b252d6f9bbe40f5f2
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Sep 10 13:57:59 2018 +0200
Restructured README, and fixed version no.
commit 639031de14f2edc2464a9f24e6d74c0adf10019d
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Sep 10 13:57:13 2018 +0200
Updated manual (markdown).
commit 5f9dbb2e468a3ad31ed9923ba58e62e9f9b1b923
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Sep 10 13:55:39 2018 +0200
Updated translation.
commit 9e00d0742f8adcf8e21075f65ffad8c28d1a19b3
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Sep 10 13:55:21 2018 +0200
Updated Doxygen docs.
commit e39f1588c79d5c2e606c5a9f501cffc27511e608
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Sep 10 13:49:12 2018 +0200
Updated copyright and added product website link.
commit 5ce2ae6a4f24b58865b95271ec7d7c5aeaaa7509
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Sep 3 10:00:29 2018 +0200
Fixed setting logstyle by name (regression)
commit 598a62c4d39d429faabf8cb753507c94cece5d60
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Aug 30 11:45:25 2018 +0200
Updated version number
commit f5e70fda8c241c0cd2a8573d62e549cd13aec75e
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Aug 30 11:42:04 2018 +0200
Changed logstyle to string (and fixed sanity check)
commit 867f2ebdb43993bcead61d3ebb6da5c0d918eda4
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Aug 30 11:15:24 2018 +0200
Fixed blocker: Bracket-Typo
commit 4d6ada685dc7b80011619723a3d6df0ea14a8f6a
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Aug 28 21:28:48 2018 +0200
Added translation of help text.
commit b65e22896be81f1e6f31bd416f95b226a2a93444
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Aug 28 21:10:50 2018 +0200
Updated doxygen docs.
commit 6e6376843c9cdb7ee146bd27ffdc56aa6db72c12
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Aug 28 21:09:29 2018 +0200
Updated doxygen docs.
commit 3f9c33e81cc015b8a9e7b43498d89b8505399822
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Aug 28 21:08:59 2018 +0200
Enabled documentation of private/static members (Doxygen)
commit dded60c1a0f0a78d1af51755de16df5deb4d2315
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Aug 28 21:08:03 2018 +0200
Fixed syntax of comments for Doxygen.
commit fcdb2f1b8ea1ff045d972539a3172768bf04b340
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Aug 28 20:40:39 2018 +0200
Added TODO-note about log-writing in CV mode.
commit f1931c5b71786c9946b1a149b82ffc14bd8130aa
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Aug 28 20:27:05 2018 +0200
Added setting logstyle for Items (Fixes exception with '--logstyle 1' + '--log')
commit e15c170b17014c0be6c59c1fa1a690ce75b8447e
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Aug 28 19:42:56 2018 +0200
Added sanity check for logstyle parameter.
commit e7778f346a7023465c9af982981f78ba2dc8b842
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Aug 13 18:52:13 2018 +0200
Added CInbox manual (markdown).
commit 37670e734f5607ce1d60a9c01583d86f22202a98
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Aug 13 18:46:28 2018 +0200
Updated version number (after bugfixes)
commit bda3f3567d7a86f404933e86aa3456d692228233
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Aug 13 18:44:23 2018 +0200
Fixed CV-logging of multiline- and empty-messages.
commit eb28e860506117ee86555e1e84da0249fa006c81
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Aug 13 18:33:16 2018 +0200
Fixed logging item-path instead of item-ID.
commit 54a36f40364ff938e5ef4db47676f447a213362f
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Aug 13 18:16:05 2018 +0200
Fixed typo.
commit 985db5b4298487d30e3893d31c08af39b50e48ed
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Aug 13 18:12:42 2018 +0200
Changed '/' to DIRECTORY_SEPARATOR for OS-independency.
commit 086dfcf958a574ec71cea8dbfebd4a7e51428077
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Aug 13 18:05:34 2018 +0200
Marked hardcoded dlp-storage path as "todo: configure".
commit 77dd72df01099e49d67e8e0985a995bb51c473ab
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 17 12:17:57 2018 +0200
Updated version to v1.2.
commit 1beb20092b047f2e57dbd8b0fc7f5aeda0518d17
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 17 12:15:58 2018 +0200
Updated translation.
commit 902e564d23d37784b25ed0143abf4369b580bad7
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 17 12:13:18 2018 +0200
Added translation wrapper for LogfileCopy strings.
commit dab1573c58697da6d570a6981643c5b5d38cf353
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 17 12:08:50 2018 +0200
Removed task-skeleton leftovers.
commit 294da1e0739d934b8448fd420cc3f88ad1e1cc14
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 17 11:55:19 2018 +0200
Added task to make a logfile copy (Required for CV)
commit 446c730d055cd51d9f23928cad0b28e6c9405a60
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 17 11:53:20 2018 +0200
Added method to retrieve current logfilename.
commit 80a436564afa901d9786e7fb46d1d8b38957e390
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 17 11:52:41 2018 +0200
Added uppercase/lowercase placeholder for ITEM_ID.
commit 62da3a50e09b513cab5f4b6cbf41f02299f91502
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Tue Jul 17 10:08:09 2018 +0200
Logging TARGET_FOLDER plain for better parsing.
commit ff75408889bfe04b92f59740758477337fcf7304
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Jun 7 10:12:38 2018 +0200
Added "logstyle" argument for switching logfile format (classic/filecv).
commit 8a10eaf5fc412826a2bd3551a9ad50f650769ae6
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Jun 6 19:30:27 2018 +0200
Added logging final TARGET_FOLDER in RenameTarget Task.
commit 8dab31c753e06f49e9eaa156ccfd9e9f83d0a77c
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Jun 6 19:28:15 2018 +0200
Added method "logTargetFolder" (resolved path to logs).
commit 1253d2e801a78472f77b35758c9f04cde931bf09
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Jun 6 19:26:00 2018 +0200
Set execute permissions to plugin scripts.
commit 130ac2f29100832e73bfe8060918ad9f570e0fe4
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jun 1 13:06:02 2018 +0200
Merged with CV-Logging branch (Kairo v1.1)
commit dd8fdc6452056a8fd9459f7595a0a82a99b66b0f
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jun 1 12:22:24 2018 +0200
Updated translation.
commit d19e0b9b2aab417c19786b1808532831f2679983
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jun 1 11:34:02 2018 +0200
Bumped version to: 1.0.1
commit 1e3adfbf132e8d31fc3e936b3a53d526a2192b46
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jun 1 11:31:00 2018 +0200
Updated version number.
commit 0c6d097b5f878b47a231245fc32ca6630d4d88d8
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jun 1 11:24:17 2018 +0200
Improved comment/message wording regarding remove/delete.
Improved comment wording on target overwrite on move.
Fixed missing "not" in error message (deleting logfiles).
commit 55a4ac83491828ccbd790e616ba14867035fd03c
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Jun 1 11:14:14 2018 +0200
Fixed wrong word order in hash-mismatch error message.
commit c6f15f7231cc8566b85fc0cf6db7eb0815ec266f
Author: AV-RD Development <[email protected]>
Date: Mon Mar 26 15:58:26 2018 +0200
Updated translation.
commit 4b94a3ce0fe420d7c098c6a06ff6651b7fec34a3
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 26 15:26:33 2018 +0200
Initialized "age=0" to avoid undefined variable.
commit 3fa430d544c1a0fe4c9126d50ec36c7d1ebfab8b
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 26 13:58:09 2018 +0200
Updated version number.
commit c01a024f1c360d9447a42ea482ad5372c095f5eb
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 26 13:54:59 2018 +0200
Fixed "Not a directory" message in item garbage collection.
commit beed97acaddbfb285d45f7ade20599e7e078ef18
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 26 13:53:35 2018 +0200
Marked main PHP file with executable flag.
commit facbe9d410e3aa47cbb1b7d1a068638f59764b58
Author: Peter <[email protected]>
Date: Thu Aug 17 12:14:01 2017 +0200
Updated file rights from 755 to 644.
commit f7ddcb359ba6f9f182f8520a6590a73b54b3ec7d
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 16 20:15:49 2017 +0100
Added packaging as PHAR (.gz)
commit a83df10051a024fc49e9d880dbcf88f62ee4c3f5
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 16 19:14:59 2017 +0100
Switched to calling PHP using "env" in Shebang.
commit e679aff3362302fd6852a031a4382fe9b2ce4f31
Author: Peter <[email protected]>
Date: Thu Mar 16 13:19:36 2017 +0100
Updated Doxygen docs.
commit 12c30c765c62e01866c09392c7376178d5ee3ef6
Author: Peter <[email protected]>
Date: Thu Mar 16 13:19:21 2017 +0100
Updated translation de_AT.
commit ec8e4c97e0ae643a3e87027d4fbbd8824ace5e2f
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 16 13:17:01 2017 +0100
Updated version.
commit 525b639470fe11a40ce57dfe3030b44e206a990d
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 16 13:14:52 2017 +0100
Removing temp-hashfiles for non-matching HASH_MUST_EXIST files.
commit c5f942b00ab58fb4a98875315cb1efe3f6cd0aa8
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 16 13:14:22 2017 +0100
Added method for removing temp-hashfiles.
commit 340eb881427dd2eed7bdcf6cced351abbe2b08f1
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 16 12:38:54 2017 +0100
Removed duplicate comments.
commit b66f73633ca68dbf249bbfd43cfac34ace69ab6e
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 15 11:33:53 2017 +0100
Updated version information (RC10)
commit 2a37f8ef1895fd7f4625674b55bbb50ce0ba9673
Author: Peter <[email protected]>
Date: Wed Mar 15 11:31:15 2017 +0100
Updated Doxygen docs.
commit 0859f81e6cea54af16cd9580c514364f1ead41a3
Author: Peter <[email protected]>
Date: Wed Mar 15 11:30:48 2017 +0100
Updated translation de_AT.
commit 95d4613226ec82be70e92409e5f0867f7f0a12d0
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 15 11:27:46 2017 +0100
Enabled moveFolder as default behavior for CInbox.
commit 98163df9f592a9714fb1ba51f853a3ba59ffd09c
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 15 11:27:17 2017 +0100
Disabled moveFolder for CIFolder class by default.
commit 22ec91beeb9d3758e341602f5ddf3fd78b09a5ce
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 15 11:20:10 2017 +0100
Added option to move logfiles according to their Item's status.
commit 262d74cec20cc4662f151327db6c9a594b5dbbae
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 15 11:18:38 2017 +0100
Fixed wrong function call/behavior for getting Item logfile name
commit 108188271cd1c7d85adf1b54a99b9c726358e370
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 15 11:04:29 2017 +0100
Preserving itemID-case in logfile name.
commit 5cffb780acbb416cae9a00993e02935e89c99024
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 15 10:57:10 2017 +0100
Added method to relocate logfile position/name.
commit 8185eb443c68dbf35b3f70b2dc4e74662bffbc24
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 15 10:56:20 2017 +0100
InstanceID should have never been static.
commit f5b1734d6c24a503445ab33f1b5a41c4af2981c4
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 15:53:22 2017 +0100
Fixed 'too many open files' for Task RenameTarget.
commit d0e64e94c79976abaa60722357b7537c83f3d5a0
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 15:50:10 2017 +0100
Fixed 'too many open files' for Task HashValidate.
commit 481feb9fc6e4d3cac49199cb30ca6d423f1c13b2
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 14:44:00 2017 +0100
Fixed 'too many open files' for Task CopyToTarget.
commit f29296c39e8746db9f859f9a4af36fb28f1a2ba8
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 14:40:12 2017 +0100
Fixed 'too many open files' for Task HashGenerate.
commit 6104c3205c331766051a4e1e18a34e551d581517
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 14:35:44 2017 +0100
Added folder listing method that doesn't keep files open.
commit a6828799561cdca23bd0a930b6a2b0dcdeadd0b9
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 14:34:40 2017 +0100
Added wrapper for stat().
commit 845fbe44aad60c79381eb2155b3815fd536cefa4
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 14:24:31 2017 +0100
Removed "isDot" check since getFolderListing() already filters them.
commit ea166d6d491cf6d622a1ddc8605d36b5462ffe83
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 11:41:43 2017 +0100
Added output of PHP error messages when logging exceptions.
commit 68d6e92eb7f55150c8ee139314c2d08fdb0e16db
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Mar 13 11:06:56 2017 +0100
Changed temp-clean message to match new cooloff-algorithm behavior.
commit acea12bd390e2d0cfbdd2f96b91d1a5b83e83ec7
Author: Peter <[email protected]>
Date: Fri Mar 3 19:37:32 2017 +0100
Updated version number to RC9.
commit 49e940e885406adb13be9303682ed016468bef22
Author: Peter <[email protected]>
Date: Fri Mar 3 19:35:46 2017 +0100
Updated Doxygen docs.
commit 2db52ba5a151a1f9f82411f5f01eda0d07e872e4
Author: Peter <[email protected]>
Date: Fri Mar 3 19:35:29 2017 +0100
Improved Doxygen comments.
commit ea938f98eb63d90951d711caae56c321e102024a
Author: Peter <[email protected]>
Date: Fri Mar 3 19:26:37 2017 +0100
Added warning regarding swapped taskorder Rename/Validate in RC8.
commit aad2967a73e6810c12d2aebd87bcfbb357fcd7a6
Author: Peter <[email protected]>
Date: Fri Mar 3 19:26:15 2017 +0100
Updated translation de_AT.
commit 83e823541b844bf7540f5914e66c6c885c0c4a26
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Mar 3 19:09:22 2017 +0100
Added COOLOFF_FILTERS to exclude stat values from cooloff check.
commit ac24dea15cbaa8b462f5ced44ef86054e6cb6e61
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Mar 3 18:44:54 2017 +0100
Added filter option for stat values in dirlistToText().
commit c7ecb5a8f0da6dedd0258942e78ab5c2f6fad123
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Fri Mar 3 17:33:54 2017 +0100
Added check to catch stat() call failure.
commit adc6277e1dce2cddfc0e634a1d4e34ade2f9e297
Author: Peter <[email protected]>
Date: Thu Mar 2 16:39:15 2017 +0100
Updated known issues.
commit 18c2096f4d89921a1276fe397ff162a9b9ce9d98
Author: Peter <[email protected]>
Date: Thu Mar 2 15:58:33 2017 +0100
Updated version to v1.0-RC8.
commit ba57d32a4d64ff385c7fc12f0192757127f897ee
Author: Peter <[email protected]>
Date: Thu Mar 2 15:57:34 2017 +0100
Update Doxygen docs.
commit 506de09cef5c09dcb263e0f0a8940062e36afbe3
Author: Peter <[email protected]>
Date: Thu Mar 2 15:55:59 2017 +0100
Update translation de_AT.
commit 617d48658f94b297f6daff77b4bec6d606667e1d
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 2 15:53:44 2017 +0100
Changed file properties from 755 to 644.
commit 87564e5a338f3b3e5496170b5f3a904cbbc2debe
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 2 14:00:27 2017 +0100
Changed HashSearch evaluation to catch empty hashcode files.
commit 2d8bbeb77fee6abc0057d24cfe9bc5ef2928151c
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 2 13:59:47 2017 +0100
Cosmetic change.
commit d66ee88a3b376eb7e015b3067d2c67085eb0c921
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 2 13:58:41 2017 +0100
Replaced invalid 'continue' with NULL return (fixes PHP7 incompatibility).
commit 7cdba45b86b6823c9491bbac3639e3de96977313
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Mar 2 13:56:43 2017 +0100
Removed superfluous function name in Exception msg.
commit 430a78c1c5b5cfe55ee09eaeb7162d48a6129c3c
Author: Peter <[email protected]>
Date: Wed Mar 1 16:26:52 2017 +0100
Updated translation de_AT.
commit 692856ce4dcca42080ab15446dbe9acd08b81a81
Author: Peter <[email protected]>
Date: Wed Mar 1 16:19:32 2017 +0100
Added plugin-examples.
commit cb5a184ef78b7241e5a84db9b0695315ce9175c8
Author: Peter <[email protected]>
Date: Wed Mar 1 16:18:00 2017 +0100
Updated Doxygen docs.
commit cc1304cf096d817b7001b81cdd700bc2954fcff4
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 1 16:12:03 2017 +0100
Changed cooloff detection to monitored folder-changes.
commit c58264746c283c22e0b1cb0f63ad50fc6ac72b27
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 1 15:10:01 2017 +0100
Added conversion function for dirlist to text (for monitoring folder changes).
commit 05a4d6ecee01764e3224d3ed0ce5e7832da3b3e3
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 1 15:08:26 2017 +0100
Removed trailing whitespace.
commit bd008a6926f9c41ba42a62e142cadf00d52b9712
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 1 15:07:35 2017 +0100
Fixed warning in Helper due to missing variable initialization.
commit b5e0ae0846cd6149ae96356165440e332a55f216
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 1 13:30:59 2017 +0100
Changed Doxygen comment tags to start with '@'.
commit bb0e3811f5e0e18b448979ad1364d6dc9bec499a
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 1 13:29:40 2017 +0100
Improved Doxygen comments.
commit 1fed1202cf4ff99856fb61609be8f1cbf2b78bf7
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 1 13:27:52 2017 +0100
Changed logfile msg prefixes to contain ERROR + WARNING as words
commit 698e23a3566a718bf012026992b866d7b0382958
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Wed Mar 1 13:27:33 2017 +0100
Remove trailing whitespace.
commit 17a0a0f7c247d38bb0ff70ca46f3733d2fe4884b
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Feb 23 17:59:30 2017 +0100
Moved Task HashValidate before RenameTarget.
commit f093e9fe6bebb0c2281c7a5ae71a33e1a042402c
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Feb 23 17:58:36 2017 +0100
Moved resolving targetFolderTemp name to CITask so non-copy tasks can access it too.
commit 88498f44f4ce85ce3471c7f5e9487d1559e2b5f2
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Thu Feb 23 16:59:28 2017 +0100
Fixed missing check if HASH_SEARCH config is array.
commit 9a10f480064f7c0925eb83440f5a2c28ea9ca88e
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Feb 6 17:57:15 2017 +0100
Split Reelbox list handling into check+add.
commit 5722f739b6e21a27f5e527f7336836f63abd396c
Merge: 92f096e 1e069c9
Author: Peter Bubestinger-Steindl <[email protected]>
Date: Mon Feb 6 15:55:25 2017 +0100
Merge branch 'master' of shadow:/home/avrd/repos/avrd