forked from AlexanderP/html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-old.html
1068 lines (1067 loc) · 85.7 KB
/
index-old.html
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 Wheezy:
<I>deb https://notesalexp.org/debian/wheezy/ wheezy main</I><DT>
Add this line for Jessie:
<I>deb https://notesalexp.org/debian/jessie/ jessie main</I><DT>
Add this line for Stretch:
<I>deb https://notesalexp.org/debian/stretch/ stretch main</I><DT>
Add this line for Buster:
<I>deb https://notesalexp.org/debian/buster/ buster main</I><DT>
Add this line for Sid:
<I>deb https://notesalexp.org/debian/sid/ sid main</I><DT>
Add this line for Precise:
<I>deb https://notesalexp.org/debian/precise/ precise main</I><DT>
Add this line for Trusty:
<I>deb https://notesalexp.org/debian/trusty/ trusty 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 Cosmic:
<I>deb https://notesalexp.org/debian/cosmic/ cosmic 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/wheezy/">Debian Wheezy</a></td>
<td> <a href="https://notesalexp.org/jessie/">Debian Jessie</a></td>
<td> <a href="https://notesalexp.org/stretch/">Debian Stretch</a></td>
<td> <a href="https://notesalexp.org/buster/">Debian Buster</a></td>
<td> <a href="https://notesalexp.org/sid/">Debian Sid</a></td>
<td> <a href="https://notesalexp.org/precise/">Ubuntu Precise</a></td>
<td> <a href="https://notesalexp.org/trusty/">Ubuntu Trusty</a></td>
<td> <a href="https://notesalexp.org/xenial/">Ubuntu Xenial</a></td>
<td> <a href="https://notesalexp.org/bionic/">Ubuntu Bionic</a></td>
<td> <a href="https://notesalexp.org/cosmic/">Ubuntu Cosmic</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 class="hrecord"> <a href="https://notesalexp.org/wheezy/main/a/aegisub/"> 2.1.9 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/a/aegisub/"> 3.2.3~git7834-2cb92a5f7 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/a/aegisub/"> 3.2.3~git7834-2cb92a5f7 </a> </td>
<td><a href="https://notesalexp.org/buster/main/a/aegisub/"> 3.2.3~git7834-2cb92a5f7 </a> </td>
<td><a href="https://notesalexp.org/sid/main/a/aegisub/"> 3.2.3~git7834-2cb92a5f7 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/a/aegisub/"> 2.1.9 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/a/aegisub-dmo/"> 3.2.2-dmo1 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/a/aegisub/"> 3.2.3~git7834-2cb92a5f7 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/a/aegisub/"> 3.2.3~git7834-2cb92a5f7 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/a/aegisub/"> 3.2.3~git7834-2cb92a5f7 </a> </td>
<td><a href="https://notesalexp.org/source/main/a/aegisub/aegisub_3.2.3~git7834-2cb92a5f7-2.dsc"> 3.2.3~git7834-2cb92a5f7 </a> </td>
</tr>
<tr class="record">
<td> 2 </td>
<td><strong><a title="fast, cross-platform audio editor" href="http://audacityteam.org/"> audacity </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/a/audacity/"> 2.3.1 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/a/audacity/"> 2.3.1 </a> </td>
<td><a href="https://notesalexp.org/buster/main/a/audacity/"> 2.3.1 </a> </td>
<td><a href="https://notesalexp.org/sid/main/a/audacity/"> 2.3.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/xenial/main/a/audacity/"> 2.3.1 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/a/audacity/"> 2.3.1 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/a/audacity/"> 2.3.1 </a> </td>
<td><a href="https://notesalexp.org/source/main/a/audacity/audacity_2.3.1-1.dsc"> 2.3.1 </a> </td>
</tr>
<tr class="record">
<td> 3 </td>
<td><strong><a title="Panorama images are wide-angle images that amaze people:" href="http://hugin.sourceforge.net/"> autopano-sift-c </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/a/autopano-sift-c/"> 2.5.3~hg20101023 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/a/autopano-sift-c/"> 2.5.3~hg20101023 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/precise/main/a/autopano-sift-c/"> 2.5.3~hg20101023 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/a/autopano-sift-c/"> 2.5.3~hg20101023 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td> </td>
</tr>
<tr class="record">
<td> 4 </td>
<td><strong><a title="16bit RGB full color paint software" href="https://osdn.net/projects/azpainter/"> azpainter </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/a/azpainter/"> 2.1.3 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/a/azpainter/"> 2.1.3 </a> </td>
<td><a href="https://notesalexp.org/buster/main/a/azpainter/"> 2.1.3 </a> </td>
<td><a href="https://notesalexp.org/sid/main/a/azpainter/"> 2.1.3 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/trusty/main/a/azpainter/"> 2.1.3 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/a/azpainter/"> 2.1.3 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/a/azpainter/"> 2.1.3 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/a/azpainter/"> 2.1.3 </a> </td>
<td><a href="https://notesalexp.org/source/main/a/azpainter/azpainter_2.1.3-1.dsc"> 2.1.3 </a> </td>
</tr>
<tr class="record">
<td> 5 </td>
<td><strong><a title="e-mail client for GNOME" href="http://pawsa.fedorapeople.org/balsa/"> balsa </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/b/balsa/"> 2.5.1+git20160912 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/b/balsa/"> 2.5.5+git9066-909de8408 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/b/balsa/"> 2.5.5+git9066-909de8408 </a> </td>
<td><a href="https://notesalexp.org/buster/main/b/balsa/"> 2.5.5+git9066-909de8408 </a> </td>
<td><a href="https://notesalexp.org/sid/main/b/balsa/"> 2.5.5+git9066-909de8408 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/b/balsa/"> 2.5.1+git20160912 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/b/balsa/"> 2.5.1+git20160912 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/b/balsa/"> 2.5.5+git9066-909de8408 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/b/balsa/"> 2.5.5+git9066-909de8408 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/b/balsa/"> 2.5.5+git9066-909de8408 </a> </td>
<td><a href="https://notesalexp.org/source/main/b/balsa/balsa_2.5.5+git9066-909de8408-1.dsc"> 2.5.5+git9066-909de8408 </a> </td>
</tr>
<tr class="record">
<td> 6 </td>
<td><strong><a title="BitMap Panel" href="https://github.com/nsf/bmpanel2"> bmpanel2 </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/b/bmpanel2/"> 2.1.0~git20111207 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/b/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/b/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td><a href="https://notesalexp.org/buster/main/b/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td><a href="https://notesalexp.org/sid/main/b/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/b/bmpanel2/"> 2.1.0~git20111207 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/b/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/b/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/b/bmpanel2/"> 2.1.0~git20170409 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/b/bmpanel2/bmpanel2_2.1.0~git20170409-1.dsc"> 2.1.0~git20170409 </a> </td>
</tr>
<tr class="record">
<td> 7 </td>
<td><strong><a title="modern music player and library organizer" href="http://www.clementine-player.org/"> clementine </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/c/clementine/"> 1.2.3+git20140914 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/c/clementine-qt4/"> 1.3.1+git2114-gd3e79436a </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/stretch/main/c/clementine-qt4/"> 1.3.1+git2114-gd3e79436a </a> </td>
<td><a href="https://notesalexp.org/buster/main/c/clementine-qt5/"> 1.3.1+git2219-g3b76fa627 </a> </td>
<td><a href="https://notesalexp.org/sid/main/c/clementine-qt5/"> 1.3.1+git2219-g3b76fa627 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/c/clementine/"> 1.2.1+git20140724 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/c/clementine-qt4/"> 1.3.1+git2095-gd8e0e7e67 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/c/clementine-qt4/"> 1.3.1+git2114-gd3e79436a </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/bionic/main/c/clementine-qt4/"> 1.3.1+git2114-gd3e79436a </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/c/clementine-qt5/"> 1.3.1+git2219-g3b76fa627 </a> </td>
<td><a href="https://notesalexp.org/source/main/c/clementine-qt4/clementine-qt4_1.3.1+git2114-gd3e79436a-1.dsc"> 1.3.1+git2114-gd3e79436a </a> </td>
</tr>
<tr class="record">
<td> 8 </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/wheezy/main/c/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/c/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/c/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td><a href="https://notesalexp.org/buster/main/c/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td><a href="https://notesalexp.org/sid/main/c/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td><a href="https://notesalexp.org/precise/main/c/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/c/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/c/compizboxmenu/"> 1.1.1+git20150907 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/c/compizboxmenu/compizboxmenu_1.1.1+git20150907-2.dsc"> 1.1.1+git20150907 </a> </td>
</tr>
<tr class="record">
<td> 9 </td>
<td><strong><a title="multi-language OCR system" href="https://launchpad.net/cuneiform-linux"> cuneiform-linux </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/c/cuneiform-linux/"> 1.1.1~bzr536 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/c/cuneiform-linux/"> 1.1.1~bzr536 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/precise/main/c/cuneiform-linux/"> 1.1.1~bzr536 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/c/cuneiform-linux/"> 1.1.1~bzr536 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/c/cuneiform-linux/cuneiform-linux_1.1.1~bzr536-5.dsc"> 1.1.1~bzr536 </a> </td>
</tr>
<tr class="record">
<td> 10 </td>
<td><strong><a title="ultimate music player for GNU/Linux systems" href="http://deadbeef.sourceforge.net/"> deadbeef </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/d/deadbeef/"> 0.7.2+git7956-06de3d0a </a> </td>
<td><a href="https://notesalexp.org/jessie/main/d/deadbeef/"> 1.8.0+git8450-15c9af49 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/d/deadbeef/"> 1.8.0+git8450-15c9af49 </a> </td>
<td><a href="https://notesalexp.org/buster/main/d/deadbeef/"> 1.8.0+git8450-15c9af49 </a> </td>
<td><a href="https://notesalexp.org/sid/main/d/deadbeef/"> 1.8.0+git8450-15c9af49 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/d/deadbeef/"> 0.7.2+git6331-550488a </a> </td>
<td><a href="https://notesalexp.org/trusty/main/d/deadbeef/"> 1.8.0+git8450-15c9af49 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/d/deadbeef/"> 1.8.0+git8450-15c9af49 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/d/deadbeef/"> 1.8.0+git8450-15c9af49 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/d/deadbeef/"> 1.8.0+git8450-15c9af49 </a> </td>
<td><a href="https://notesalexp.org/source/main/d/deadbeef/deadbeef_1.8.0+git8450-15c9af49-1.dsc"> 1.8.0+git8450-15c9af49 </a> </td>
</tr>
<tr class="record">
<td> 11 </td>
<td><strong><a title="DjVu encoder with foreground/background separation" href="http://jwilk.net/software/didjvu"> didjvu </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/stretch/main/d/didjvu/"> 0.8.2+git924-7df0a4c </a> </td>
<td><a href="https://notesalexp.org/buster/main/d/didjvu/"> 0.8.2+git924-7df0a4c </a> </td>
<td><a href="https://notesalexp.org/sid/main/d/didjvu/"> 0.8.2+git924-7df0a4c </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/source/main/d/didjvu/didjvu_0.8.2+git924-7df0a4c-1.dsc"> 0.8.2+git924-7df0a4c </a> </td>
</tr>
<tr class="record">
<td> 12 </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 class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/e/eiskaltdcpp-devel/"> 2.2.10+git5213-3c85c56c </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/stretch/main/e/eiskaltdcpp-devel/"> 2.2.10+git5405-cb987f22 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/buster/main/e/eiskaltdcpp-devel/"> 2.2.10+git5405-cb987f22 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/sid/main/e/eiskaltdcpp-devel/"> 2.2.10+git5405-cb987f22 </a> </td>
<td><a href="https://notesalexp.org/precise/main/e/eiskaltdcpp/"> 2.2.9-4+nmu3 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/e/eiskaltdcpp-devel/"> 2.2.10+git5213-3c85c56c </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/e/eiskaltdcpp-devel/"> 2.2.10+git5405-cb987f22 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/bionic/main/e/eiskaltdcpp-devel/"> 2.2.10+git5405-cb987f22 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/cosmic/main/e/eiskaltdcpp-devel/"> 2.2.10+git5405-cb987f22 </a> </td>
<td><a href="https://notesalexp.org/source/main/e/eiskaltdcpp-devel/eiskaltdcpp-devel_2.2.10+git5405-cb987f22-1.dsc"> 2.2.10+git5405-cb987f22 </a> </td>
</tr>
<tr class="record">
<td> 13 </td>
<td><strong><a title="cross-platform program that uses the Direct Connect and ADC protocols" href="https://github.com/eiskaltdcpp/eiskaltdcpp"> eiskaltdcpp-unstable </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/e/eiskaltdcpp-unstable/"> 2.2.9+git20171009 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/e/eiskaltdcpp-unstable/"> 2.2.9+git20161012 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/e/eiskaltdcpp-unstable/eiskaltdcpp-unstable_2.2.9+git20171009-1.dsc"> 2.2.9+git20171009 </a> </td>
</tr>
<tr class="record">
<td> 14 </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 class="hrecord"> <a href="https://notesalexp.org/wheezy/main/f/fatrat/"> 1.2.0+git20121023 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/f/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/f/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/buster/main/f/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/sid/main/f/fatrat/"> 1.2.0+git20180628 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/f/fatrat/"> 1.2.0+git20121023 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/f/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/f/fatrat/"> 1.2.0+git20180628 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/f/fatrat/"> 1.2.0+git20180628 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/f/fatrat/fatrat_1.2.0+git20180628-1.dsc"> 1.2.0+git20180628 </a> </td>
</tr>
<tr class="record">
<td> 15 </td>
<td><strong><a title="Extensible Open Source CAx program (beta)" href="http://freecadweb.org/"> freecad </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/f/freecad/"> 0.18.1+git16115-1fb7ed43c </a> </td>
<td><a href="https://notesalexp.org/stretch/main/f/freecad/"> 0.18.1+git16115-1fb7ed43c </a> </td>
<td><a href="https://notesalexp.org/buster/main/f/freecad/"> 0.18.1+git16115-1fb7ed43c </a> </td>
<td><a href="https://notesalexp.org/sid/main/f/freecad/"> 0.18.1+git16115-1fb7ed43c </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/xenial/main/f/freecad/"> 0.18.1+git16115-1fb7ed43c </a> </td>
<td><a href="https://notesalexp.org/bionic/main/f/freecad/"> 0.18.1+git16115-1fb7ed43c </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/f/freecad/"> 0.18.1+git16115-1fb7ed43c </a> </td>
<td><a href="https://notesalexp.org/source/main/f/freecad/freecad_0.18.1+git16115-1fb7ed43c-1.dsc"> 0.18.1+git16115-1fb7ed43c </a> </td>
</tr>
<tr class="record">
<td> 16 </td>
<td><strong><a title="Extensible Open Source CAx program (beta)" href="http://freecadweb.org/"> freecad-daily </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/f/freecad-daily/"> 0.18+git16703-9adc1a351 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/f/freecad-daily/"> 0.18+git16703-9adc1a351 </a> </td>
<td><a href="https://notesalexp.org/buster/main/f/freecad-daily/"> 0.18+git16703-9adc1a351 </a> </td>
<td><a href="https://notesalexp.org/sid/main/f/freecad-daily/"> 0.18+git16703-9adc1a351 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/xenial/main/f/freecad-daily/"> 0.18+git16703-9adc1a351 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/f/freecad-daily/"> 0.18+git16703-9adc1a351 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/f/freecad-daily/"> 0.18+git16703-9adc1a351 </a> </td>
<td><a href="https://notesalexp.org/source/main/f/freecad-daily/freecad-daily_0.18+git16703-9adc1a351-1.dsc"> 0.18+git16703-9adc1a351 </a> </td>
</tr>
<tr class="record">
<td> 17 </td>
<td><strong><a title="The Free & Open Source Image Editor" href="http://www.gimp.org/"> gimp </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/g/gimp/"> 2.8.20+git32505-05716ea </a> </td>
<td><a href="https://notesalexp.org/jessie/main/g/gimp2.8/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/g/gimp2.8/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td><a href="https://notesalexp.org/buster/main/g/gimp2.8/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/g/gimp/"> 2.8.20+git32505-05716ea </a> </td>
<td><a href="https://notesalexp.org/trusty/main/g/gimp2.8/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/g/gimp2.8/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/g/gimp2.8/"> 2.8.22+git32588-a61915a8e6 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/g/gimp2.8/gimp2.8_2.8.22+git32588-a61915a8e6-2.dsc"> 2.8.22+git32588-a61915a8e6 </a> </td>
</tr>
<tr class="record">
<td> 18 </td>
<td><strong><a title="The Free & Open Source Image Editor" href="http://www.gimp.org/"> gimp-devel </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/g/gimp-devel/"> 2.9.8+git40031-bdab2829ef </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/stretch/main/g/gimp-devel/"> 2.10.2+git41444-71f37d417c </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/buster/main/g/gimp-devel/"> 2.10.8+git42682-25721e39e6 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/sid/main/g/gimp-devel/"> 2.10.8+git42682-25721e39e6 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/g/gimp-devel/"> 2.10.2+git41444-71f37d417c </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/bionic/main/g/gimp-devel/"> 2.10.8+git42682-25721e39e6 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/cosmic/main/g/gimp-devel/"> 2.10.8+git42682-25721e39e6 </a> </td>
<td><a href="https://notesalexp.org/source/main/g/gimp-devel/gimp-devel_2.10.8+git42682-25721e39e6-1.dsc"> 2.10.8+git42682-25721e39e6 </a> </td>
</tr>
<tr class="record">
<td> 19 </td>
<td><strong><a title="advanced picture editor" href="http://www.gimp.org/"> gimp-gtk3 </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/buster/main/g/gimp-gtk3/"> 2.99.0+git43295-bea1a44672 </a> </td>
<td><a href="https://notesalexp.org/sid/main/g/gimp-gtk3/"> 2.99.0+git43295-bea1a44672 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/cosmic/main/g/gimp-gtk3/"> 2.99.0+git42712-823d4a0d24 </a> </td>
<td><a href="https://notesalexp.org/source/main/g/gimp-gtk3/gimp-gtk3_2.99.0+git43295-bea1a44672-1.dsc"> 2.99.0+git43295-bea1a44672 </a> </td>
</tr>
<tr class="record">
<td> 20 </td>
<td><strong><a title="GREYC's Magic for Image Computing" href="http://gmic.sourceforge.net/"> gmic </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/g/gmic/"> 1.7.9+zart-4+nmu1 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/g/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><a href="https://notesalexp.org/trusty/main/g/gmic/"> 1.7.9+zart-4+nmu1 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/g/gmic/"> 1.7.9+zart-4+nmu1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/g/gmic/gmic_1.7.9+zart-4+nmu1.dsc"> 1.7.9+zart-4+nmu1 </a> </td>
</tr>
<tr class="record">
<td> 21 </td>
<td><strong><a title="log analyzer and interactive viewer for the Apache Webserver" href="http://goaccess.prosoftcorp.com/"> goaccess </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/g/goaccess/"> 1.3.0+git2833-8377a9a </a> </td>
<td><a href="https://notesalexp.org/jessie/main/g/goaccess/"> 1.3.0+git2864-fd8186c </a> </td>
<td><a href="https://notesalexp.org/stretch/main/g/goaccess/"> 1.3.0+git2864-fd8186c </a> </td>
<td><a href="https://notesalexp.org/buster/main/g/goaccess/"> 1.3.0+git2864-fd8186c </a> </td>
<td><a href="https://notesalexp.org/sid/main/g/goaccess/"> 1.3.0+git2864-fd8186c </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/g/goaccess/"> 1.3.0+git2835-06d571b </a> </td>
<td><a href="https://notesalexp.org/trusty/main/g/goaccess/"> 1.3.0+git2864-fd8186c </a> </td>
<td><a href="https://notesalexp.org/xenial/main/g/goaccess/"> 1.3.0+git2864-fd8186c </a> </td>
<td><a href="https://notesalexp.org/bionic/main/g/goaccess/"> 1.3.0+git2864-fd8186c </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/g/goaccess/"> 1.3.0+git2864-fd8186c </a> </td>
<td><a href="https://notesalexp.org/source/main/g/goaccess/goaccess_1.3.0+git2864-fd8186c-1.dsc"> 1.3.0+git2864-fd8186c </a> </td>
</tr>
<tr class="record">
<td> 22 </td>
<td><strong><a title="feature-rich dictionary lookup program" href="http://goldendict.org"> goldendict </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/buster/main/g/goldendict/"> 1.5.0~rc2+git20190502 </a> </td>
<td><a href="https://notesalexp.org/sid/main/g/goldendict/"> 1.5.0~rc2+git20190502 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/bionic/main/g/goldendict/"> 1.5.0~rc2+git20190502 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/g/goldendict/"> 1.5.0~rc2+git20190502 </a> </td>
<td><a href="https://notesalexp.org/source/main/g/goldendict/goldendict_1.5.0~rc2+git20190502-1.dsc"> 1.5.0~rc2+git20190502 </a> </td>
</tr>
<tr class="record">
<td> 23 </td>
<td><strong><a title="GUI to produce PDFs or DjVus from scanned documents" href="http://gscan2pdf.sourceforge.net/"> gscan2pdf </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/g/gscan2pdf/"> 1.8.11+git2730-59f86204 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/stretch/main/g/gscan2pdf/"> 1.8.11+git2730-59f86204 </a> </td>
<td><a href="https://notesalexp.org/buster/main/g/gscan2pdf/"> 2.5.1+git3001-01bf1a60 </a> </td>
<td><a href="https://notesalexp.org/sid/main/g/gscan2pdf/"> 2.5.1+git3001-01bf1a60 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/g/gscan2pdf/"> 1.8.11+git2730-59f86204 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/g/gscan2pdf/"> 1.8.11+git2730-59f86204 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/g/gscan2pdf/"> 2.5.1+git3001-01bf1a60 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/g/gscan2pdf/"> 2.5.1+git3001-01bf1a60 </a> </td>
<td><a href="https://notesalexp.org/source/main/g/gscan2pdf/gscan2pdf_2.5.1+git3001-01bf1a60-1.dsc"> 2.5.1+git3001-01bf1a60 </a> </td>
</tr>
<tr class="record">
<td> 24 </td>
<td><strong><a title="JBIG2 encoder" href="https://github.com/agl/jbig2enc"> jbig2enc </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/stretch/main/j/jbig2enc/"> 0.29+git56-a4ff6b9 </a> </td>
<td><a href="https://notesalexp.org/buster/main/j/jbig2enc/"> 0.29+git56-a4ff6b9 </a> </td>
<td><a href="https://notesalexp.org/sid/main/j/jbig2enc/"> 0.29+git56-a4ff6b9 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/bionic/main/j/jbig2enc/"> 0.29+git56-a4ff6b9 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/j/jbig2enc/"> 0.29+git56-a4ff6b9 </a> </td>
<td><a href="https://notesalexp.org/source/main/j/jbig2enc/jbig2enc_0.29+git56-a4ff6b9-1.dsc"> 0.29+git56-a4ff6b9 </a> </td>
</tr>
<tr class="record">
<td> 25 </td>
<td><strong><a title="KeePass Cross-Platform Community Edition" href="https://keepassxc.org/"> keepassxc </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/k/keepassxc/"> 2.2.4-0+nmu1 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/k/keepassxc/"> 2.4.1 </a> </td>
<td><a href="https://notesalexp.org/buster/main/k/keepassxc/"> 2.4.1 </a> </td>
<td><a href="https://notesalexp.org/sid/main/k/keepassxc/"> 2.4.1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/k/keepassxc/"> 2.2.4-0+nmu1 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/k/keepassxc/"> 2.4.1 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/k/keepassxc/"> 2.4.1 </a> </td>
<td><a href="https://notesalexp.org/source/main/k/keepassxc/keepassxc_2.4.1-2.dsc"> 2.4.1 </a> </td>
</tr>
<tr class="record">
<td> 26 </td>
<td><strong><a title="Next generation IRC client with module support" href="http://www.kvirc.de/"> kvirc </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/k/kvirc/"> 4.2.0+svn6324 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/k/kvirc/"> 5.0.0+git-7370-6bddd4482 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/stretch/main/k/kvirc/"> 5.0.0+git-7370-6bddd4482 </a> </td>
<td><a href="https://notesalexp.org/buster/main/k/kvirc/"> 5.0.0+git-7420-d8a3ee002 </a> </td>
<td><a href="https://notesalexp.org/sid/main/k/kvirc/"> 5.0.0+git-7420-d8a3ee002 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/k/kvirc/"> 4.2.0+svn6324 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/k/kvirc/"> 4.3.2~git-5611-g3825cfe </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/k/kvirc/"> 5.0.0+git-7370-6bddd4482 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/k/kvirc/"> 5.0.0+git-7420-d8a3ee002 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/k/kvirc/"> 5.0.0+git-7420-d8a3ee002 </a> </td>
<td><a href="https://notesalexp.org/source/main/k/kvirc/kvirc_5.0.0+git-7420-d8a3ee002-1.dsc"> 5.0.0+git-7420-d8a3ee002 </a> </td>
</tr>
<tr class="record">
<td> 27 </td>
<td><strong><a title="smart search launcher for installed programs or files" href="http://www.launchy.net/"> launchy </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/l/launchy/"> 2.5.1+svn671a </a> </td>
<td><a href="https://notesalexp.org/jessie/main/l/launchy/"> 2.5.1+svn671a </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/precise/main/l/launchy/"> 2.5.1+svn671a </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> 28 </td>
<td><strong><a title="Computer-aided design (CAD) system" href="http://www.librecad.org/"> librecad </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/libr/librecad/"> 2.1.2+git4531-9236667f </a> </td>
<td><a href="https://notesalexp.org/stretch/main/libr/librecad/"> 2.1.2+git4531-9236667f </a> </td>
<td><a href="https://notesalexp.org/buster/main/libr/librecad/"> 2.1.2+git4531-9236667f </a> </td>
<td><a href="https://notesalexp.org/sid/main/libr/librecad/"> 2.1.2+git4531-9236667f </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/trusty/main/libr/librecad/"> 2.1.2+git4531-9236667f </a> </td>
<td><a href="https://notesalexp.org/xenial/main/libr/librecad/"> 2.1.2+git4531-9236667f </a> </td>
<td><a href="https://notesalexp.org/bionic/main/libr/librecad/"> 2.1.2+git4531-9236667f </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/libr/librecad/"> 2.1.2+git4531-9236667f </a> </td>
<td><a href="https://notesalexp.org/source/main/libr/librecad/librecad_2.1.2+git4531-9236667f-1.dsc"> 2.1.2+git4531-9236667f </a> </td>
</tr>
<tr class="record">
<td> 29 </td>
<td><strong><a title="Port of the Windows file-sharing program, DC++" href="https://launchpad.net/linuxdcpp"> linuxdcpp </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/l/linuxdcpp/"> 1.1.0+bzr424.105 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/l/linuxdcpp/"> 1.1.0+bzr424.105 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/l/linuxdcpp/"> 1.1.0+bzr424.105 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/sid/main/l/linuxdcpp/"> 1.1.0+bzr424.105 </a> </td>
<td><a href="https://notesalexp.org/precise/main/l/linuxdcpp/"> 1.1.0+bzr424.105 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/l/linuxdcpp/"> 1.1.0+bzr424.105 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/l/linuxdcpp/"> 1.1.0+bzr424.105 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/l/linuxdcpp/linuxdcpp_1.1.0+bzr424.105-1.dsc"> 1.1.0+bzr424.105 </a> </td>
</tr>
<tr class="record">
<td> 30 </td>
<td><strong><a title="lightweight PDF viewer" href="http://repo.or.cz/w/llpp.git"> llpp </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/l/llpp/"> 13.0.0+git20140826 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/l/llpp/"> 13.0.0+git20140826 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/l/llpp/"> 27.0.0+git3663-cf119d0 </a> </td>
<td><a href="https://notesalexp.org/buster/main/l/llpp/"> 27.0.0+git3663-cf119d0 </a> </td>
<td><a href="https://notesalexp.org/sid/main/l/llpp/"> 27.0.0+git3663-cf119d0 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/l/llpp/"> 13.0.0+git20140826 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/l/llpp/"> 27.0.0+git3663-cf119d0 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/l/llpp/"> 27.0.0+git3663-cf119d0 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/l/llpp/"> 27.0.0+git3663-cf119d0 </a> </td>
<td><a href="https://notesalexp.org/source/main/l/llpp/llpp_27.0.0+git3663-cf119d0-1.dsc"> 27.0.0+git3663-cf119d0 </a> </td>
</tr>
<tr class="record">
<td> 31 </td>
<td><strong><a title="Qt4-based audio/MIDI sequencer" href="http://www.muse-sequencer.org/"> muse </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/m/muse/"> 2.1.2-1+nmu1 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/m/muse/"> 2.1.2-1+nmu1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/precise/main/m/muse/"> 2.1.2-1+nmu1 </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> 32 </td>
<td><strong><a title="paint program for use with graphics tablets" href="http://mypaint.info/"> mypaint </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/m/mypaint/"> 1.3.0~git4990-c32bd422 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/m/mypaint/"> 1.3.0~git4990-c32bd422 </a> </td>
<td><a href="https://notesalexp.org/buster/main/m/mypaint/"> 1.3.0~git4990-c32bd422 </a> </td>
<td><a href="https://notesalexp.org/sid/main/m/mypaint/"> 1.3.0~git4990-c32bd422 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/xenial/main/m/mypaint/"> 1.3.0~git4990-c32bd422 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/m/mypaint/"> 1.3.0~git4990-c32bd422 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/m/mypaint/mypaint_1.3.0~git4990-c32bd422-1.dsc"> 1.3.0~git4990-c32bd422 </a> </td>
</tr>
<tr class="record">
<td> 33 </td>
<td><strong><a title="Create your own collection of e-books" href="http://myrulib.lintest.ru"> myrulib </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/buster/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/sid/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/precise/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/m/myrulib/"> 0.29.16+git20131116 </a> </td>
<td><a href="https://notesalexp.org/source/main/m/myrulib/myrulib_0.29.16+git20131116-8.dsc"> 0.29.16+git20131116 </a> </td>
</tr>
<tr class="record">
<td> 34 </td>
<td><strong><a title="Graphical key editor for openbox" href="http://code.google.com/p/obkey/"> obkey </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/o/obkey/"> 1.0+git20111228 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/o/obkey/"> 1.0+git20180728 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/o/obkey/"> 1.0+git20180728 </a> </td>
<td><a href="https://notesalexp.org/buster/main/o/obkey/"> 1.0+git20180728 </a> </td>
<td><a href="https://notesalexp.org/sid/main/o/obkey/"> 1.0+git20180728 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/o/obkey/"> 1.0+git20111228 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/o/obkey/"> 1.0+git20180728 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/o/obkey/"> 1.0+git20180728 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/o/obkey/"> 1.0+git20180728 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/o/obkey/obkey_1.0+git20180728-1.dsc"> 1.0+git20180728 </a> </td>
</tr>
<tr class="record">
<td> 35 </td>
<td><strong><a title="Document layout analysis and optical character recognition system" href="http://live.gnome.org/OCRFeeder"> ocrfeeder </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/o/ocrfeeder/"> 0.7.11+git20140415 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/o/ocrfeeder/"> 0.8.1+git20190219 </a> </td>
<td><a href="https://notesalexp.org/buster/main/o/ocrfeeder/"> 0.8.1+git20190219 </a> </td>
<td><a href="https://notesalexp.org/sid/main/o/ocrfeeder/"> 0.8.1+git20190219 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/o/ocrfeeder/"> 0.7.11+git20140415 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/o/ocrfeeder/"> 0.8.1+git20170227 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/o/ocrfeeder/"> 0.8.1+git20190219 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/o/ocrfeeder/"> 0.8.1+git20190219 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/o/ocrfeeder/"> 0.8.1+git20190219 </a> </td>
<td><a href="https://notesalexp.org/source/main/o/ocrfeeder/ocrfeeder_0.8.1+git20190219-1.dsc"> 0.8.1+git20190219 </a> </td>
</tr>
<tr class="record">
<td> 36 </td>
<td><strong><a title="tool to perform OCR on DjVu documents" href="http://jwilk.net/software/ocrodjvu"> ocrodjvu </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/o/ocrodjvu/"> 0.12.0+git1316-7ccf6ee </a> </td>
<td><a href="https://notesalexp.org/stretch/main/o/ocrodjvu/"> 0.12.0+git1316-7ccf6ee </a> </td>
<td><a href="https://notesalexp.org/buster/main/o/ocrodjvu/"> 0.12.0+git1316-7ccf6ee </a> </td>
<td><a href="https://notesalexp.org/sid/main/o/ocrodjvu/"> 0.12.0+git1316-7ccf6ee </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/trusty/main/o/ocrodjvu/"> 0.12.0+git1316-7ccf6ee </a> </td>
<td><a href="https://notesalexp.org/xenial/main/o/ocrodjvu/"> 0.12.0+git1316-7ccf6ee </a> </td>
<td><a href="https://notesalexp.org/bionic/main/o/ocrodjvu/"> 0.12.0+git1316-7ccf6ee </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/o/ocrodjvu/"> 0.12.0+git1316-7ccf6ee </a> </td>
<td><a href="https://notesalexp.org/source/main/o/ocrodjvu/ocrodjvu_0.12.0+git1316-7ccf6ee-1.dsc"> 0.12.0+git1316-7ccf6ee </a> </td>
</tr>
<tr class="record">
<td> 37 </td>
<td><strong><a title="Simple drawing/painting program" href="http://pinta-project.com/"> pinta </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/p/pinta/"> 1.6+git1790-bebb4793 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/p/pinta/"> 1.6+git1802-f429bdbc </a> </td>
<td><a href="https://notesalexp.org/stretch/main/p/pinta/"> 1.6+git1802-f429bdbc </a> </td>
<td><a href="https://notesalexp.org/buster/main/p/pinta/"> 1.6+git1802-f429bdbc </a> </td>
<td><a href="https://notesalexp.org/sid/main/p/pinta/"> 1.6+git1802-f429bdbc </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/p/pinta/"> 1.6+git1790-bebb4793 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/p/pinta/"> 1.6+git1802-f429bdbc </a> </td>
<td><a href="https://notesalexp.org/xenial/main/p/pinta/"> 1.6+git1802-f429bdbc </a> </td>
<td><a href="https://notesalexp.org/bionic/main/p/pinta/"> 1.6+git1802-f429bdbc </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/p/pinta/"> 1.6+git1802-f429bdbc </a> </td>
<td><a href="https://notesalexp.org/source/main/p/pinta/pinta_1.6+git1802-f429bdbc-1.dsc"> 1.6+git1802-f429bdbc </a> </td>
</tr>
<tr class="record">
<td> 38 </td>
<td><strong><a title="Generates HTML pages containing statistics about a PPA" href="http://wpitchoune.net/blog/ppastats/"> ppastats </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/p/ppastats/"> 1.3.3+git199-98899cb </a> </td>
<td><a href="https://notesalexp.org/stretch/main/p/ppastats/"> 1.3.3+git199-98899cb </a> </td>
<td><a href="https://notesalexp.org/buster/main/p/ppastats/"> 1.3.3+git199-98899cb </a> </td>
<td><a href="https://notesalexp.org/sid/main/p/ppastats/"> 1.3.3+git199-98899cb </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/trusty/main/p/ppastats/"> 1.3.3+git199-98899cb </a> </td>
<td><a href="https://notesalexp.org/xenial/main/p/ppastats/"> 1.3.3+git199-98899cb </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/p/ppastats/ppastats_1.3.3+git199-98899cb-2.dsc"> 1.3.3+git199-98899cb </a> </td>
</tr>
<tr class="record">
<td> 39 </td>
<td><strong><a title="Qt-based XMPP client (basic version)" href="https://psi-plus.com/"> psi-plus </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/p/psi-plus/"> 0.16.572.639+git20170227 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/p/psi-plus/"> 1.0.134+git20170714 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/stretch/main/p/psi-plus/"> 1.4.675+git20190511 </a> </td>
<td><a href="https://notesalexp.org/buster/main/p/psi-plus/"> 1.4.683+git20190513 </a> </td>
<td><a href="https://notesalexp.org/sid/main/p/psi-plus/"> 1.4.683+git20190513 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/p/psi-plus/"> 0.16.572.639+git20170227 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/p/psi-plus/"> 1.0.134+git20170714 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/p/psi-plus/"> 1.4.675+git20190511 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/p/psi-plus/"> 1.4.683+git20190513 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/p/psi-plus/"> 1.4.683+git20190513 </a> </td>
<td><a href="https://notesalexp.org/source/main/p/psi-plus/psi-plus_1.4.683+git20190513-1.dsc"> 1.4.683+git20190513 </a> </td>
</tr>
<tr class="record">
<td> 40 </td>
<td><strong><a title="localization files for Psi+" href="https://github.com/psi-plus/psi-plus-l10n"> psi-plus-l10n </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/p/psi-plus-l10n/"> 0.16.583.732+git20170430 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/p/psi-plus-l10n/"> 1.2.12+git20170726 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/p/psi-plus-l10n/"> 1.4.675+git20190504 </a> </td>
<td><a href="https://notesalexp.org/buster/main/p/psi-plus-l10n/"> 1.4.675+git20190504 </a> </td>
<td><a href="https://notesalexp.org/sid/main/p/psi-plus-l10n/"> 1.4.675+git20190504 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/p/psi-plus-l10n/"> 0.16.574.639+git20170409 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/p/psi-plus-l10n/"> 1.2.12+git20170726 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/p/psi-plus-l10n/"> 1.4.675+git20190504 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/p/psi-plus-l10n/"> 1.4.675+git20190504 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/p/psi-plus-l10n/"> 1.4.675+git20190504 </a> </td>
<td><a href="https://notesalexp.org/source/main/p/psi-plus-l10n/psi-plus-l10n_1.4.675+git20190504-1.dsc"> 1.4.675+git20190504 </a> </td>
</tr>
<tr class="record">
<td> 41 </td>
<td><strong><a title="Manual tiling manager for EWMH compliant window managers" href="http://sourceforge.net/projects/pytyle/"> pytyle </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/p/pytyle/"> 0.7.5 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/p/pytyle/"> 0.7.5 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/precise/main/p/pytyle/"> 0.7.5 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/p/pytyle/"> 0.7.5 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td> </td>
</tr>
<tr class="record">
<td> 42 </td>
<td><strong><a title="Qt GUI for WINE" href="https://github.com/brezerk/q4wine"> q4wine </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/q/q4wine/"> 1.3.6 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/q/q4wine/"> 1.3.11 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/stretch/main/q/q4wine/"> 1.3.11 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/buster/main/q/q4wine/"> 1.3.11 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/sid/main/q/q4wine/"> 1.3.11 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/q/q4wine/"> 1.2-r2-1+nmu1 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/q/q4wine/"> 1.3.11 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/q/q4wine/"> 1.3.11 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/bionic/main/q/q4wine/"> 1.3.11 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/cosmic/main/q/q4wine/"> 1.3.11 </a> </td>
<td><a href="https://notesalexp.org/source/main/q/q4wine/q4wine_1.3.11-1.dsc"> 1.3.11 </a> </td>
</tr>
<tr class="record">
<td> 43 </td>
<td><strong><a title="Computer Aided Drafting (CAD) software" href="http://www.qcad.org/"> qcad </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/q/qcad/"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/q/qcad/"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
<td><a href="https://notesalexp.org/buster/main/q/qcad/"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
<td><a href="https://notesalexp.org/sid/main/q/qcad/"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/trusty/main/q/qcad/"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/q/qcad/"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/q/qcad/"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/q/qcad/"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
<td><a href="https://notesalexp.org/source/main/q/qcad/qcad_3.22.0.5+git6899-254c2bbd4-1.dsc"> 3.22.0.5+git6899-254c2bbd4 </a> </td>
</tr>
<tr class="record">
<td> 44 </td>
<td><strong><a title="qt viewer for comic book archives (cbr/cbz/cba/cbg/cbb)" href="https://github.com/stolowski/QComicBook"> qcomicbook </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/q/qcomicbook/"> 0.9.0+git20121201 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/q/qcomicbook/"> 0.9.1+git476-d0fc37d </a> </td>
<td><a href="https://notesalexp.org/stretch/main/q/qcomicbook/"> 0.9.1+git476-d0fc37d </a> </td>
<td><a href="https://notesalexp.org/buster/main/q/qcomicbook/"> 0.9.1+git476-d0fc37d </a> </td>
<td><a href="https://notesalexp.org/sid/main/q/qcomicbook/"> 0.9.1+git476-d0fc37d </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/q/qcomicbook/"> 0.9.0+git20121201 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/q/qcomicbook/"> 0.9.0+git20121201 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/q/qcomicbook/"> 0.9.1+git476-d0fc37d </a> </td>
<td><a href="https://notesalexp.org/bionic/main/q/qcomicbook/"> 0.9.1+git476-d0fc37d </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/q/qcomicbook/qcomicbook_0.9.1+git476-d0fc37d-1.dsc"> 0.9.1+git476-d0fc37d </a> </td>
</tr>
<tr class="record">
<td> 45 </td>
<td><strong><a title="CD/DVD quality checker" href="http://qpxtool.sourceforge.net/"> qpxtool </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/q/qpxtool/"> 0.7.2-4+nmu1 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/q/qpxtool/"> 0.7.2-4+nmu1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/precise/main/q/qpxtool/"> 0.7.2-4+nmu1 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/q/qpxtool/"> 0.7.2-4+nmu1 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td> </td>
</tr>
<tr class="record">
<td> 46 </td>
<td><strong><a title="Tool for adjusting tesseract-ocr box files" href="https://github.com/zdenop/qt-box-editor"> qt-box-editor </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/q/qt-box-editor/"> 1.09+git20151026 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/stretch/main/q/qt-box-editor/"> 1.09+git20190508 </a> </td>
<td><a href="https://notesalexp.org/buster/main/q/qt-box-editor/"> 1.09+git20190508 </a> </td>
<td><a href="https://notesalexp.org/sid/main/q/qt-box-editor/"> 1.09+git20190508 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/q/qt-box-editor/"> 1.09+git20151026 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/xenial/main/q/qt-box-editor/"> 1.09+git20190508 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/q/qt-box-editor/"> 1.09+git20190508 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/q/qt-box-editor/"> 1.09+git20190508 </a> </td>
<td><a href="https://notesalexp.org/source/main/q/qt-box-editor/qt-box-editor_1.09+git20190508-1.dsc"> 1.09+git20190508 </a> </td>
</tr>
<tr class="record">
<td> 47 </td>
<td><strong><a title="graphical front-end for cuneiform" href="https://github.com/uliss/quneiform"> quneiform </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/q/quneiform/"> 0.9.0~git20130712 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/precise/main/q/quneiform/"> 0.9.0~git20130712 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/q/quneiform/"> 0.9.0~git20130712 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td> </td>
</tr>
<tr class="record">
<td> 48 </td>
<td><strong><a title="audio extraction tool for sampling CDs" href="https://github.com/bleskodev/rubyripper"> rubyripper </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/r/rubyripper/"> 0.6.2 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/r/rubyripper/"> 0.6.2+git782-1ca0202 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/r/rubyripper/"> 0.6.2+git794-c13af5f </a> </td>
<td><a href="https://notesalexp.org/buster/main/r/rubyripper/"> 0.6.2+git794-c13af5f </a> </td>
<td><a href="https://notesalexp.org/sid/main/r/rubyripper/"> 0.6.2+git794-c13af5f </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/r/rubyripper/"> 0.6.2 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/r/rubyripper/"> 0.6.2+git782-1ca0202 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/r/rubyripper/"> 0.6.2+git782-1ca0202 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/r/rubyripper/"> 0.6.2+git794-c13af5f </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/r/rubyripper/rubyripper_0.6.2+git794-c13af5f-1.dsc"> 0.6.2+git794-c13af5f </a> </td>
</tr>
<tr class="record">
<td> 49 </td>
<td><strong><a title="Interactive post-processing tool for scanned pages" href="http://scantailor.sourceforge.net/"> scantailor </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td><a href="https://notesalexp.org/buster/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td><a href="https://notesalexp.org/sid/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td><a href="https://notesalexp.org/precise/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/s/scantailor/"> 0.9.12.2+git986-67a8466 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/s/scantailor/scantailor_0.9.12.2+git986-67a8466-1.dsc"> 0.9.12.2+git986-67a8466 </a> </td>
</tr>
<tr class="record">
<td> 50 </td>
<td><strong><a title="Interactive post-processing tool for scanned pages" href="https://github.com/4lex4/scantailor-advanced"> scantailor-advanced </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/buster/main/s/scantailor-advanced/"> 1.0.14+git391-5e0068f </a> </td>
<td><a href="https://notesalexp.org/sid/main/s/scantailor-advanced/"> 1.0.14+git391-5e0068f </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/bionic/main/s/scantailor-advanced/"> 1.0.14+git391-5e0068f </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/s/scantailor-advanced/scantailor-advanced_1.0.14+git391-5e0068f-1.dsc"> 1.0.14+git391-5e0068f </a> </td>
</tr>
<tr class="record">
<td> 51 </td>
<td><strong><a title="Interactive post-processing tool for scanned pages" href="https://github.com/trufanov-nok/scantailor"> scantailor-universal </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/stretch/main/s/scantailor-universal/"> 0.2.0+git1435-df4b4c9a </a> </td>
<td><a href="https://notesalexp.org/buster/main/s/scantailor-universal/"> 0.2.0+git1435-df4b4c9a </a> </td>
<td><a href="https://notesalexp.org/sid/main/s/scantailor-universal/"> 0.2.0+git1435-df4b4c9a </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/s/scantailor-universal/"> 0.2.0+git1409-09d97a1f </a> </td>
<td><a href="https://notesalexp.org/bionic/main/s/scantailor-universal/"> 0.2.0+git1435-df4b4c9a </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/s/scantailor-universal/"> 0.2.0+git1435-df4b4c9a </a> </td>
<td><a href="https://notesalexp.org/source/main/s/scantailor-universal/scantailor-universal_0.2.0+git1435-df4b4c9a-1.dsc"> 0.2.0+git1435-df4b4c9a </a> </td>
</tr>
<tr class="record">
<td> 52 </td>
<td><strong><a title="Complete front-end for MPlayer and mpv" href="http://smplayer.sourceforge.net/"> smplayer </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/s/smplayer/"> 18.6.0+svn9077 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/s/smplayer/"> 19.01.0+svn9202 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/s/smplayer/"> 19.01.0+svn9202 </a> </td>
<td><a href="https://notesalexp.org/buster/main/s/smplayer/"> 19.01.0+svn9202 </a> </td>
<td><a href="https://notesalexp.org/sid/main/s/smplayer/"> 19.01.0+svn9202 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/s/smplayer/"> 18.6.0+svn9077 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/s/smplayer/"> 18.6.0+svn9077 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/s/smplayer/"> 19.01.0+svn9202 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/s/smplayer/"> 19.01.0+svn9202 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/s/smplayer/"> 19.01.0+svn9202 </a> </td>
<td><a href="https://notesalexp.org/source/main/s/smplayer/smplayer_19.01.0+svn9202-1.dsc"> 19.01.0+svn9202 </a> </td>
</tr>
<tr class="record">
<td> 53 </td>
<td><strong><a title="parametric 2d/3d CAD" href="http://solvespace.com"> solvespace </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/stretch/main/s/solvespace/"> 3.0.0~git1314-201e15e </a> </td>
<td><a href="https://notesalexp.org/buster/main/s/solvespace/"> 3.0.0~git1314-201e15e </a> </td>
<td><a href="https://notesalexp.org/sid/main/s/solvespace/"> 3.0.0~git1314-201e15e </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> <a href="https://notesalexp.org/xenial/main/s/solvespace/"> 2.2.0+git1077-9148d0c </a> </td>
<td><a href="https://notesalexp.org/bionic/main/s/solvespace/"> 3.0.0~git1314-201e15e </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/s/solvespace/"> 3.0.0~git1314-201e15e </a> </td>
<td><a href="https://notesalexp.org/source/main/s/solvespace/solvespace_3.0.0~git1314-201e15e-1.dsc"> 3.0.0~git1314-201e15e </a> </td>
</tr>
<tr class="record">
<td> 54 </td>
<td><strong><a title="GUI editor for SQLite databases" href="http://sqlitebrowser.org/"> sqlitebrowser </a></strong></td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/stretch/main/s/sqlitebrowser/"> 3.11.2 </a> </td>
<td><a href="https://notesalexp.org/buster/main/s/sqlitebrowser/"> 3.11.2 </a> </td>
<td><a href="https://notesalexp.org/sid/main/s/sqlitebrowser/"> 3.11.2 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/bionic/main/s/sqlitebrowser/"> 3.11.2 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/s/sqlitebrowser/"> 3.11.2 </a> </td>
<td><a href="https://notesalexp.org/source/main/s/sqlitebrowser/sqlitebrowser_3.11.2-1.dsc"> 3.11.2 </a> </td>
</tr>
<tr class="record">
<td> 55 </td>
<td><strong><a title="Sinclair ZX80/ZX81 emulator" href="http://sz81.sourceforge.net/"> sz81 </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td><a href="https://notesalexp.org/buster/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td><a href="https://notesalexp.org/sid/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td><a href="https://notesalexp.org/precise/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/s/sz81/"> 2.1.7+svn203 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/s/sz81/sz81_2.1.7+svn203-5.dsc"> 2.1.7+svn203 </a> </td>
</tr>
<tr class="record">
<td> 56 </td>
<td><strong><a title="Open Source OCR Engine" href="https://github.com/tesseract-ocr/"> tesseract-ocr </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/t/tesseract/"> 3.02.02+svn979 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/t/tesseract/"> 4.1.0~git3889-5320320b </a> </td>
<td><a href="https://notesalexp.org/stretch/main/t/tesseract/"> 4.1.0~git3889-5320320b </a> </td>
<td><a href="https://notesalexp.org/buster/main/t/tesseract/"> 4.1.0~git3889-5320320b </a> </td>
<td><a href="https://notesalexp.org/sid/main/t/tesseract/"> 4.1.0~git3889-5320320b </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/t/tesseract/"> 3.02.02+svn895 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/t/tesseract/"> 4.1.0~git3889-5320320b </a> </td>
<td><a href="https://notesalexp.org/xenial/main/t/tesseract/"> 4.1.0~git3889-5320320b </a> </td>
<td><a href="https://notesalexp.org/bionic/main/t/tesseract/"> 4.1.0~git3889-5320320b </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/t/tesseract/"> 4.1.0~git3889-5320320b </a> </td>
<td><a href="https://notesalexp.org/source/main/t/tesseract/tesseract_4.1.0~git3889-5320320b-1.dsc"> 4.1.0~git3889-5320320b </a> </td>
</tr>
<tr class="record">
<td> 57 </td>
<td><strong><a title="Free open-source disk encryption software" href="http://www.truecrypt.org/"> truecrypt </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/t/truecrypt/"> 7.1a </a> </td>
<td><a href="https://notesalexp.org/jessie/main/t/truecrypt/"> 7.1a </a> </td>
<td><a href="https://notesalexp.org/stretch/main/t/truecrypt/"> 7.1a </a> </td>
<td><a href="https://notesalexp.org/buster/main/t/truecrypt/"> 7.1a </a> </td>
<td><a href="https://notesalexp.org/sid/main/t/truecrypt/"> 7.1a </a> </td>
<td><a href="https://notesalexp.org/precise/main/t/truecrypt/"> 7.1a </a> </td>
<td><a href="https://notesalexp.org/trusty/main/t/truecrypt/"> 7.1a </a> </td>
<td><a href="https://notesalexp.org/xenial/main/t/truecrypt/"> 7.1a </a> </td>
<td><a href="https://notesalexp.org/bionic/main/t/truecrypt/"> 7.1a </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/t/truecrypt/truecrypt_7.1a-6.dsc"> 7.1a </a> </td>
</tr>
<tr class="record">
<td> 58 </td>
<td><strong><a title="easy-to-use download manager written in GTK+" href="http://urlget.sourceforge.net/"> uget </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/u/uget/"> 2.0.1-0+nmu1 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/u/uget/"> 2.2.1-1+nmu2 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/u/uget/"> 2.2.1-1+nmu2 </a> </td>
<td><a href="https://notesalexp.org/buster/main/u/uget/"> 2.2.1-1+nmu2 </a> </td>
<td><a href="https://notesalexp.org/sid/main/u/uget/"> 2.2.1-1+nmu2 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/u/uget/"> 2.0.1-0+nmu1 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/u/uget/"> 2.2.1-1+nmu2 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/u/uget/"> 2.2.1-1+nmu2 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/u/uget/"> 2.2.1-1+nmu2 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/u/uget/"> 2.2.1-1+nmu2 </a> </td>
<td><a href="https://notesalexp.org/source/main/u/uget/uget_2.2.1-1+nmu2.dsc"> 2.2.1-1+nmu2 </a> </td>
</tr>
<tr class="record">
<td> 59 </td>
<td><strong><a title="Jabber client using Qt" href="https://github.com/Vacuum-IM"> vacuum </a></strong></td>
<td class="hrecord"> <a href="https://notesalexp.org/wheezy/main/v/vacuum/"> 1.3.0+git20170528 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/jessie/main/v/vacuum/"> 1.3.0+git20170528 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/v/vacuum/"> 1.3.0+git20190111 </a> </td>
<td><a href="https://notesalexp.org/buster/main/v/vacuum/"> 1.3.0+git20190111 </a> </td>
<td><a href="https://notesalexp.org/sid/main/v/vacuum/"> 1.3.0+git20190111 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/precise/main/v/vacuum/"> 1.3.0+git20170528 </a> </td>
<td class="hrecord"> <a href="https://notesalexp.org/trusty/main/v/vacuum/"> 1.3.0+git20170528 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/v/vacuum/"> 1.3.0+git20190111 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/v/vacuum/"> 1.3.0+git20190111 </a> </td>
<td><a href="https://notesalexp.org/cosmic/main/v/vacuum/"> 1.3.0+git20190111 </a> </td>
<td><a href="https://notesalexp.org/source/main/v/vacuum/vacuum_1.3.0+git20190111-1.dsc"> 1.3.0+git20190111 </a> </td>
</tr>
<tr class="record">
<td> 60 </td>
<td><strong><a title="Free open-source disk encryption software" href="https://veracrypt.codeplex.com/"> veracrypt </a></strong></td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/jessie/main/v/veracrypt/"> 1.23 </a> </td>
<td><a href="https://notesalexp.org/stretch/main/v/veracrypt/"> 1.23 </a> </td>
<td><a href="https://notesalexp.org/buster/main/v/veracrypt/"> 1.23 </a> </td>
<td><a href="https://notesalexp.org/sid/main/v/veracrypt/"> 1.23 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/trusty/main/v/veracrypt/"> 1.23 </a> </td>
<td><a href="https://notesalexp.org/xenial/main/v/veracrypt/"> 1.23 </a> </td>
<td><a href="https://notesalexp.org/bionic/main/v/veracrypt/"> 1.23 </a> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/v/veracrypt/veracrypt_1.23-1.dsc"> 1.23 </a> </td>
</tr>
<tr class="record">
<td> 61 </td>
<td><strong><a title="graphical interface for cuneiform and tesseract" href="http://sourceforge.net/projects/yagf-ocr/"> yagf </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/y/yagf/"> 0.9.4.3+git20150224 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/y/yagf/"> 0.9.4.3+git20150224 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/precise/main/y/yagf/"> 0.9.4.3+git20150224 </a> </td>
<td><a href="https://notesalexp.org/trusty/main/y/yagf/"> 0.9.4.3+git20150224 </a> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td class="hrecord"> </td>
<td><a href="https://notesalexp.org/source/main/y/yagf/yagf_0.9.4.3+git20150224-1.dsc"> 0.9.4.3+git20150224 </a> </td>
</tr>
<tr class="record">
<td> 62 </td>
<td><strong><a title="Simple lightweight application for notes" href="http://znotes.sourceforge.net/"> znotes </a></strong></td>
<td><a href="https://notesalexp.org/wheezy/main/z/znotes/"> 0.4.3+git20150825 </a> </td>
<td><a href="https://notesalexp.org/jessie/main/z/znotes/"> 0.4.3+git20150825 </a> </td>