irox-egui-extras 0.5.5

Extras & tweaks for the egui framework
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



## v0.5.5 (2025-01-26)

### Chore

 - <csr-id-45a936a015f24871d007c91f9051377a3dfc1fe5/> cleanup some unused egui features
 - <csr-id-8852ee8e0dfa88b92d0c5ff0d5f1ba6b30da18ca/> fix lints around using Arc<Vec<T>> instead of Arc<[T]>

### New Features

 - <csr-id-8270cefc0903fafcf39d8b206a250403df3c79e9/> fixup nostd support in carto
 - <csr-id-76eaf78eda488c5a0a9207bad1807351cf0bc7e7/> use new errorbars and repainter
 - <csr-id-075db4dc85ea2437eb68f7a2a8c9ae8feb0b7fda/> add new stddev error bar type
 - <csr-id-d34faf971db9204a1a0cad479793e56dac6415af/> add new repaint limiter
 - <csr-id-9d668a1c87b9ce84855314c4bf8fac74449de20b/> upgrade egui to 0.30, fix profiling and fonts
 - <csr-id-8a21395de80191d7bd2c89258541755d1aec7c85/> add TROC options in plotperf
 - <csr-id-10d59a393cd9794cef83dd62903725c41cad87f7/> line highlight cycle now pauses in between loops
 - <csr-id-197846898e443f48ced447a2e4e6208ae4b83f60/> update perftool to include a epoch bias
 - <csr-id-f6d531a23cdff1ffc2d63228a427269bcb039a8d/> better axis alignment and ranging for right axis
 - <csr-id-5bc9bb3290781a2bc26cd51021f1533ea743959d/> plot can cycle through the lines
 - <csr-id-b24dffada0c756be63053ecf158d21ae933e7fc8/> pop hovered line to the front
 - <csr-id-ff847d5fae3376dca63e294289ffcbc4f8cecb05/> draw bonus min/max line
 - <csr-id-c475e0060a653c24d1ad3d8cc74e061c6002783e/> show multiple line quantity examples in plotsperf
 - <csr-id-ea9f262077b885297aae79749b819e6a6d50e9b8/> break up error bars mesh
 - <csr-id-407c46c35dacd4464cc54f48b9b3ed94ddb10914/> expose toolframe settings as defaults in constructor
 - <csr-id-fb3cc94725b10f17b39150d1575ea15dc2dceb7b/> big perf improvement by building and caching meshes by hand whenever the data updates, rather than every frame.
 - <csr-id-a9f48abe0ce7fd9351fbadfa6f434ab3d2398ddc/> add average lines to plotsperf
 - <csr-id-e992440ae06282a790859447c75b92a3bcfaba77/> add ability to have second y-axis
 - <csr-id-c614c13c659a2aa391e03b9ef91d9617c0d81828/> new plots performance checker example
 - <csr-id-c99179a7139826518bd4c615844fa340e9083166/> rejigger line label drawing
 - <csr-id-561032bc0ab15df35412d13cc358a76e4ed9a97c/> thread-safe out-of-band data updates for plots
 - <csr-id-9d4addf0948678b541a48a662d28653bf97ff316/> ability to mark individual lines as visible/invisible.
 - <csr-id-a9c96353d588db122ac290ad6f6a50383bab13cb/> new functions to build axis formatters for time-series physical data

### Bug Fixes

 - <csr-id-aba46d3516c51d883abd5f2fdfbc596187edf8f2/> fix irox-time imports within repainting
 - <csr-id-1627a04d8aff91644a7202d5b4cc8141c0667876/> fix the linux build by adding missing egui features
 - <csr-id-7fcb3e79aa80cc2d23c7de6733ff63d787af7a67/> show time rate of change
 - <csr-id-1eec345d032e64e8719067890adf708eac74a3fe/> tweak transparent shading to be more localized to individual lines rather than the whole range
 - <csr-id-023bc48c4c9179232558879ffef6acceb998883e/> allow extra stuff alongside the frame history in the bottom bar
 - <csr-id-6e5e222a6a72cf565c8da73bb4bb157dfcd409dd/> updating examples from breaking api changes
 - <csr-id-5061f5fc9bb6e46a431ac2dc92691d35f1492c4b/> only draw the hover within the plot grid area

