-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlist.html
More file actions
5054 lines (5053 loc) · 422 KB
/
list.html
File metadata and controls
5054 lines (5053 loc) · 422 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<title>Unofficial repository for Debian/Ubuntu</title>
<style type="text/css"> .record {background-color:#D9DDFF; color:#000000; font-family:MS Sans Serif; font-size:8pt} .header {background-color:#AAAAEE; color:#FFFFFF; font-weight:bold; font-family:MS Sans Serif; font-size:8pt} .hrecord {background-color:#CCFFCD; color:#000000; font-family:MS Sans Serif; font-size:8pt} .hheader {background-color:#68FF64; color:#000000; font-weight:bold; font-family:MS Sans Serif; font-size:8pt} .footer {background-color:#FFFFFF; color:#AAAAEE; font-family:MS Sans Serif; font-size:8pt}</style>
</head>
<table align="right" >
<tr>
<td>
<a href=index-old_ru.html>RU</a>
</td>
<td>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="82FDQKGH8L4HU">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</td>
<!--
<td>
<a href="https://flattr.com/submit/auto?user_id=Alex_P&url=http%3A%2F%2Fnotesalexp.org" target="_blank"><img src="//api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a>
</td>
<td>
<iframe frameborder="0" allowtransparency="true" scrolling="no" src="https://money.yandex.ru/embed/small.xml?account=410012527124756&quickpay=small&yamoney-payment-type=on&button-text=06&button-size=s&button-color=white&targets=notesalexp.org&default-sum=100&successURL=" width="145" height="31"></iframe>
</td>
-->
</tr>
</table>
<dl>
<DT>Open a terminal<DT>
<I>su</I> - <FONT COLOR="#808080">#to log as root</FONT><DT>
<I>gedit /etc/apt/sources.list</I> <FONT COLOR="#808080">#to open
repository file with a text editor (you can use gedit or another)</FONT><DT>
Add this line for Buster:
<I>deb https://notesalexp.org/debian/buster/ buster main</I><DT>
Add this line for Bullseye:
<I>deb https://notesalexp.org/debian/bullseye/ bullseye main</I><DT>
Add this line for Bookworm:
<I>deb https://notesalexp.org/debian/bookworm/ bookworm main</I><DT>
Add this line for Sid:
<I>deb https://notesalexp.org/debian/sid/ sid main</I><DT>
Add this line for Xenial:
<I>deb https://notesalexp.org/debian/xenial/ xenial main</I><DT>
Add this line for Bionic:
<I>deb https://notesalexp.org/debian/bionic/ bionic main</I><DT>
Add this line for Focal:
<I>deb https://notesalexp.org/debian/focal/ focal main</I><DT>
Add this line for Jammy:
<I>deb https://notesalexp.org/debian/jammy/ jammy main</I><DT>
Add this line for Mantic:
<I>deb https://notesalexp.org/debian/mantic/ mantic main</I><DT>
Add this line for Noble:
<I>deb https://notesalexp.org/debian/noble/ noble main</I><DT>
Save and close sources.list<DT>
<I>apt-get install apt-transport-https</I><DT>
<I>apt-get update -oAcquire::AllowInsecureRepositories=true</I><DT>
<I>apt-get install notesalexp-keyring -oAcquire::AllowInsecureRepositories=true</I><FONT COLOR="#808080"> #to add gpg key</FONT><DT>
<I>apt-get update</I> <FONT COLOR="#808080">#to update package list</FONT><DT>
<I>apt-get install package</I><DT>
<strong>Warning:</strong> Need to update the gpg-key.(2015-09-20)<DT>
<strong>Warning:</strong> Some packages for Debian GNU/Linux require <a href="http://www.deb-multimedia.org/">http://www.deb-multimedia.org/</a> repository to be connected.
</dl>
<table border="0" cellpadding="2" cellspacing="2">
<tr class="header">
<td> </td>
<td> Package\Dist </td>
<td> <a href="https://notesalexp.org/packages/en/debian/buster/amd64/">Debian Buster</a></td>
<td> <a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/">Debian Bullseye</a></td>
<td> <a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/">Debian Bookworm</a></td>
<td> <a href="https://notesalexp.org/packages/en/debian/sid/amd64/">Debian Sid</a></td>
<td> <a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/">Ubuntu Xenial</a></td>
<td> <a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/">Ubuntu Bionic</a></td>
<td> <a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/">Ubuntu Focal</a></td>
<td> <a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/">Ubuntu Jammy</a></td>
<td> <a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/">Ubuntu Mantic</a></td>
<td> <a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/">Ubuntu Noble</a></td>
<td> <a href="https://notesalexp.org/source/">Source</a></td>
</tr>
<tr class="record">
<td> 1 </td>
<td><strong><a title="advanced subtitle editor" href="http://www.aegisub.org/"> aegisub </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
</tr>
<tr class="record">
<td> 2 </td>
<td><strong><a title="aegisub language packages" href="http://www.aegisub.org/"> aegisub-l10n </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/aegisub-l10n/"> 3.3.3~git8119-33ff9b408 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/aegisub/"> 3.3.3~git8119-33ff9b408 </a> </td>
</tr>
<tr class="record">
<td> 3 </td>
<td><strong><a title="apd and adw file tool" href="http://azsky2.html.xdomain.jp/"> apdtool </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/apdtool/"> 1.1.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/apdtool/"> 1.1.1 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/apdtool/"> 1.1.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/apdtool/"> 1.1.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/apdtool/"> 1.1.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/apdtool/"> 1.1.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/apdtool/"> 1.1.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/apdtool/"> 1.1.1 </a> </td>
</tr>
<tr class="record">
<td> 4 </td>
<td><strong><a title="fast, cross-platform audio editor" href="http://audacityteam.org/"> audacity </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/audacity/"> 2.4.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/audacity/"> 2.4.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/audacity/"> 2.4.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/audacity/"> 2.4.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/audacity/"> 2.4.1 </a> </td>
</tr>
<tr class="record">
<td> 5 </td>
<td><strong><a title="fast, cross-platform audio editor (data)" href="http://audacityteam.org/"> audacity-data </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/audacity-data/"> 2.4.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/audacity-data/"> 2.4.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/audacity-data/"> 2.4.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/audacity-data/"> 2.4.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/audacity/"> 2.4.1 </a> </td>
</tr>
<tr class="record">
<td> 6 </td>
<td><strong><a title="The autopoint program from GNU gettext" href="http://www.gnu.org/software/gettext/"> autopoint </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/autopoint/"> 0.19.8.1-1ubuntu2 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gettext/"> 0.19.8.1-1ubuntu2 </a> </td>
</tr>
<tr class="record">
<td> 7 </td>
<td><strong><a title="16bit RGB full color paint software" href="https://osdn.net/projects/azpainter/"> azpainter </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/azpainter/"> 3.0.10 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/azpainter/"> 3.0.10 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/azpainter/"> 3.0.10 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/azpainter/"> 3.0.10 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/azpainter/"> 2.1.7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/azpainter/"> 2.1.7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/azpainter/"> 3.0.10 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/azpainter/"> 3.0.10 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/azpainter/"> 3.0.10 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/azpainter/"> 3.0.10 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/azpainter/"> 3.0.10 </a> </td>
</tr>
<tr class="record">
<td> 8 </td>
<td><strong><a title="e-mail client for GNOME" href="http://pawsa.fedorapeople.org/balsa/"> balsa </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/balsa/"> 2.5.11 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/balsa/"> 2.6.3+git9818-893cda7b2 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/balsa/"> 2.6.4+git10126-b8ad7d4f7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/balsa/"> 2.6.4+git10126-b8ad7d4f7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/balsa/"> 2.5.7+git9239-606d1ee26 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/balsa/"> 2.5.11 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/balsa/"> 2.6.3+git9741-66908a636 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/balsa/"> 2.6.4+git10126-b8ad7d4f7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/balsa/"> 2.6.4+git10126-b8ad7d4f7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/balsa/"> 2.6.4+git10126-b8ad7d4f7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/balsa/"> 2.6.4+git10126-b8ad7d4f7 </a> </td>
</tr>
<tr class="record">
<td> 9 </td>
<td><strong><a title="BitMap Panel" href="https://github.com/nsf/bmpanel2"> bmpanel2 </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/bmpanel2/"> 2.1.0~git20170409 </a> </td>
</tr>
<tr class="record">
<td> 10 </td>
<td><strong><a title="Preferences manager for BitMap Panel" href="https://github.com/nsf/bmpanel2"> bmpanel2cfg </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/bmpanel2cfg/"> 2.1.0~git20170409 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/bmpanel2cfg/"> 2.1.0~git20170409 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/bmpanel2cfg/"> 2.1.0~git20170409 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/bmpanel2/"> 2.1.0~git20170409 </a> </td>
</tr>
<tr class="record">
<td> 11 </td>
<td><strong><a title="free and open source PS4 remote play client" href="https://git.sr.ht/~thestr4ng3r/chiaki"> chiaki </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/chiaki/"> 2.1.0+git718-94fcdc3 </a> </td>
</tr>
<tr class="record">
<td> 12 </td>
<td><strong><a title="modern music player and library organizer" href="http://www.clementine-player.org/"> clementine </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/clementine/"> 1.4.1~git17-g4ea9d473a </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/clementine/"> 1.4.1~git17-g4ea9d473a </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/clementine/"> 1.4.1~git17-g4ea9d473a </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/clementine/"> 1.4.1~git11-gcecc1c1b5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/clementine/"> 1.3.1+git2191-ge9a2161aa </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/clementine/"> 1.4.1~git17-g4ea9d473a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/clementine/"> 1.4.1~git17-g4ea9d473a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/clementine/"> 1.4.1~git17-g4ea9d473a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/clementine/"> 1.4.1~git13-gce9c26972 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/clementine/"> 1.4.1~git17-g4ea9d473a </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/clementine-qt5/"> 1.4.1~git17-g4ea9d473a </a> </td>
</tr>
<tr class="record">
<td> 13 </td>
<td><strong><a title="cross-platform, open-source make system" href="https://cmake.org/"> cmake </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/cmake/"> 3.16.3 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/cmake/"> 3.16.3 </a> </td>
</tr>
<tr class="record">
<td> 14 </td>
<td><strong><a title="curses based user interface for CMake (ccmake)" href="https://cmake.org/"> cmake-curses-gui </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/cmake-curses-gui/"> 3.16.3 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/cmake/"> 3.16.3 </a> </td>
</tr>
<tr class="record">
<td> 15 </td>
<td><strong><a title="CMake data files (modules, templates and documentation)" href="https://cmake.org/"> cmake-data </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/cmake-data/"> 3.16.3 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/cmake/"> 3.16.3 </a> </td>
</tr>
<tr class="record">
<td> 16 </td>
<td><strong><a title="extended documentation in various formats for CMake" href="https://cmake.org/"> cmake-doc </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/cmake-doc/"> 3.16.3 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/cmake/"> 3.16.3 </a> </td>
</tr>
<tr class="record">
<td> 17 </td>
<td><strong><a title="Qt based user interface for CMake (cmake-gui)" href="https://cmake.org/"> cmake-qt-gui </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/cmake-qt-gui/"> 3.16.3 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/cmake/"> 3.16.3 </a> </td>
</tr>
<tr class="record">
<td> 18 </td>
<td><strong><a title="desktop menu for compiz" href="http://sourceforge.net/projects/compizboxmenu/"> compizboxmenu </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
</tr>
<tr class="record">
<td> 19 </td>
<td><strong><a title="Qt5 interface to DeaDBeeF" href="https://github.com/kuba160/ddb_gui_qt5"> ddb-gui-qt5 </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/ddb-gui-qt5/"> 0.0.1+git212-10ecff2 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/ddb-gui-qt5/"> 0.0.1+git212-10ecff2 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/ddb-gui-qt5/"> 0.0.1+git212-10ecff2 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/ddb-gui-qt5/"> 0.0.1+git212-10ecff2 </a> </td>
</tr>
<tr class="record">
<td> 20 </td>
<td><strong><a title="ultimate music player for GNU/Linux systems" href="http://deadbeef.sourceforge.net/"> deadbeef </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/deadbeef/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/deadbeef/"> 1.8.8-nap1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/deadbeef/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/deadbeef/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/deadbeef/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/deadbeef/"> 1.8.8-nap1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/deadbeef/"> 1.8.8-nap1 </a> </td>
</tr>
<tr class="record">
<td> 21 </td>
<td><strong><a title="DeaDBeeF plugins development files" href="http://deadbeef.sourceforge.net/"> deadbeef-dev </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/deadbeef-dev/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/deadbeef-dev/"> 1.8.8-nap1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/deadbeef-dev/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/deadbeef-dev/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/deadbeef-dev/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/deadbeef-dev/"> 1.8.8-nap1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/deadbeef/"> 1.8.8-nap1 </a> </td>
</tr>
<tr class="record">
<td> 22 </td>
<td><strong><a title="GTK2 interface to DeaDBeeF" href="http://deadbeef.sourceforge.net/"> deadbeef-gtk2 </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/deadbeef-gtk2/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/deadbeef-gtk2/"> 1.8.8-nap1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/deadbeef-gtk2/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/deadbeef-gtk2/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/deadbeef-gtk2/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/deadbeef-gtk2/"> 1.8.8-nap1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/deadbeef/"> 1.8.8-nap1 </a> </td>
</tr>
<tr class="record">
<td> 23 </td>
<td><strong><a title="GTK3 interface to DeaDBeeF" href="http://deadbeef.sourceforge.net/"> deadbeef-gtk3 </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/deadbeef-gtk3/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/deadbeef-gtk3/"> 1.8.8-nap1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/deadbeef-gtk3/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/deadbeef-gtk3/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/deadbeef-gtk3/"> 1.8.8-nap1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/deadbeef-gtk3/"> 1.8.8-nap1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/deadbeef/"> 1.8.8-nap1 </a> </td>
</tr>
<tr class="record">
<td> 24 </td>
<td><strong><a title="MPRISv2 plugin for DeaDBeeF-player" href="https://github.com/Serranya/deadbeef-mpris2-plugin"> deadbeef-mpris2-plugin </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/deadbeef-mpris2-plugin/"> 1.14+git20210322 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/deadbeef-mpris2-plugin/"> 1.14+git20210322 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/deadbeef-mpris2-plugin/"> 1.14+git20210322 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/deadbeef-mpris2-plugin/"> 1.14+git20210322 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/deadbeef-mpris2-plugin/"> 1.14+git20210322 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/deadbeef-mpris2-plugin/"> 1.14+git20210322 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/deadbeef-mpris2-plugin/"> 1.14+git20210322 </a> </td>
</tr>
<tr class="record">
<td> 25 </td>
<td><strong><a title="DjVu encoder with foreground/background separation" href="http://jwilk.net/software/didjvu"> didjvu </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/didjvu/"> 0.8.2+git1037-4a5f822 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/didjvu/"> 0.8.2+git1037-4a5f822 </a> </td>
</tr>
<tr class="record">
<td> 26 </td>
<td><strong><a title="cross-platform program that uses the Direct Connect and ADC protocols" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 27 </td>
<td><strong><a title="command-line interface for remote control of EiskaltDC++ daemon" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-cli </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-cli/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-cli/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-cli/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-cli/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-cli/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-cli/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-cli/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-cli/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-cli/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-cli/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 28 </td>
<td><strong><a title="common files for EiskaltDC++" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-common </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-common/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-common/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-common/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-common/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-common/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-common/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-common/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-common/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-common/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-common/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 29 </td>
<td><strong><a title="EiskaltDC++ daemon" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-daemon </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-daemon/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 30 </td>
<td><strong><a title="emoticons for EiskaltDC++" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-emoticons </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-emoticons/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 31 </td>
<td><strong><a title="EiskaltDC++ GUI based on GTK+" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-gtk </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-gtk/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 32 </td>
<td><strong><a title="data files for EiskaltDC++ Gtk" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-gtk-data </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-gtk-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 33 </td>
<td><strong><a title="EiskaltDC++ GUI based on Qt" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-qt </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-qt/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-qt/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-qt/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-qt/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-qt/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-qt/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-qt/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-qt/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-qt/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-qt/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 34 </td>
<td><strong><a title="data files for EiskaltDC++ Qt" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-qt-data </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-qt-data/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 35 </td>
<td><strong><a title="scripts examples for EiskaltDC++" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-scripts </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-scripts/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 36 </td>
<td><strong><a title="sound files for EiskaltDC++" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-sounds </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5684-c5ce25d5 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5738-cb799ee7 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5754-e1cad59e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/eiskaltdcpp-sounds/"> 2.4.2+git5755-697db4b0 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/eiskaltdcpp-devel/"> 2.4.2+git5755-697db4b0 </a> </td>
</tr>
<tr class="record">
<td> 37 </td>
<td><strong><a title="multi-protocol download manager, feature rich and extensible via plugin" href="http://fatrat.dolezel.info/"> fatrat </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/fatrat/"> 1.2.0+git20180628 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/fatrat/"> 1.2.0+git20180628 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/fatrat/"> 1.2.0+git20180628 </a> </td>
</tr>
<tr class="record">
<td> 38 </td>
<td><strong><a title="data files for fatrat" href="http://fatrat.dolezel.info/"> fatrat-data </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/fatrat-data/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/fatrat-data/"> 1.2.0+git20180628 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/fatrat-data/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/fatrat-data/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/fatrat-data/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/fatrat-data/"> 1.2.0+git20180628 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/fatrat/"> 1.2.0+git20180628 </a> </td>
</tr>
<tr class="record">
<td> 39 </td>
<td><strong><a title="development files for fatrat" href="http://fatrat.dolezel.info/"> fatrat-dev </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/fatrat-dev/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/fatrat-dev/"> 1.2.0+git20180628 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/fatrat-dev/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/fatrat-dev/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/fatrat-dev/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/fatrat-dev/"> 1.2.0+git20180628 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/fatrat/"> 1.2.0+git20180628 </a> </td>
</tr>
<tr class="record">
<td> 40 </td>
<td><strong><a title="Extensible Open Source CAx program (beta)" href="http://freecadweb.org/"> freecad </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/freecad/"> 0.18.4+git16163-b7b014ce43 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/freecad/"> 0.18.4+git16163-b7b014ce43 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/freecad/"> 0.18.4+git16163-b7b014ce43 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/freecad/"> 0.18.4+git16163-b7b014ce43 </a> </td>
</tr>
<tr class="record">
<td> 41 </td>
<td><strong><a title="Extensible Open Source CAx program (alpha)" href="http://freecadweb.org/"> freecad-0.16 </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/freecad-0.16/"> 0.16+git6712-da2d364 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/freecad-0.16/"> 0.16+git6712-da2d364 </a> </td>
</tr>
<tr class="record">
<td> 42 </td>
<td><strong><a title="Extensible Open Source CAx program (beta)" href="http://freecadweb.org/"> freecad-daily </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/freecad-daily/"> 0.20.1+git30473-b5e29c20dc </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/freecad-daily/"> 0.20.1+git31829-95a6d1e208 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/freecad-daily/"> 0.20.1+git31829-95a6d1e208 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/freecad-daily/"> 0.18+git17352-ec0049921 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/freecad-daily/"> 0.18+git17352-ec0049921 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/freecad-daily/"> 0.18.4+git24344-6789ddaac9 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/freecad-daily/"> 0.20.1+git30473-b5e29c20dc </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/freecad-daily/"> 0.20.1+git31829-95a6d1e208 </a> </td>
</tr>
<tr class="record">
<td> 43 </td>
<td><strong><a title="Create your own collection of e-books" href="https://github.com/petrovvlad/freeLib"> freelib </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/freelib/"> 6.0.36+git435-1c19ccd </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/freelib/"> 6.1.0+git779-a5363fd </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/freelib/"> 6.1.0+git779-a5363fd </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/freelib/"> 6.1.0+git779-a5363fd </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/freelib/"> 6.0.36+git455-b6c399a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/freelib/"> 6.1.0+git779-a5363fd </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/freelib/"> 6.1.0+git745-651e6d6 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/freelib/"> 6.1.0+git779-a5363fd </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/freelib/"> 6.1.0+git779-a5363fd </a> </td>
</tr>
<tr class="record">
<td> 44 </td>
<td><strong><a title="GNU Internationalization utilities" href="http://www.gnu.org/software/gettext/"> gettext </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gettext/"> 0.19.8.1-1ubuntu2 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gettext/"> 0.19.8.1-1ubuntu2 </a> </td>
</tr>
<tr class="record">
<td> 45 </td>
<td><strong><a title="GNU Internationalization utilities for the base system" href="http://www.gnu.org/software/gettext/"> gettext-base </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gettext-base/"> 0.19.8.1-1ubuntu2 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gettext/"> 0.19.8.1-1ubuntu2 </a> </td>
</tr>
<tr class="record">
<td> 46 </td>
<td><strong><a title="Documentation for GNU gettext" href="http://www.gnu.org/software/gettext/"> gettext-doc </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gettext-doc/"> 0.19.8.1-1ubuntu2 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gettext/"> 0.19.8.1-1ubuntu2 </a> </td>
</tr>
<tr class="record">
<td> 47 </td>
<td><strong><a title="Emacs po-mode for editing gettext .po files" href="http://www.gnu.org/software/gettext/"> gettext-el </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gettext-el/"> 0.19.8.1-1ubuntu2 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gettext/"> 0.19.8.1-1ubuntu2 </a> </td>
</tr>
<tr class="record">
<td> 48 </td>
<td><strong><a title="Graphical GTK+ front-end to tesseract-ocr" href="https://github.com/manisandro/gImageReader"> gimagereader </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/gimagereader/"> 3.3.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/gimagereader/"> 3.3.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/gimagereader/"> 3.3.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gimagereader/"> 3.3.1 </a> </td>
</tr>
<tr class="record">
<td> 49 </td>
<td><strong><a title="gImageReader common files" href="https://github.com/manisandro/gImageReader"> gimagereader-common </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/gimagereader-common/"> 3.3.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/gimagereader-common/"> 3.3.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/gimagereader-common/"> 3.3.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gimagereader/"> 3.3.1 </a> </td>
</tr>
<tr class="record">
<td> 50 </td>
<td><strong><a title="Graphical Qt 5 front-end to tesseract-ocr" href="https://github.com/manisandro/gImageReader"> gimagereader-qt5 </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/gimagereader-qt5/"> 3.3.1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/gimagereader-qt5/"> 3.3.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/gimagereader-qt5/"> 3.3.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gimagereader/"> 3.3.1 </a> </td>
</tr>
<tr class="record">
<td> 51 </td>
<td><strong><a title="The Free & Open Source Image Editor" href="http://www.gimp.org/"> gimp </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/gimp/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gimp/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/gimp/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td> </td>
</tr>
<tr class="record">
<td> 52 </td>
<td><strong><a title="Data files for GIMP" href="http://www.gimp.org/"> gimp-data </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/gimp-data/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gimp-data/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/gimp-data/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td> </td>
</tr>
<tr class="record">
<td> 53 </td>
<td><strong><a title="GREYC's Magic for Image Computing - GIMP Plugin" href="http://gmic.sourceforge.net/"> gimp-gmic </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gimp-gmic/"> 1.7.9+zart-4+nmu1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gmic/"> 1.7.9+zart-4+nmu1 </a> </td>
</tr>
<tr class="record">
<td> 54 </td>
<td><strong><a title="plugin for The GIMP to manipulations on groups of images" href="http://www.alessandrofrancesconi.it/projects/bimp/"> gimp-plugin-bimp </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/gimp-plugin-bimp/"> 2.0+git152-9203fa5 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gimp-plugin-bimp/"> 1.18+git144-1f063f3 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gimp-plugin-bimp/"> 2.0+git152-9203fa5 </a> </td>
</tr>
<tr class="record">
<td> 55 </td>
<td><strong><a title="GREYC's Magic for Image Computing" href="http://gmic.sourceforge.net/"> gmic </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gmic/"> 1.7.9+zart-4+nmu1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gmic/"> 1.7.9+zart-4+nmu1 </a> </td>
</tr>
<tr class="record">
<td> 56 </td>
<td><strong><a title="GREYC's Magic for Image Computing - ZArt" href="http://gmic.sourceforge.net/"> gmic-zart </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/gmic-zart/"> 1.7.9+zart-4+nmu1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/gmic/"> 1.7.9+zart-4+nmu1 </a> </td>
</tr>
<tr class="record">
<td> 57 </td>
<td><strong><a title="log analyzer and interactive viewer for the Apache Webserver" href="http://goaccess.prosoftcorp.com/"> goaccess </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/goaccess/"> 1.9.2+git4239-6cb9e009 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/goaccess/"> 1.9.2+git4242-083a114a </a> </td>
</tr>
<tr class="record">
<td> 58 </td>
<td><strong><a title="feature-rich dictionary lookup program" href="http://goldendict.org"> goldendict </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/goldendict/"> 1.5.0+git20241211 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/goldendict/"> 1.5.0+git20241211 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/goldendict/"> 1.5.0+git20241211 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/goldendict/"> 1.5.0+git20241211 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/goldendict/"> 1.5.0+git20241211 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/goldendict/"> 1.5.0+git20241211 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/goldendict/"> 1.5.0+git20241211 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/goldendict/"> 1.5.0+git20240926 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/goldendict/"> 1.5.0+git20241211 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/goldendict/"> 1.5.0+git20241211 </a> </td>
</tr>
<tr class="record">
<td> 59 </td>
<td><strong><a title="JBIG2 encoder" href="https://github.com/agl/jbig2enc"> jbig2enc </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/jbig2enc/"> 0.29+git57-ea6a40a </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/jbig2enc/"> 0.29+git60-ea05019 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/jbig2enc/"> 0.29+git60-ea05019 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/jbig2enc/"> 0.29+git60-ea05019 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/jbig2enc/"> 0.29+git57-ea6a40a </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/jbig2enc/"> 0.29+git60-ea05019 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/jbig2enc/"> 0.29+git60-ea05019 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/jbig2enc/"> 0.29+git60-ea05019 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/packages/en/source/jbig2enc/"> 0.29+git60-ea05019 </a> </td>
</tr>
<tr class="record">
<td> 60 </td>
<td><strong><a title="KeePass Cross-Platform Community Edition" href="https://keepassxc.org/"> keepassxc </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/keepassxc/"> 2.6.6 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/keepassxc/"> 2.7.6 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/keepassxc/"> 2.7.9 </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/keepassxc/"> 2.7.9 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/keepassxc/"> 2.2.4-0+nmu1 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/keepassxc/"> 2.6.6 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/keepassxc/"> 2.7.9 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/keepassxc/"> 2.7.9 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/keepassxc/"> 2.7.9 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/keepassxc/"> 2.7.9 </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/keepassxc/"> 2.7.9 </a> </td>
</tr>
<tr class="record">
<td> 61 </td>
<td><strong><a title="Next generation IRC client with module support" href="http://www.kvirc.de/"> kvirc </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/kvirc/"> 5.0.1+git-7474-018ba7bdb </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bullseye/amd64/kvirc/"> 5.2.6+git-7609-afed1336e </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/bookworm/amd64/kvirc/"> 5.2.6+git-7609-afed1336e </a> </td>
<td><a href="https://notesalexp.org/packages/en/debian/sid/amd64/kvirc/"> 5.2.6+git-7609-afed1336e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/xenial/amd64/kvirc/"> 5.0.0+git-7370-6bddd4482 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/bionic/amd64/kvirc/"> 5.0.1+git-7433-0df9f22f2 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/focal/amd64/kvirc/"> 5.0.1+git-7474-018ba7bdb </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/jammy/amd64/kvirc/"> 5.2.6+git-7609-afed1336e </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/mantic/amd64/kvirc/"> 5.2.6+git-7606-51f3abb83 </a> </td>
<td><a href="https://notesalexp.org/packages/en/ubuntu/noble/amd64/kvirc/"> 5.2.6+git-7609-afed1336e </a> </td>
<td><a href="https://notesalexp.org/packages/en/source/kvirc/"> 5.2.6+git-7609-afed1336e </a> </td>
</tr>
<tr class="record">
<td> 62 </td>
<td><strong><a title="Data files for KVIrc" href="http://www.kvirc.de/"> kvirc-data </a></strong></td>
<td><a href="https://notesalexp.org/packages/en/debian/buster/amd64/kvirc-data/"> 5.0.1+git-7474-018ba7bdb </a> </td>