-
Notifications
You must be signed in to change notification settings - Fork 13
/
changelog
1464 lines (732 loc) · 43.3 KB
/
changelog
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
libcluon (0.0.148-1ppa1~jammy1) jammy; urgency=medium
* changing clog to cerr in Player
-- Christian Berger <christian.berger@gu.se> Fri, 22 Mar 2024 10:43:42 +0100
libcluon (0.0.148-1ppa1~focal1) focal; urgency=medium
* changing clog to cerr in Player
-- Christian Berger <christian.berger@gu.se> Fri, 22 Mar 2024 10:43:42 +0100
libcluon (0.0.148-1ppa1~bionic1) bionic; urgency=medium
* changing clog to cerr in Player
-- Christian Berger <christian.berger@gu.se> Fri, 22 Mar 2024 10:43:42 +0100
libcluon (0.0.148-1ppa1~xenial1) xenial; urgency=medium
* changing clog to cerr in Player
-- Christian Berger <christian.berger@gu.se> Fri, 22 Mar 2024 10:43:42 +0100
libcluon (0.0.147-1ppa1~jammy1) jammy; urgency=medium
* fix for non-threaded nodelay replay
-- Christian Berger <christian.berger@gu.se> Fri, 22 Mar 2024 09:05:18 +0100
libcluon (0.0.147-1ppa1~focal1) focal; urgency=medium
* fix for non-threaded nodelay replay
-- Christian Berger <christian.berger@gu.se> Fri, 22 Mar 2024 09:05:18 +0100
libcluon (0.0.147-1ppa1~bionic1) bionic; urgency=medium
* fix for non-threaded nodelay replay
-- Christian Berger <christian.berger@gu.se> Fri, 22 Mar 2024 09:05:18 +0100
libcluon (0.0.147-1ppa1~xenial1) xenial; urgency=medium
* fix for non-threaded nodelay replay
-- Christian Berger <christian.berger@gu.se> Fri, 22 Mar 2024 09:05:18 +0100
libcluon (0.0.146-1ppa1~jammy1) jammy; urgency=medium
* added --nodelay to cluon-replay
-- Christian Berger <christian.berger@gu.se> Thu, 21 Mar 2024 21:52:50 +0100
libcluon (0.0.146-1ppa1~focal1) focal; urgency=medium
* added --nodelay to cluon-replay
-- Christian Berger <christian.berger@gu.se> Thu, 21 Mar 2024 21:52:50 +0100
libcluon (0.0.146-1ppa1~bionic1) bionic; urgency=medium
* added --nodelay to cluon-replay
-- Christian Berger <christian.berger@gu.se> Thu, 21 Mar 2024 21:52:50 +0100
libcluon (0.0.146-1ppa1~xenial1) xenial; urgency=medium
* added --nodelay to cluon-replay
-- Christian Berger <christian.berger@gu.se> Thu, 21 Mar 2024 21:52:50 +0100
libcluon (0.0.145-1ppa1~jammy1) jammy; urgency=medium
* integrating bugfix for parser for non-consecutive IDs
-- Christian Berger <christian.berger@gu.se> Tue, 28 Feb 2023 23:58:19 +0100
libcluon (0.0.145-1ppa1~focal1) focal; urgency=medium
* integrating bugfix for parser for non-consecutive IDs
-- Christian Berger <christian.berger@gu.se> Tue, 28 Feb 2023 23:58:19 +0100
libcluon (0.0.145-1ppa1~bionic1) bionic; urgency=medium
* integrating bugfix for parser for non-consecutive IDs
-- Christian Berger <christian.berger@gu.se> Tue, 28 Feb 2023 23:58:19 +0100
libcluon (0.0.145-1ppa1~xenial1) xenial; urgency=medium
* integrating bugfix for parser for non-consecutive IDs
-- Christian Berger <christian.berger@gu.se> Tue, 28 Feb 2023 23:58:19 +0100
libcluon (0.0.144-1ppa1~jammy1) jammy; urgency=medium
* GH deploy fix
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 15:12:16 +0200
libcluon (0.0.144-1ppa1~focal1) focal; urgency=medium
* GH deploy fix
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 15:12:16 +0200
libcluon (0.0.144-1ppa1~bionic1) bionic; urgency=medium
* GH deploy fix
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 15:12:16 +0200
libcluon (0.0.144-1ppa1~xenial1) xenial; urgency=medium
* GH deploy fix
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 15:12:16 +0200
libcluon (0.0.143-1ppa1~jammy1) jammy; urgency=medium
* curl release fix
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 14:58:35 +0200
libcluon (0.0.143-1ppa1~focal1) focal; urgency=medium
* curl release fix
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 14:58:35 +0200
libcluon (0.0.143-1ppa1~bionic1) bionic; urgency=medium
* curl release fix
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 14:58:35 +0200
libcluon (0.0.143-1ppa1~xenial1) xenial; urgency=medium
* curl release fix
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 14:58:35 +0200
libcluon (0.0.142-1ppa1~jammy1) jammy; urgency=medium
* testing build environment
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 14:52:10 +0200
libcluon (0.0.142-1ppa1~focal1) focal; urgency=medium
* testing build environment
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 14:52:10 +0200
libcluon (0.0.142-1ppa1~bionic1) bionic; urgency=medium
* testing build environment
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 14:52:10 +0200
libcluon (0.0.142-1ppa1~xenial1) xenial; urgency=medium
* testing build environment
-- Christian Berger <christian.berger@gu.se> Fri, 09 Sep 2022 14:52:10 +0200
libcluon (0.0.141-1ppa1~jammy1) jammy; urgency=medium
* adding Ubuntu 22.04 Jammy Jellyfish for deployment
-- Christian Berger <christian.berger@gu.se> Mon, 05 Sep 2022 08:40:18 +0000
libcluon (0.0.141-1ppa1~focal1) focal; urgency=medium
* adding Ubuntu 22.04 Jammy Jellyfish for deployment
-- Christian Berger <christian.berger@gu.se> Mon, 05 Sep 2022 08:40:18 +0000
libcluon (0.0.141-1ppa1~bionic1) bionic; urgency=medium
* adding Ubuntu 22.04 Jammy Jellyfish for deployment
-- Christian Berger <christian.berger@gu.se> Mon, 05 Sep 2022 08:40:18 +0000
libcluon (0.0.141-1ppa1~xenial1) xenial; urgency=medium
* adding Ubuntu 22.04 Jammy Jellyfish for deployment
-- Christian Berger <christian.berger@gu.se> Mon, 05 Sep 2022 08:40:18 +0000
libcluon (0.0.140-1ppa1~focal1) focal; urgency=medium
* fix for ToCSVVisitor to apply mask settings to nested types
-- Christian Berger <christian.berger@gu.se> Thu, 04 Feb 2021 12:19:45 +0000
libcluon (0.0.140-1ppa1~bionic1) bionic; urgency=medium
* fix for ToCSVVisitor to apply mask settings to nested types
-- Christian Berger <christian.berger@gu.se> Thu, 04 Feb 2021 12:19:45 +0000
libcluon (0.0.140-1ppa1~xenial1) xenial; urgency=medium
* fix for ToCSVVisitor to apply mask settings to nested types
-- Christian Berger <christian.berger@gu.se> Thu, 04 Feb 2021 12:19:45 +0000
libcluon (0.0.139-1ppa1~focal1) focal; urgency=medium
* updates to README.md
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 17:44:46 +0000
libcluon (0.0.139-1ppa1~bionic1) bionic; urgency=medium
* updates to README.md
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 17:44:46 +0000
libcluon (0.0.139-1ppa1~xenial1) xenial; urgency=medium
* updates to README.md
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 17:44:46 +0000
libcluon (0.0.138-1ppa1~focal1) focal; urgency=medium
* fixes to updated build system
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 16:02:21 +0000
libcluon (0.0.138-1ppa1~bionic1) bionic; urgency=medium
* fixes to updated build system
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 16:02:21 +0000
libcluon (0.0.138-1ppa1~xenial1) xenial; urgency=medium
* fixes to updated build system
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 16:02:21 +0000
libcluon (0.0.137-1ppa1~focal1) focal; urgency=medium
* updating build system
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 14:58:33 +0000
libcluon (0.0.137-1ppa1~bionic1) bionic; urgency=medium
* updating build system
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 14:58:33 +0000
libcluon (0.0.137-1ppa1~xenial1) xenial; urgency=medium
* updating build system
-- Christian Berger <christian.berger@gu.se> Mon, 01 Feb 2021 14:58:33 +0000
libcluon (0.0.136-1ppa1~focal1) focal; urgency=medium
* revised buildsystem
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 19:21:26 +0000
libcluon (0.0.136-1ppa1~bionic1) bionic; urgency=medium
* revised buildsystem
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 19:21:26 +0000
libcluon (0.0.136-1ppa1~xenial1) xenial; urgency=medium
* revised buildsystem
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 19:21:26 +0000
libcluon (0.0.135-1ppa1~focal1) focal; urgency=medium
* revised buildsystem
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 19:19:20 +0000
libcluon (0.0.135-1ppa1~bionic1) bionic; urgency=medium
* revised buildsystem
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 19:19:20 +0000
libcluon (0.0.135-1ppa1~xenial1) xenial; urgency=medium
* revised buildsystem
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 19:19:20 +0000
libcluon (0.0.134-1ppa1~focal1) focal; urgency=medium
* revised README.md
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 18:47:55 +0000
libcluon (0.0.134-1ppa1~bionic1) bionic; urgency=medium
* revised README.md
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 18:47:55 +0000
libcluon (0.0.134-1ppa1~xenial1) xenial; urgency=medium
* revised README.md
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 18:47:55 +0000
libcluon (0.0.133-1ppa1~focal1) focal; urgency=medium
* adjusted README.md
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 17:38:27 +0000
libcluon (0.0.133-1ppa1~bionic1) bionic; urgency=medium
* adjusted README.md
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 17:38:27 +0000
libcluon (0.0.133-1ppa1~xenial1) xenial; urgency=medium
* adjusted README.md
-- Christian Berger <christian.berger@gu.se> Mon, 20 Jul 2020 17:38:27 +0000
libcluon (0.0.132-1ppa1~focal1) focal; urgency=medium
* fixing segfault Alpine Linux
-- Christian Berger <christian.berger@gu.se> Sat, 06 Jun 2020 00:09:47 +0200
libcluon (0.0.132-1ppa1~bionic1) bionic; urgency=medium
* fixing segfault Alpine Linux
-- Christian Berger <christian.berger@gu.se> Sat, 06 Jun 2020 00:09:47 +0200
libcluon (0.0.132-1ppa1~xenial1) xenial; urgency=medium
* fixing segfault Alpine Linux
-- Christian Berger <christian.berger@gu.se> Sat, 06 Jun 2020 00:09:47 +0200
libcluon (0.0.131-1ppa1~focal1) focal; urgency=medium
* updating Mustache to v4.1 and cpp-peglib to v0.1.7
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 17:21:04 +0200
libcluon (0.0.131-1ppa1~bionic1) bionic; urgency=medium
* updating Mustache to v4.1 and cpp-peglib to v0.1.7
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 17:21:04 +0200
libcluon (0.0.131-1ppa1~xenial1) xenial; urgency=medium
* updating Mustache to v4.1 and cpp-peglib to v0.1.7
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 17:21:04 +0200
libcluon (0.0.130-1ppa1~focal1) focal; urgency=medium
* compile fixes for Ubuntu Focal
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 14:27:08 +0200
libcluon (0.0.130-1ppa1~bionic1) bionic; urgency=medium
* compile fixes for Ubuntu Focal
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 14:27:08 +0200
libcluon (0.0.130-1ppa1~xenial1) xenial; urgency=medium
* compile fixes for Ubuntu Focal
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 14:27:08 +0200
libcluon (0.0.129-1ppa1~focal1) focal; urgency=medium
* added Ubuntu Focal to deploy targets
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 12:25:02 +0200
libcluon (0.0.129-1ppa1~bionic1) bionic; urgency=medium
* added Ubuntu Focal to deploy targets
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 12:25:02 +0200
libcluon (0.0.129-1ppa1~xenial1) xenial; urgency=medium
* added Ubuntu Focal to deploy targets
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 12:25:02 +0200
libcluon (0.0.128-1ppa1~bionic1) bionic; urgency=medium
* support for UDP broadcast
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 10:30:52 +0200
libcluon (0.0.128-1ppa1~xenial1) xenial; urgency=medium
* support for UDP broadcast
-- Christian Berger <christian.berger@gu.se> Wed, 27 May 2020 10:30:52 +0200
libcluon (0.0.127-1ppa1~bionic1) bionic; urgency=medium
* fixes for MinGW/Windows and Visual Studio 2019
-- Christian Berger <christian.berger@gu.se> Sun, 03 Nov 2019 15:20:05 +0100
libcluon (0.0.127-1ppa1~xenial1) xenial; urgency=medium
* fixes for MinGW/Windows and Visual Studio 2019
-- Christian Berger <christian.berger@gu.se> Sun, 03 Nov 2019 15:20:05 +0100
libcluon (0.0.126-1ppa1~bionic1) bionic; urgency=medium
* fix for SIOCGSTAMP
-- Christian Berger <christian.berger@gu.se> Wed, 16 Oct 2019 07:11:29 +0200
libcluon (0.0.126-1ppa1~xenial1) xenial; urgency=medium
* fix for SIOCGSTAMP
-- Christian Berger <christian.berger@gu.se> Wed, 16 Oct 2019 07:11:29 +0200
libcluon (0.0.125-1ppa1~bionic1) bionic; urgency=medium
* fixing incorrect TCP connection hostname resolving
-- Christian Berger <christian.berger@gu.se> Tue, 13 Aug 2019 22:05:00 +0200
libcluon (0.0.125-1ppa1~xenial1) xenial; urgency=medium
* fixing incorrect TCP connection hostname resolving
-- Christian Berger <christian.berger@gu.se> Tue, 13 Aug 2019 22:05:00 +0200
libcluon (0.0.124-1ppa1~bionic1) bionic; urgency=medium
* added hostname resolving to IPv4
-- Christian Berger <christian.berger@gu.se> Mon, 12 Aug 2019 11:56:45 +0200
libcluon (0.0.124-1ppa1~xenial1) xenial; urgency=medium
* added hostname resolving to IPv4
-- Christian Berger <christian.berger@gu.se> Mon, 12 Aug 2019 11:56:45 +0200
libcluon (0.0.123-1ppa1~bionic1) bionic; urgency=medium
* upgrading to catch v2.9.2
-- Christian Berger <christian.berger@gu.se> Fri, 09 Aug 2019 23:59:10 +0200
libcluon (0.0.123-1ppa1~xenial1) xenial; urgency=medium
* upgrading to catch v2.9.2
-- Christian Berger <christian.berger@gu.se> Fri, 09 Aug 2019 23:59:10 +0200
libcluon (0.0.122-1ppa1~bionic1) bionic; urgency=medium
* Upgrading 3rd party libraries; extending functionality for stringtoolbox; fixes from coverity scan
-- Christian Berger <christian.berger@gu.se> Sat, 03 Aug 2019 15:57:28 +0200
libcluon (0.0.122-1ppa1~xenial1) xenial; urgency=medium
* Upgrading 3rd party libraries; extending functionality for stringtoolbox; fixes from coverity scan
-- Christian Berger <christian.berger@gu.se> Sat, 03 Aug 2019 15:57:28 +0200
libcluon (0.0.121-1ppa1~bionic1) bionic; urgency=medium
* refactored cluon-livefeed; added cluon.data.RecorderCommand
-- Christian Berger <christian.berger@gu.se> Sun, 03 Mar 2019 20:02:07 +0100
libcluon (0.0.121-1ppa1~xenial1) xenial; urgency=medium
* refactored cluon-livefeed; added cluon.data.RecorderCommand
-- Christian Berger <christian.berger@gu.se> Sun, 03 Mar 2019 20:02:07 +0100
libcluon (0.0.120-1ppa1~bionic1) bionic; urgency=medium
* Added support for large .rec files for rec2csv
-- Christian Berger <christian.berger@gu.se> Fri, 28 Dec 2018 21:20:43 +0100
libcluon (0.0.120-1ppa1~xenial1) xenial; urgency=medium
* Added support for large .rec files for rec2csv
-- Christian Berger <christian.berger@gu.se> Fri, 28 Dec 2018 21:20:43 +0100
libcluon (0.0.119-1ppa1~bionic1) bionic; urgency=medium
* Updating catch to v2.5.0, argh to v1.3.0, cpp-peglib to latest
-- Christian Berger <christian.berger@gu.se> Tue, 25 Dec 2018 19:24:44 +0100
libcluon (0.0.119-1ppa1~xenial1) xenial; urgency=medium
* Updating catch to v2.5.0, argh to v1.3.0, cpp-peglib to latest
-- Christian Berger <christian.berger@gu.se> Tue, 25 Dec 2018 19:24:44 +0100
libcluon (0.0.118-1ppa1~bionic1) bionic; urgency=medium
* Compile fixes for musl-libc emulation for aarch64 and armhf
-- Christian Berger <christian.berger@gu.se> Tue, 25 Dec 2018 14:00:43 +0100
libcluon (0.0.118-1ppa1~xenial1) xenial; urgency=medium
* Compile fixes for musl-libc emulation for aarch64 and armhf
-- Christian Berger <christian.berger@gu.se> Tue, 25 Dec 2018 14:00:43 +0100
libcluon (0.0.117-1ppa1~bionic1) bionic; urgency=medium
* SharedMemory provides time stamping feature
-- Christian Berger <christian.berger@gu.se> Sat, 22 Dec 2018 22:53:35 +0100
libcluon (0.0.117-1ppa1~xenial1) xenial; urgency=medium
* SharedMemory provides time stamping feature
-- Christian Berger <christian.berger@gu.se> Sat, 22 Dec 2018 22:53:35 +0100
libcluon (0.0.116-1ppa1~bionic1) bionic; urgency=medium
* Adjusted compile flags for release builds
-- Christian Berger <christian.berger@gu.se> Wed, 19 Dec 2018 06:47:41 +0100
libcluon (0.0.116-1ppa1~xenial1) xenial; urgency=medium
* Adjusted compile flags for release builds
-- Christian Berger <christian.berger@gu.se> Wed, 19 Dec 2018 06:47:41 +0100
libcluon (0.0.115-1ppa1~bionic1) bionic; urgency=medium
* Improving code coverage, support for GCC 8.2
-- Christian Berger <christian.berger@gu.se> Mon, 17 Dec 2018 19:58:31 +0100
libcluon (0.0.115-1ppa1~xenial1) xenial; urgency=medium
* Improving code coverage, support for GCC 8.2
-- Christian Berger <christian.berger@gu.se> Mon, 17 Dec 2018 19:58:31 +0100
libcluon (0.0.114-1ppa1~bionic1) bionic; urgency=medium
* Updating catch2 and cpp-peglib
-- Christian Berger <christian.berger@gu.se> Thu, 04 Oct 2018 20:57:25 +0200
libcluon (0.0.114-1ppa1~xenial1) xenial; urgency=medium
* Updating catch2 and cpp-peglib
-- Christian Berger <christian.berger@gu.se> Thu, 04 Oct 2018 20:57:25 +0200
libcluon (0.0.113-1ppa1~bionic1) bionic; urgency=medium
* Compile fixes for i386 and armhf
-- Christian Berger <christian.berger@gu.se> Sun, 23 Sep 2018 10:09:01 +0200
libcluon (0.0.113-1ppa1~xenial1) xenial; urgency=medium
* Compile fixes for i386 and armhf
-- Christian Berger <christian.berger@gu.se> Sun, 23 Sep 2018 10:09:01 +0200
libcluon (0.0.112-1ppa1~bionic1) bionic; urgency=medium
* Compile fixes
-- Christian Berger <christian.berger@gu.se> Sat, 22 Sep 2018 21:16:39 +0200
libcluon (0.0.112-1ppa1~xenial1) xenial; urgency=medium
* Compile fixes
-- Christian Berger <christian.berger@gu.se> Sat, 22 Sep 2018 21:16:39 +0200
libcluon (0.0.111-1ppa1~bionic1) bionic; urgency=medium
* Improving performance of Proto implementation
-- Christian Berger <christian.berger@gu.se> Sat, 22 Sep 2018 19:48:27 +0200
libcluon (0.0.111-1ppa1~xenial1) xenial; urgency=medium
* Improving performance of Proto implementation
-- Christian Berger <christian.berger@gu.se> Sat, 22 Sep 2018 19:48:27 +0200
libcluon (0.0.110-1ppa1~bionic1) bionic; urgency=medium
* Corrected SPDX for Alpine packages
-- Christian Berger <christian.berger@gu.se> Sun, 19 Aug 2018 16:05:12 +0200
libcluon (0.0.110-1ppa1~xenial1) xenial; urgency=medium
* Corrected SPDX for Alpine packages
-- Christian Berger <christian.berger@gu.se> Sun, 19 Aug 2018 16:05:12 +0200
libcluon (0.0.109-1ppa1~bionic1) bionic; urgency=medium
* Re-licensed under MPL-2.0 to better meet single-file, header-only in practice
-- Christian Berger <christian.berger@gu.se> Sun, 19 Aug 2018 15:11:04 +0200
libcluon (0.0.109-1ppa1~xenial1) xenial; urgency=medium
* Re-licensed under MPL-2.0 to better meet single-file, header-only in practice
-- Christian Berger <christian.berger@gu.se> Sun, 19 Aug 2018 15:11:04 +0200
libcluon (0.0.108-1ppa1~bionic1) bionic; urgency=medium
* Reduced verbosity in SharedMemory in success case; elevated permission level to rw+ugo
-- Christian Berger <christian.berger@gu.se> Mon, 13 Aug 2018 19:54:58 +0200
libcluon (0.0.108-1ppa1~xenial1) xenial; urgency=medium
* Reduced verbosity in SharedMemory in success case; elevated permission level to rw+ugo
-- Christian Berger <christian.berger@gu.se> Mon, 13 Aug 2018 19:54:58 +0200
libcluon (0.0.107-1ppa1~bionic1) bionic; urgency=medium
* Added encodeEnvelopeFromJSONWithSampleTimeStamp for Javascript to add sample timestamp
-- Christian Berger <christian.berger@gu.se> Sun, 29 Jul 2018 21:27:33 +0200
libcluon (0.0.107-1ppa1~xenial1) xenial; urgency=medium
* Added encodeEnvelopeFromJSONWithSampleTimeStamp for Javascript to add sample timestamp
-- Christian Berger <christian.berger@gu.se> Sun, 29 Jul 2018 21:27:33 +0200
libcluon (0.0.106-1ppa1~bionic1) bionic; urgency=medium
* Fix for busy waiting in cluon-replay at EOF
-- Christian Berger <christian.berger@gu.se> Wed, 25 Jul 2018 22:56:28 +0200
libcluon (0.0.106-1ppa1~xenial1) xenial; urgency=medium
* Fix for busy waiting in cluon-replay at EOF
-- Christian Berger <christian.berger@gu.se> Wed, 25 Jul 2018 22:56:28 +0200
libcluon (0.0.105-1ppa1~bionic1) bionic; urgency=medium
* Added tool cluon-filter to keep or drop Envelopes from a stdin stream
-- Christian Berger <christian.berger@gu.se> Thu, 19 Jul 2018 20:24:47 +0200
libcluon (0.0.105-1ppa1~xenial1) xenial; urgency=medium
* Added tool cluon-filter to keep or drop Envelopes from a stdin stream
-- Christian Berger <christian.berger@gu.se> Thu, 19 Jul 2018 20:24:47 +0200
libcluon (0.0.104-1ppa1~bionic1) bionic; urgency=medium
* Refactored cluon-msc to generate only a self-contained, C++14-compliant header file (commandline parameters for cluon-msc have changed!)
-- Christian Berger <christian.berger@gu.se> Mon, 16 Jul 2018 14:53:59 +0200
libcluon (0.0.104-1ppa1~xenial1) xenial; urgency=medium
* Refactored cluon-msc to generate only a self-contained, C++14-compliant header file (commandline parameters for cluon-msc have changed!)
-- Christian Berger <christian.berger@gu.se> Mon, 16 Jul 2018 14:53:59 +0200
libcluon (0.0.103-1ppa1~bionic1) bionic; urgency=medium
* CSV exporter writes strings in base64 encoding; cluon-replay can now step through a recording
-- Christian Berger <christian.berger@gu.se> Mon, 09 Jul 2018 11:27:39 +0200
libcluon (0.0.103-1ppa1~xenial1) xenial; urgency=medium
* CSV exporter writes strings in base64 encoding; cluon-replay can now step through a recording
-- Christian Berger <christian.berger@gu.se> Mon, 09 Jul 2018 11:27:39 +0200
libcluon (0.0.102-1ppa1~bionic1) bionic; urgency=medium
* SysV IPC; segfault fix in cluon-replay; performance improvement in OD4Session; support for OpenBSD and NetBSD
-- Christian Berger <christian.berger@gu.se> Mon, 25 Jun 2018 16:11:11 +0200
libcluon (0.0.102-1ppa1~xenial1) xenial; urgency=medium
* SysV IPC; segfault fix in cluon-replay; performance improvement in OD4Session; support for OpenBSD and NetBSD
-- Christian Berger <christian.berger@gu.se> Mon, 25 Jun 2018 16:11:11 +0200
libcluon (0.0.101-1ppa1~bionic1) bionic; urgency=medium
* Improving performance of OD4Session to skip unwanted Envelopes
-- Christian Berger <christian.berger@gu.se> Wed, 13 Jun 2018 20:25:49 +0200
libcluon (0.0.101-1ppa1~xenial1) xenial; urgency=medium
* Improving performance of OD4Session to skip unwanted Envelopes
-- Christian Berger <christian.berger@gu.se> Wed, 13 Jun 2018 20:25:49 +0200
libcluon (0.0.100-1ppa1~bionic1) bionic; urgency=medium
* TCPServer
-- Christian Berger <christian.berger@gu.se> Sun, 10 Jun 2018 10:45:16 +0200
libcluon (0.0.100-1ppa1~xenial1) xenial; urgency=medium
* TCPServer
-- Christian Berger <christian.berger@gu.se> Sun, 10 Jun 2018 10:45:16 +0200
libcluon (0.0.99-1ppa1~bionic1) bionic; urgency=medium
* Adding support for messages with empty fields to convert to/from JSON
-- Christian Berger <christian.berger@gu.se> Wed, 23 May 2018 21:59:42 +0200
libcluon (0.0.99-1ppa1~xenial1) xenial; urgency=medium
* Adding support for messages with empty fields to convert to/from JSON
-- Christian Berger <christian.berger@gu.se> Wed, 23 May 2018 21:59:42 +0200
libcluon (0.0.98-1ppa1~bionic1) bionic; urgency=medium
* Fixing a termination issue when monitoring stdin in cluon-replay
-- Christian Berger <christian.berger@gu.se> Tue, 15 May 2018 09:52:02 +0200
libcluon (0.0.98-1ppa1~xenial1) xenial; urgency=medium
* Fixing a termination issue when monitoring stdin in cluon-replay
-- Christian Berger <christian.berger@gu.se> Tue, 15 May 2018 09:52:02 +0200
libcluon (0.0.97-1ppa1~bionic1) bionic; urgency=medium
* Fixing base64 encoder
-- Christian Berger <christian.berger@gu.se> Mon, 14 May 2018 15:58:08 +0200
libcluon (0.0.97-1ppa1~xenial1) xenial; urgency=medium
* Fixing base64 encoder
-- Christian Berger <christian.berger@gu.se> Mon, 14 May 2018 15:58:08 +0200
libcluon (0.0.96-1ppa1~bionic1) bionic; urgency=medium
* Refactored deployment to JavaScript
-- Christian Berger <christian.berger@gu.se> Sun, 13 May 2018 21:25:21 +0200
libcluon (0.0.96-1ppa1~xenial1) xenial; urgency=medium
* Refactored deployment to JavaScript
-- Christian Berger <christian.berger@gu.se> Sun, 13 May 2018 21:25:21 +0200
libcluon (0.0.95-1ppa1~bionic1) bionic; urgency=medium
* Compile fix for older clang versions
-- Christian Berger <christian.berger@gu.se> Sun, 13 May 2018 16:15:00 +0200
libcluon (0.0.95-1ppa1~xenial1) xenial; urgency=medium
* Compile fix for older clang versions
-- Christian Berger <christian.berger@gu.se> Sun, 13 May 2018 16:15:00 +0200
libcluon (0.0.94-1ppa1~bionic1) bionic; urgency=medium
* Completed test cases for cluon-replay
-- Christian Berger <christian.berger@gu.se> Sat, 12 May 2018 11:03:51 +0200
libcluon (0.0.94-1ppa1~xenial1) xenial; urgency=medium
* Completed test cases for cluon-replay
-- Christian Berger <christian.berger@gu.se> Sat, 12 May 2018 11:03:51 +0200
libcluon (0.0.93-1ppa1~bionic1) bionic; urgency=medium
* Improved test coverage for cluon-replay
-- Christian Berger <christian.berger@gu.se> Fri, 11 May 2018 22:57:25 +0200
libcluon (0.0.93-1ppa1~xenial1) xenial; urgency=medium
* Improved test coverage for cluon-replay
-- Christian Berger <christian.berger@gu.se> Fri, 11 May 2018 22:57:25 +0200
libcluon (0.0.92-1ppa1~bionic1) bionic; urgency=medium
* Release implementation of OD4Session for Win
-- Christian Berger <christian.berger@gu.se> Thu, 10 May 2018 21:36:32 +0200
libcluon (0.0.92-1ppa1~xenial1) xenial; urgency=medium
* Release implementation of OD4Session for Win
-- Christian Berger <christian.berger@gu.se> Thu, 10 May 2018 21:36:32 +0200
libcluon (0.0.91-1ppa1~bionic1) bionic; urgency=medium
* Completed implementation of OD4Session for Win
-- Christian Berger <christian.berger@gu.se> Thu, 10 May 2018 08:40:45 +0200
libcluon (0.0.91-1ppa1~xenial1) xenial; urgency=medium
* Completed implementation of OD4Session for Win
-- Christian Berger <christian.berger@gu.se> Thu, 10 May 2018 08:40:45 +0200
libcluon (0.0.90-1ppa1~bionic1) bionic; urgency=medium
* Improving performance of OD4Session by avoiding receiving self-sent data
-- Christian Berger <christian.berger@gu.se> Tue, 08 May 2018 19:12:47 +0200
libcluon (0.0.90-1ppa1~xenial1) xenial; urgency=medium
* Improving performance of OD4Session by avoiding receiving self-sent data
-- Christian Berger <christian.berger@gu.se> Tue, 08 May 2018 19:12:47 +0200
libcluon (0.0.89-1ppa1~bionic1) bionic; urgency=medium
* Update to any implementation
-- Christian Berger <christian.berger@gu.se> Mon, 07 May 2018 12:03:56 +0200
libcluon (0.0.89-1ppa1~xenial1) xenial; urgency=medium
* Update to any implementation
-- Christian Berger <christian.berger@gu.se> Mon, 07 May 2018 12:03:56 +0200
libcluon (0.0.88-1ppa1~bionic1) bionic; urgency=medium
* Refactoring Testcluon_OD4toStdout to use cluon::Player for validation
-- Christian Berger <christian.berger@gu.se> Mon, 07 May 2018 07:39:30 +0200
libcluon (0.0.88-1ppa1~xenial1) xenial; urgency=medium
* Refactoring Testcluon_OD4toStdout to use cluon::Player for validation
-- Christian Berger <christian.berger@gu.se> Mon, 07 May 2018 07:39:30 +0200
libcluon (0.0.87-1ppa1~bionic1) bionic; urgency=medium
* Adjustments for Testcluon_OD4toStdout to match tested bytes sequence
-- Christian Berger <christian.berger@gu.se> Sun, 06 May 2018 22:31:58 +0200
libcluon (0.0.87-1ppa1~xenial1) xenial; urgency=medium
* Adjustments for Testcluon_OD4toStdout to match tested bytes sequence
-- Christian Berger <christian.berger@gu.se> Sun, 06 May 2018 22:31:58 +0200
libcluon (0.0.86-1ppa1~bionic1) bionic; urgency=medium
* big endian fixes
-- Christian Berger <christian.berger@gu.se> Sun, 06 May 2018 22:18:28 +0200
libcluon (0.0.86-1ppa1~xenial1) xenial; urgency=medium
* big endian fixes
-- Christian Berger <christian.berger@gu.se> Sun, 06 May 2018 22:18:28 +0200
libcluon (0.0.85-1ppa1~bionic1) bionic; urgency=medium
* Missing inline added
-- Christian Berger <christian.berger@gu.se> Sat, 05 May 2018 11:35:11 +0200
libcluon (0.0.85-1ppa1~xenial1) xenial; urgency=medium
* Missing inline added
-- Christian Berger <christian.berger@gu.se> Sat, 05 May 2018 11:35:11 +0200
libcluon (0.0.84-1ppa1~bionic1) bionic; urgency=medium
* Refactoring cluon-OD4toStdout and adding more test cases
-- Christian Berger <christian.berger@gu.se> Sat, 05 May 2018 11:28:41 +0200
libcluon (0.0.84-1ppa1~xenial1) xenial; urgency=medium
* Refactoring cluon-OD4toStdout and adding more test cases
-- Christian Berger <christian.berger@gu.se> Sat, 05 May 2018 11:28:41 +0200
libcluon (0.0.83-1ppa1~bionic1) bionic; urgency=medium
* Refactoring tools implementation for testability
-- Christian Berger <christian.berger@gu.se> Fri, 04 May 2018 23:20:35 +0200
libcluon (0.0.83-1ppa1~xenial1) xenial; urgency=medium
* Refactoring tools implementation for testability
-- Christian Berger <christian.berger@gu.se> Fri, 04 May 2018 23:20:35 +0200
libcluon (0.0.82-1ppa1~bionic1) bionic; urgency=medium
* Fix for comments regex matching on Windows
-- Christian Berger <christian.berger@gu.se> Thu, 03 May 2018 22:23:38 +0200
libcluon (0.0.82-1ppa1~xenial1) xenial; urgency=medium
* Fix for comments regex matching on Windows
-- Christian Berger <christian.berger@gu.se> Thu, 03 May 2018 22:23:38 +0200
libcluon (0.0.81-1ppa1~bionic1) bionic; urgency=medium
* Completed SharedMemory implementation for Windows
-- Christian Berger <christian.berger@gu.se> Thu, 03 May 2018 16:01:33 +0200
libcluon (0.0.81-1ppa1~xenial1) xenial; urgency=medium
* Completed SharedMemory implementation for Windows
-- Christian Berger <christian.berger@gu.se> Thu, 03 May 2018 16:01:33 +0200
libcluon (0.0.80-1ppa1~bionic1) bionic; urgency=medium
* Adjusted deployment scripts to deploy to Ubuntu 16.04 LTS (xenial) and Ubuntu 18.04 LTS (bionic)
-- Christian Berger <christian.berger@gu.se> Tue, 01 May 2018 10:22:12 +0200
libcluon (0.0.80-1ppa1~xenial1) xenial; urgency=medium
* Adjusted deployment scripts to deploy to Ubuntu 16.04 LTS (xenial) and Ubuntu 18.04 LTS (bionic)
-- Christian Berger <christian.berger@gu.se> Tue, 01 May 2018 10:22:12 +0200
libcluon (0.0.79) xenial; urgency=low
* Switching back to xenial on Launchpad