### Refactor

 - <csr-id-9b3f63a99527aa22dccebac43a29057929b7493a/> move structure into own method

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 33 commits contributed to the release over the course of 40 calendar days.
 - 41 days passed between releases.
 - 33 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Fix irox-time imports within repainting ([`aba46d3`]https://github.com/spmadden/irox/commit/aba46d3516c51d883abd5f2fdfbc596187edf8f2)
    - Fixup nostd support in carto ([`8270cef`]https://github.com/spmadden/irox/commit/8270cefc0903fafcf39d8b206a250403df3c79e9)
    - Use new errorbars and repainter ([`76eaf78`]https://github.com/spmadden/irox/commit/76eaf78eda488c5a0a9207bad1807351cf0bc7e7)
    - Add new stddev error bar type ([`075db4d`]https://github.com/spmadden/irox/commit/075db4dc85ea2437eb68f7a2a8c9ae8feb0b7fda)
    - Add new repaint limiter ([`d34faf9`]https://github.com/spmadden/irox/commit/d34faf971db9204a1a0cad479793e56dac6415af)
    - Fix the linux build by adding missing egui features ([`1627a04`]https://github.com/spmadden/irox/commit/1627a04d8aff91644a7202d5b4cc8141c0667876)
    - Cleanup some unused egui features ([`45a936a`]https://github.com/spmadden/irox/commit/45a936a015f24871d007c91f9051377a3dfc1fe5)
    - Upgrade egui to 0.30, fix profiling and fonts ([`9d668a1`]https://github.com/spmadden/irox/commit/9d668a1c87b9ce84855314c4bf8fac74449de20b)
    - Add TROC options in plotperf ([`8a21395`]https://github.com/spmadden/irox/commit/8a21395de80191d7bd2c89258541755d1aec7c85)
    - Move structure into own method ([`9b3f63a`]https://github.com/spmadden/irox/commit/9b3f63a99527aa22dccebac43a29057929b7493a)
    - Show time rate of change ([`7fcb3e7`]https://github.com/spmadden/irox/commit/7fcb3e79aa80cc2d23c7de6733ff63d787af7a67)
    - Tweak transparent shading to be more localized to individual lines rather than the whole range ([`1eec345`]https://github.com/spmadden/irox/commit/1eec345d032e64e8719067890adf708eac74a3fe)
    - Line highlight cycle now pauses in between loops ([`10d59a3`]https://github.com/spmadden/irox/commit/10d59a393cd9794cef83dd62903725c41cad87f7)
    - Update perftool to include a epoch bias ([`1978468`]https://github.com/spmadden/irox/commit/197846898e443f48ced447a2e4e6208ae4b83f60)
    - Better axis alignment and ranging for right axis ([`f6d531a`]https://github.com/spmadden/irox/commit/f6d531a23cdff1ffc2d63228a427269bcb039a8d)
    - Plot can cycle through the lines ([`5bc9bb3`]https://github.com/spmadden/irox/commit/5bc9bb3290781a2bc26cd51021f1533ea743959d)
    - Allow extra stuff alongside the frame history in the bottom bar ([`023bc48`]https://github.com/spmadden/irox/commit/023bc48c4c9179232558879ffef6acceb998883e)
    - Pop hovered line to the front ([`b24dffa`]https://github.com/spmadden/irox/commit/b24dffada0c756be63053ecf158d21ae933e7fc8)
    - Draw bonus min/max line ([`ff847d5`]https://github.com/spmadden/irox/commit/ff847d5fae3376dca63e294289ffcbc4f8cecb05)
    - Show multiple line quantity examples in plotsperf ([`c475e00`]https://github.com/spmadden/irox/commit/c475e0060a653c24d1ad3d8cc74e061c6002783e)
    - Break up error bars mesh ([`ea9f262`]https://github.com/spmadden/irox/commit/ea9f262077b885297aae79749b819e6a6d50e9b8)
    - Expose toolframe settings as defaults in constructor ([`407c46c`]https://github.com/spmadden/irox/commit/407c46c35dacd4464cc54f48b9b3ed94ddb10914)
    - Updating examples from breaking api changes ([`6e5e222`]https://github.com/spmadden/irox/commit/6e5e222a6a72cf565c8da73bb4bb157dfcd409dd)
    - Big perf improvement by building and caching meshes by hand whenever the data updates, rather than every frame. ([`fb3cc94`]https://github.com/spmadden/irox/commit/fb3cc94725b10f17b39150d1575ea15dc2dceb7b)
    - Add average lines to plotsperf ([`a9f48ab`]https://github.com/spmadden/irox/commit/a9f48abe0ce7fd9351fbadfa6f434ab3d2398ddc)
    - Fix lints around using Arc<Vec<T>> instead of Arc<[T]> ([`8852ee8`]https://github.com/spmadden/irox/commit/8852ee8e0dfa88b92d0c5ff0d5f1ba6b30da18ca)
    - Add ability to have second y-axis ([`e992440`]https://github.com/spmadden/irox/commit/e992440ae06282a790859447c75b92a3bcfaba77)
    - New plots performance checker example ([`c614c13`]https://github.com/spmadden/irox/commit/c614c13c659a2aa391e03b9ef91d9617c0d81828)
    - Rejigger line label drawing ([`c99179a`]https://github.com/spmadden/irox/commit/c99179a7139826518bd4c615844fa340e9083166)
    - Thread-safe out-of-band data updates for plots ([`561032b`]https://github.com/spmadden/irox/commit/561032bc0ab15df35412d13cc358a76e4ed9a97c)
    - Only draw the hover within the plot grid area ([`5061f5f`]https://github.com/spmadden/irox/commit/5061f5fc9bb6e46a431ac2dc92691d35f1492c4b)
    - Ability to mark individual lines as visible/invisible. ([`9d4addf`]https://github.com/spmadden/irox/commit/9d4addf0948678b541a48a662d28653bf97ff316)
    - New functions to build axis formatters for time-series physical data ([`a9c9635`]https://github.com/spmadden/irox/commit/a9c96353d588db122ac290ad6f6a50383bab13cb)
</details>

## v0.5.4 (2024-12-15)

### New Features

 - <csr-id-42724120f69243ffb0f93a1524986dc48c79091e/> expose data changed flag in plot

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.5.4 ([`fc569d0`]https://github.com/spmadden/irox/commit/fc569d0d513472f1fa43da6c817ed1e28498ee41)
    - Expose data changed flag in plot ([`4272412`]https://github.com/spmadden/irox/commit/42724120f69243ffb0f93a1524986dc48c79091e)
</details>

## v0.5.3 (2024-12-15)

### New Features

 - <csr-id-f2302e18dd620eba54e66732e402acca14523afb/> cleaning up some deps for wasm
 - <csr-id-22defec5feec02f5b4555a66a39aa6e97c9e4d35/> Plot speed improvements, drop egui_plot dep.
 - <csr-id-b46e8489365045efc963e137c324da44c71be5aa/> add ability to draw shapes on exact plot points
 - <csr-id-d3c8dff38f9b68843636ecb660c60af71891b1ff/> add snapping to graph mouseover
 - <csr-id-df5cccda93d8929266b682c1a3624a09e7482d45/> plots mouseover now use value formatters

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release over the course of 1 calendar day.
 - 1 day passed between releases.
 - 5 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.5.3 ([`eb50a9c`]https://github.com/spmadden/irox/commit/eb50a9c91bab1d3ed56554081614dd6ca5ac9aad)
    - Cleaning up some deps for wasm ([`f2302e1`]https://github.com/spmadden/irox/commit/f2302e18dd620eba54e66732e402acca14523afb)
    - Plot speed improvements, drop egui_plot dep. ([`22defec`]https://github.com/spmadden/irox/commit/22defec5feec02f5b4555a66a39aa6e97c9e4d35)
    - Add ability to draw shapes on exact plot points ([`b46e848`]https://github.com/spmadden/irox/commit/b46e8489365045efc963e137c324da44c71be5aa)
    - Add snapping to graph mouseover ([`d3c8dff`]https://github.com/spmadden/irox/commit/d3c8dff38f9b68843636ecb660c60af71891b1ff)
    - Plots mouseover now use value formatters ([`df5cccd`]https://github.com/spmadden/irox/commit/df5cccda93d8929266b682c1a3624a09e7482d45)
</details>

## v0.5.2 (2024-12-14)

### Bug Fixes

 - <csr-id-091e86dd80a05abd833cbd7460c542bc777871fa/> fix dependency interaction for egui::Widget impl

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.5.2 ([`edab4ba`]https://github.com/spmadden/irox/commit/edab4ba46190aae8315e102bb1439c3cfc473d4b)
    - Fix dependency interaction for egui::Widget impl ([`091e86d`]https://github.com/spmadden/irox/commit/091e86dd80a05abd833cbd7460c542bc777871fa)
</details>

## v0.5.1 (2024-12-13)

### New Features

 - <csr-id-208e170334ed6ce08cbcd86cd503feb36ca18024/> multiple lines in plots, and colors!
 - <csr-id-759c0b9b0d0b6ba037afca7f69d6851df4e9722d/> adding additional fonts
 - <csr-id-79b4c0111cfb4daff7419dda335fca312e4afa4e/> bump MSRV to 1.82

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release over the course of 20 calendar days.
 - 3 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.5.1 ([`67d16d5`]https://github.com/spmadden/irox/commit/67d16d505e7cebc942a7f99d8c7e88ebcb102299)
    - Multiple lines in plots, and colors! ([`208e170`]https://github.com/spmadden/irox/commit/208e170334ed6ce08cbcd86cd503feb36ca18024)
    - Adding additional fonts ([`759c0b9`]https://github.com/spmadden/irox/commit/759c0b9b0d0b6ba037afca7f69d6851df4e9722d)
    - Bump MSRV to 1.82 ([`79b4c01`]https://github.com/spmadden/irox/commit/79b4c0111cfb4daff7419dda335fca312e4afa4e)
</details>

## v0.5.0 (2024-10-29)

<csr-id-bf43c95acb312542bb94ca647366f0c23a692f19/>

### New Features

 - <csr-id-042f09d4a5463123b9ad02f2bb17b9226df11990/> update about window with build host variables.

### Chore (BREAKING)

 - <csr-id-bf43c95acb312542bb94ca647366f0c23a692f19/> upgrade to latest libraries, including egui 0.29.1

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release over the course of 3 calendar days.
 - 42 days passed between releases.
 - 2 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.5.0 ([`bbe46e7`]https://github.com/spmadden/irox/commit/bbe46e765791861109871c6e201bbf8f8a0e8c0e)
    - Upgrade to latest libraries, including egui 0.29.1 ([`bf43c95`]https://github.com/spmadden/irox/commit/bf43c95acb312542bb94ca647366f0c23a692f19)
    - Update about window with build host variables. ([`042f09d`]https://github.com/spmadden/irox/commit/042f09d4a5463123b9ad02f2bb17b9226df11990)
</details>

## v0.4.6 (2024-09-17)

### Bug Fixes

 - <csr-id-53ee70d68dfcebe2fdf134d5a7d0b6c860e346cb/> adding required Send trait to formatter function

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 day passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.4.6 ([`c501b0a`]https://github.com/spmadden/irox/commit/c501b0a4da16c8aaf816ba3f25381f3f78d0d263)
    - Adding required Send trait to formatter function ([`53ee70d`]https://github.com/spmadden/irox/commit/53ee70d68dfcebe2fdf134d5a7d0b6c860e346cb)
</details>

## v0.4.5 (2024-09-15)

### New Features

 - <csr-id-db1fcf488d8ec101ee79ebbf0c8363f30bad9a11/> new ability in logplot to format the axis detents.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 4 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.4.5 ([`9e0d778`]https://github.com/spmadden/irox/commit/9e0d7787e8d42de13cb85ac9e544afc838c1d0f7)
    - New ability in logplot to format the axis detents. ([`db1fcf4`]https://github.com/spmadden/irox/commit/db1fcf488d8ec101ee79ebbf0c8363f30bad9a11)
</details>

## v0.4.4 (2024-09-11)

### New Features

 - <csr-id-6927e8b9576c895bf41455d68c7263635bfa64cc/> add axis labels to BasicPlot
 - <csr-id-26394ddde84dd66c75d8197abf83d8ca0ddbacf0/> adding title to BasicPlot

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release over the course of 9 calendar days.
 - 36 days passed between releases.
 - 2 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.4.4 ([`0da8d38`]https://github.com/spmadden/irox/commit/0da8d38d68179c142db4df25a7591bb9f5ab2d1a)
    - Add axis labels to BasicPlot ([`6927e8b`]https://github.com/spmadden/irox/commit/6927e8b9576c895bf41455d68c7263635bfa64cc)
    - Adding title to BasicPlot ([`26394dd`]https://github.com/spmadden/irox/commit/26394ddde84dd66c75d8197abf83d8ca0ddbacf0)
</details>

## v0.4.3 (2024-08-05)

### Bug Fixes

 - <csr-id-62973622e93ec1c331d2e7a4d32779f1175302ea/> fix inverted if check in logplot zooming

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.4.3 ([`5826d07`]https://github.com/spmadden/irox/commit/5826d07803d94b3d231d5ea5a56ee2fb9298f25d)
    - Fix inverted if check in logplot zooming ([`6297362`]https://github.com/spmadden/irox/commit/62973622e93ec1c331d2e7a4d32779f1175302ea)
</details>

## v0.4.2 (2024-08-05)

<csr-id-29a9615441c4762311484e3b6ecf32745dc3c486/>

### Chore

 - <csr-id-29a9615441c4762311484e3b6ecf32745dc3c486/> fix lints

### New Features

 - <csr-id-dcdd6df468290e02abd9188f3ec68f5aaf3e49c3/> plots now zoom

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release.
 - 2 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.4.2 ([`f4c2fea`]https://github.com/spmadden/irox/commit/f4c2fea0eb390e0174140c3beb08d7ff845f5627)
    - Release irox-egui-extras v0.4.2 ([`3ab0f78`]https://github.com/spmadden/irox/commit/3ab0f78936ee783ae3228044416b93ab140688d3)
    - Fix lints ([`29a9615`]https://github.com/spmadden/irox/commit/29a9615441c4762311484e3b6ecf32745dc3c486)
    - Plots now zoom ([`dcdd6df`]https://github.com/spmadden/irox/commit/dcdd6df468290e02abd9188f3ec68f5aaf3e49c3)
</details>

## v0.4.1 (2024-08-04)

### New Features

 - <csr-id-5c25d79fdfcb3cfd70bdbc472c790bb40c96c86e/> rework the logplot axes again to be more robust

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 3 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.4.1 ([`7edfabe`]https://github.com/spmadden/irox/commit/7edfabe6835dd203ecb4530a56a1224e82f6bae9)
    - Rework the logplot axes again to be more robust ([`5c25d79`]https://github.com/spmadden/irox/commit/5c25d79fdfcb3cfd70bdbc472c790bb40c96c86e)
</details>

## v0.4.0 (2024-08-01)

### New Features

 - <csr-id-0ab81237491d7797da62156f9c8a3fef0d16097e/> tweak the way that the logplot does autoscaling

### Bug Fixes

 - <csr-id-6d4065fde94c672170008017a30685ad7a293712/> fix lints

### New Features (BREAKING)

 - <csr-id-dfa11be274b8e5a61a40c9965096208d64e1fdba/> update egui to 0.28.0

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release over the course of 10 calendar days.
 - 23 days passed between releases.
 - 3 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.4.0 ([`74d6a21`]https://github.com/spmadden/irox/commit/74d6a21d05f69152f7872b55c1130db097748981)
    - Fix lints ([`6d4065f`]https://github.com/spmadden/irox/commit/6d4065fde94c672170008017a30685ad7a293712)
    - Tweak the way that the logplot does autoscaling ([`0ab8123`]https://github.com/spmadden/irox/commit/0ab81237491d7797da62156f9c8a3fef0d16097e)
    - Update egui to 0.28.0 ([`dfa11be`]https://github.com/spmadden/irox/commit/dfa11be274b8e5a61a40c9965096208d64e1fdba)
</details>

## v0.3.12 (2024-07-09)

### New Features

 - <csr-id-fc47b630c4ddda881af8a2da3a0917391088531f/> add about build button
 - <csr-id-317d6b7bd95c2ece9fee79c4a0521cd0f5dc2012/> add toggle buttons to gallery
 - <csr-id-ceeef3484020d9ab171979ec3a94201ebe32f607/> add mouseover capability for logplot
 - <csr-id-109a8c43908cf43a18bc38b2ae6eba859d1a32b8/> Add About Window using irox-build-rs
 - <csr-id-162f02e7597a778f7220903e14bf4ab56b49d852/> start to generate build info for egui-extras

### Bug Fixes

 - <csr-id-bbb2b9698cadb06c939daf857c0c82665990143b/> move WithAlpha trait to crate top-level to fix packaging error

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 7 commits contributed to the release over the course of 2 calendar days.
 - 2 days passed between releases.
 - 6 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.12 ([`51933cb`]https://github.com/spmadden/irox/commit/51933cb24f54862e1575cbce95ac386e67e21fdc)
    - Move WithAlpha trait to crate top-level to fix packaging error ([`bbb2b96`]https://github.com/spmadden/irox/commit/bbb2b9698cadb06c939daf857c0c82665990143b)
    - Add about build button ([`fc47b63`]https://github.com/spmadden/irox/commit/fc47b630c4ddda881af8a2da3a0917391088531f)
    - Add toggle buttons to gallery ([`317d6b7`]https://github.com/spmadden/irox/commit/317d6b7bd95c2ece9fee79c4a0521cd0f5dc2012)
    - Add mouseover capability for logplot ([`ceeef34`]https://github.com/spmadden/irox/commit/ceeef3484020d9ab171979ec3a94201ebe32f607)
    - Add About Window using irox-build-rs ([`109a8c4`]https://github.com/spmadden/irox/commit/109a8c43908cf43a18bc38b2ae6eba859d1a32b8)
    - Start to generate build info for egui-extras ([`162f02e`]https://github.com/spmadden/irox/commit/162f02e7597a778f7220903e14bf4ab56b49d852)
</details>

## v0.3.11 (2024-07-06)

### New Features

 - <csr-id-57dcb42a7f88f2d23bd1117d0ad59e9300b98ee9/> add drag highlight in logplot, soon zoom.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 8 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.11 ([`2b6f331`]https://github.com/spmadden/irox/commit/2b6f3318a8c9081721c9d948a6de4fe4191551f6)
    - Add drag highlight in logplot, soon zoom. ([`57dcb42`]https://github.com/spmadden/irox/commit/57dcb42a7f88f2d23bd1117d0ad59e9300b98ee9)
</details>

## v0.3.10 (2024-06-28)

<csr-id-cc3197e276912dd7aadf83c092086369381aad91/>
<csr-id-e2a48c22f0dab037c9db1710a3b3e4764e199404/>

### Chore

 - <csr-id-cc3197e276912dd7aadf83c092086369381aad91/> clean lints in egui_extras
 - <csr-id-e2a48c22f0dab037c9db1710a3b3e4764e199404/> Clean up new lints

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release over the course of 26 calendar days.
 - 41 days passed between releases.
 - 2 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.10 ([`726d000`]https://github.com/spmadden/irox/commit/726d00044987c5e42299213b0352797d6f3196d1)
    - Clean lints in egui_extras ([`cc3197e`]https://github.com/spmadden/irox/commit/cc3197e276912dd7aadf83c092086369381aad91)
    - Clean up new lints ([`e2a48c2`]https://github.com/spmadden/irox/commit/e2a48c22f0dab037c9db1710a3b3e4764e199404)
</details>

## v0.3.9 (2024-05-18)

### New Features

 - <csr-id-e90d10a12fb82c0a9070df65f94a1a1c977ca2ff/> add dB space scaling to plot
 - <csr-id-923576ef0c6d50f1ce719d1be73b3b44c5f22475/> much happier with the final state of the new plot widget.
 - <csr-id-d4b1c16431af7d952a4c799fb0f6b15bf39c4539/> add basic plot

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release over the course of 13 calendar days.
 - 23 days passed between releases.
 - 3 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.9 ([`d589ea2`]https://github.com/spmadden/irox/commit/d589ea2748f76c3f3fc33d69ae8ed63661ca9bf7)
    - Add dB space scaling to plot ([`e90d10a`]https://github.com/spmadden/irox/commit/e90d10a12fb82c0a9070df65f94a1a1c977ca2ff)
    - Much happier with the final state of the new plot widget. ([`923576e`]https://github.com/spmadden/irox/commit/923576ef0c6d50f1ce719d1be73b3b44c5f22475)
    - Add basic plot ([`d4b1c16`]https://github.com/spmadden/irox/commit/d4b1c16431af7d952a4c799fb0f6b15bf39c4539)
</details>

## v0.3.8 (2024-04-24)

<csr-id-169d25bed38e36f5ae87e69a2bac055290ea0ff6/>

### Chore

 - <csr-id-169d25bed38e36f5ae87e69a2bac055290ea0ff6/> bump version of egui-extras for deps

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.8 ([`c38ade3`]https://github.com/spmadden/irox/commit/c38ade31d68081990a4d71bdb0d1457f858c1b65)
    - Bump version of egui-extras for deps ([`169d25b`]https://github.com/spmadden/irox/commit/169d25bed38e36f5ae87e69a2bac055290ea0ff6)
</details>

## v0.3.7 (2024-03-03)

### New Features

 - <csr-id-49a1d9e676a22ec0d83e5cb98916ddfbd2158d4b/> bump egui to 0.26.0
 - <csr-id-86f758445258f5942fb4b33fa75e2b7c0d64a17f/> updated readme and examples
 - <csr-id-855a5d0b0c8b984536f45299197a0ddfa2adb217/> new serde debug serializer to display objects
 - <csr-id-5ecf31f0f9d77e635569689ce35aab34e9cdadf0/> new toolframe components for easy tools

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 5 commits contributed to the release over the course of 26 calendar days.
 - 50 days passed between releases.
 - 4 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.7 ([`ea99a3f`]https://github.com/spmadden/irox/commit/ea99a3f39286e7670997f794dc67a0d7cebd8faa)
    - Bump egui to 0.26.0 ([`49a1d9e`]https://github.com/spmadden/irox/commit/49a1d9e676a22ec0d83e5cb98916ddfbd2158d4b)
    - Updated readme and examples ([`86f7584`]https://github.com/spmadden/irox/commit/86f758445258f5942fb4b33fa75e2b7c0d64a17f)
    - New serde debug serializer to display objects ([`855a5d0`]https://github.com/spmadden/irox/commit/855a5d0b0c8b984536f45299197a0ddfa2adb217)
    - New toolframe components for easy tools ([`5ecf31f`]https://github.com/spmadden/irox/commit/5ecf31f0f9d77e635569689ce35aab34e9cdadf0)
</details>

## v0.3.6 (2024-01-12)

<csr-id-0fc37b1a2d545e8d6479443f2a55b3ad64bf5a39/>

### Chore

 - <csr-id-0fc37b1a2d545e8d6479443f2a55b3ad64bf5a39/> fixup newline formatting

### New Features

 - <csr-id-303aca0c8fb37543c95ab4c14770e671db4d5b11/> playing with wasm, now can make webpages!

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release over the course of 10 calendar days.
 - 25 days passed between releases.
 - 2 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.6, irox-progress v0.3.0 ([`f23a34b`]https://github.com/spmadden/irox/commit/f23a34bf76874bd6565db16606a68a4cd1056f18)
    - Fixup newline formatting ([`0fc37b1`]https://github.com/spmadden/irox/commit/0fc37b1a2d545e8d6479443f2a55b3ad64bf5a39)
    - Playing with wasm, now can make webpages! ([`303aca0`]https://github.com/spmadden/irox/commit/303aca0c8fb37543c95ab4c14770e671db4d5b11)
</details>

## v0.3.5 (2023-12-17)

### Bug Fixes

 - <csr-id-b4a61eaee2797b459366487c8b2c60dd19b46f99/> fix packaging on linux

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 11 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.5 ([`c6bfcae`]https://github.com/spmadden/irox/commit/c6bfcae2dd3a43b06859a309639474829734afca)
    - Fix packaging on linux ([`b4a61ea`]https://github.com/spmadden/irox/commit/b4a61eaee2797b459366487c8b2c60dd19b46f99)
</details>

## v0.3.4 (2023-12-05)

### New Features

 - <csr-id-92294eb04dda490695d7ab4fde72de759be4045e/> progress bar now can draw text left, center, and right aligned

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 6 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.4 ([`2858b60`]https://github.com/spmadden/irox/commit/2858b6001041e20427f878cd13df280406dac271)
    - Progress bar now can draw text left, center, and right aligned ([`92294eb`]https://github.com/spmadden/irox/commit/92294eb04dda490695d7ab4fde72de759be4045e)
</details>

## v0.3.3 (2023-11-29)

<csr-id-88ebfb5deea5508ca54f4aaab62f6fd5a36f531c/>

### Chore

 - <csr-id-88ebfb5deea5508ca54f4aaab62f6fd5a36f531c/> pivot to using Cargo.toml workspace lints

### New Features

 - <csr-id-d08939007d939152e532b84654208b0156b3a8d6/> update egui to 0.24
 - <csr-id-64c956eb3d26546caaf0f8d3e8c00d8ae44a74f1/> disable all default features for egui deps at workspace level

### Bug Fixes

 - <csr-id-33a3e98e1d2493e7703cf519d9a4514e0f7587a9/> put serde behind a feature gate to fix standalone checks
 - <csr-id-222158b51b32dbb38a20b548fe2b4efd1b1d0486/> fix lint in egui progressbar

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release over the course of 14 calendar days.
 - 5 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.3 ([`bd453bc`]https://github.com/spmadden/irox/commit/bd453bc79951479f48db0be8f12dc035fab95ed0)
    - Put serde behind a feature gate to fix standalone checks ([`33a3e98`]https://github.com/spmadden/irox/commit/33a3e98e1d2493e7703cf519d9a4514e0f7587a9)
    - Pivot to using Cargo.toml workspace lints ([`88ebfb5`]https://github.com/spmadden/irox/commit/88ebfb5deea5508ca54f4aaab62f6fd5a36f531c)
    - Update egui to 0.24 ([`d089390`]https://github.com/spmadden/irox/commit/d08939007d939152e532b84654208b0156b3a8d6)
    - Disable all default features for egui deps at workspace level ([`64c956e`]https://github.com/spmadden/irox/commit/64c956eb3d26546caaf0f8d3e8c00d8ae44a74f1)
    - Fix lint in egui progressbar ([`222158b`]https://github.com/spmadden/irox/commit/222158b51b32dbb38a20b548fe2b4efd1b1d0486)
</details>

## v0.3.2 (2023-11-02)

### New Features

 - <csr-id-69bb1e4bcb962b22bcb7d46582c2b877a03b6322/> Add new progressbar impl with indeterminate mode

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 3 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.2, irox-progress v0.1.2 ([`73e0e72`]https://github.com/spmadden/irox/commit/73e0e7222582695151958708533c033c7eec61bc)
    - Add new progressbar impl with indeterminate mode ([`69bb1e4`]https://github.com/spmadden/irox/commit/69bb1e4bcb962b22bcb7d46582c2b877a03b6322)
</details>

## v0.3.1 (2023-10-29)

<csr-id-7218f70a16f1a21f1ed716bb7aaa712511645476/>

### Chore

 - <csr-id-7218f70a16f1a21f1ed716bb7aaa712511645476/> ALL THE LINTS.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 14 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-egui-extras v0.3.1 ([`8e46d34`]https://github.com/spmadden/irox/commit/8e46d34b6abc9fa1eb8379460dcbddcc8a2d4326)
    - ALL THE LINTS. ([`7218f70`]https://github.com/spmadden/irox/commit/7218f70a16f1a21f1ed716bb7aaa712511645476)
</details>

## v0.3.0 (2023-10-15)

### New Features (BREAKING)

 - <csr-id-ecf8c32dab7374550c63ad62aa3a6637238bdca9/> bump egui dep to 0.23.0

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release over the course of 7 calendar days.
 - 7 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-carto v0.3.0, irox-csv v0.3.0, irox-egui-extras v0.3.0, irox-gpx v0.2.0, irox-influxdb_v1 v0.3.0, irox-nmea0183 v0.2.0, irox-raymarine-sonar v0.2.0, irox-time v0.1.0, irox-winlocation-api v0.2.0, irox v0.3.0 ([`dfa6258`]https://github.com/spmadden/irox/commit/dfa6258b8f93f6d27b85d2f3f4e209599a8168ad)
    - Release irox-units v0.3.0, irox-carto v0.3.0, irox-csv v0.3.0, irox-egui-extras v0.3.0, irox-gpx v0.2.0, irox-influxdb_v1 v0.3.0, irox-nmea0183 v0.2.0, irox-raymarine-sonar v0.2.0, irox-time v0.1.0, irox-winlocation-api v0.2.0, irox v0.3.0, safety bump 2 crates ([`a6c0a5f`]https://github.com/spmadden/irox/commit/a6c0a5fcfc4070b8cbc1442192b7eaef275e80f2)
    - Bump egui dep to 0.23.0 ([`ecf8c32`]https://github.com/spmadden/irox/commit/ecf8c32dab7374550c63ad62aa3a6637238bdca9)
</details>

## v0.2.1 (2023-10-07)

<csr-id-f99614a5ce3368072b4d44dacede0e6e847b0b2e/>

### Chore

 - <csr-id-f99614a5ce3368072b4d44dacede0e6e847b0b2e/> Fix up the readmes for publishing

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release over the course of 19 calendar days.
 - 19 days passed between releases.
 - 1 commit was understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-tools v0.2.1, irox-carto v0.2.1, irox-egui-extras v0.2.1, irox-gpx v0.1.0, irox-types v0.2.1, irox-structs_derive v0.2.1, irox-raymarine-sonar v0.1.0, irox-stats v0.2.1, irox-winlocation-api v0.1.1, irox v0.2.1 ([`68d770b`]https://github.com/spmadden/irox/commit/68d770bb78abe49bf30364ca17ddb6f7bfda05d9)
    - Fix up the readmes for publishing ([`f99614a`]https://github.com/spmadden/irox/commit/f99614a5ce3368072b4d44dacede0e6e847b0b2e)
</details>

## v0.2.0 (2023-09-17)

<csr-id-80d2b88bdcb553faaeafc09673c31d7ebedafd19/>
<csr-id-1a365333397b02a5f911d0897c3bf0c80f6c2b80/>
<csr-id-5c178560becc0b665d70be2d99a1cffad3ba4284/>

### Chore

 - <csr-id-80d2b88bdcb553faaeafc09673c31d7ebedafd19/> update cargo.tomls to add repository
 - <csr-id-1a365333397b02a5f911d0897c3bf0c80f6c2b80/> setting up blank changelogs for the modules

### New Features

 - <csr-id-f98cc23ab3b3270e55c70d59d5ca75e10e8acc62/> fix module name to be consistent

### Other

 - <csr-id-5c178560becc0b665d70be2d99a1cffad3ba4284/> cleaning up clippy warnings

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 5 commits contributed to the release over the course of 28 calendar days.
 - 4 commits were understood as [conventional]https://www.conventionalcommits.org.
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release irox-enums_derive v0.2.0, irox-enums v0.2.0, irox-tools v0.2.0, irox-units v0.2.0, irox-carto v0.2.0, irox-csv v0.2.0, irox-egui-extras v0.2.0, irox-networking v0.2.0, irox-types v0.2.0, irox-influxdb_v1 v0.2.0, irox-structs_derive v0.2.0, irox-structs v0.2.0, irox-nmea0183 v0.1.0, irox-sirf v0.2.0, irox-stats v0.2.0, irox-winlocation-api v0.1.0, irox v0.2.0, safety bump 10 crates ([`6a72204`]https://github.com/spmadden/irox/commit/6a722046661ceef02a66c2067e2c5c15ce102e04)
    - Update cargo.tomls to add repository ([`80d2b88`]https://github.com/spmadden/irox/commit/80d2b88bdcb553faaeafc09673c31d7ebedafd19)
    - Setting up blank changelogs for the modules ([`1a36533`]https://github.com/spmadden/irox/commit/1a365333397b02a5f911d0897c3bf0c80f6c2b80)
    - Cleaning up clippy warnings ([`5c17856`]https://github.com/spmadden/irox/commit/5c178560becc0b665d70be2d99a1cffad3ba4284)
    - Fix module name to be consistent ([`f98cc23`]https://github.com/spmadden/irox/commit/f98cc23ab3b3270e55c70d59d5ca75e10e8acc62)
</details>