-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFind-OutdatedPackages.yml
More file actions
1978 lines (1973 loc) · 169 KB
/
Find-OutdatedPackages.yml
File metadata and controls
1978 lines (1973 loc) · 169 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
# Generated by Find-OutdatedPackages.ps1
# 2026-02-09 13:17:30
- id: "Anki.Anki"
repo: "ankitects/anki"
url: "https://github.com/ankitects/anki/releases/download/{VERSION}/anki-launcher-{VERSION}-windows.exe"
- id: "anyme123.ClaudeWorkbench"
repo: "anyme123/Any-code"
url: '"https://github.com/anyme123/Any-code/releases/download/v{VERSION}/Any.Code_{VERSION}_x64-setup.exe https://github.com/anyme123/Any-code/releases/download/v{VERSION}/Any.Code_{VERSION}_x64_en-US.msi"'
- id: "ApeCloud.kbcli"
repo: "apecloud/kbcli"
url: "https://github.com/apecloud/kbcli/releases/download/v{VERSION}/kbcli.exe"
- id: "apernet.Hysteria"
repo: "apernet/hysteria"
url: '"https://github.com/apernet/hysteria/releases/download/app/v{VERSION}/hysteria-windows-386.exe https://github.com/apernet/hysteria/releases/download/app/v{VERSION}/hysteria-windows-amd64.exe https://github.com/apernet/hysteria/releases/download/app/v{VERSION}/hysteria-windows-arm64.exe"'
- id: "AptosCore.aptos"
repo: "aptos-labs/aptos-core"
url: "https://github.com/aptos-labs/aptos-core/releases/download/aptos-cli-v{VERSION}/aptos-cli-{VERSION}-Windows-x86_64.zip"
- id: "Archeb.OpenTrace"
repo: "Archeb/opentrace"
url: "https://github.com/Archeb/opentrace/releases/download/v{VERSION}/win-x64.zip"
- id: "arcusmaximus.YTSubConverter"
repo: "arcusmaximus/YTSubConverter"
url: "https://github.com/arcusmaximus/YTSubConverter/releases/download/{VERSION}/YTSubConverter.exe"
- id: "Arelle.Arelle"
repo: "Arelle/Arelle"
url: '"https://github.com/Arelle/Arelle/releases/download/{VERSION}/arelle-win-{VERSION}.zip https://github.com/Arelle/Arelle/releases/download/{VERSION}/arelle-win-{VERSION}.exe"'
- id: "aria2.aria2"
repo: "aria2/aria2"
url: '"https://github.com/aria2/aria2/releases/download/release-{VERSION}/aria2-{VERSION}-win-32bit-build1.zip https://github.com/aria2/aria2/releases/download/release-{VERSION}/aria2-{VERSION}-win-64bit-build1.zip"'
- id: "ArianesLine.Ariane"
repo: "Ariane-s-Line/Ariane-Release"
url: "https://github.com/Ariane-s-Line/Ariane-Release/releases/download/v{VERSION}/Ariane-{VERSION}-WIN-x64.msi"
- id: "Aries-Sciences-LLC.AI-Chess"
repo: "Aries-Sciences-LLC/AI-Chess"
url: "https://github.com/Aries-Sciences-LLC/AI-Chess/releases/download/1.0/AI.Chess.Game.Installer.exe"
- id: "armbian.imager"
repo: "armbian/imager"
url: '"https://github.com/armbian/imager/releases/download/v{VERSION}/Armbian.Imager_{VERSION}_x64-setup.exe https://github.com/armbian/imager/releases/download/v{VERSION}/Armbian.Imager_{VERSION}_x64_en-US.msi https://github.com/armbian/imager/releases/download/v{VERSION}/Armbian.Imager_{VERSION}_arm64-setup.exe https://github.com/armbian/imager/releases/download/v{VERSION}/Armbian.Imager_{VERSION}_arm64_en-US.msi"'
- id: "ArtemChepurnyi.Keyguard"
repo: "AChep/keyguard-app"
url: "https://github.com/AChep/keyguard-app/releases/download/r20260201/Keyguard-{VERSION}.msi"
- id: "Artempyanykh.Marksman"
repo: "artempyanykh/marksman"
url: "https://github.com/artempyanykh/marksman/releases/download/2024-12-18/marksman.exe"
- id: "asdfjkl.JerryChess"
repo: "asdfjkl/jfxchess"
url: "https://github.com/asdfjkl/jfxchess/releases/download/v{VERSION}/SetupJFXChess.exe"
- id: "asdfjkl.YAHB"
repo: "asdfjkl/yahb"
url: "https://github.com/asdfjkl/yahb/releases/download/v.{VERSION}/yahb_setup.exe"
- id: "Aserto.Topaz"
repo: "aserto-dev/topaz"
url: "https://github.com/aserto-dev/topaz/releases/download/v{VERSION}/topaz_windows_x86_64.zip"
- id: "asheroto.MessagesforWeb"
repo: "asheroto/MessagesForWeb"
url: "https://github.com/asheroto/MessagesForWeb/releases/download/{VERSION}/MessagesForWeb.exe"
- id: "Audacity.Audacity"
repo: "audacity/audacity"
url: '"https://github.com/audacity/audacity/releases/download/Audacity-{VERSION}/audacity-win-{VERSION}-32bit.exe https://github.com/audacity/audacity/releases/download/Audacity-{VERSION}/audacity-win-{VERSION}-64bit.exe https://github.com/audacity/audacity/releases/download/Audacity-{VERSION}/audacity-win-{VERSION}-arm64.exe"'
- id: "Audio_Arcade.Audio_Arcade"
repo: "Audio-Arcade/Audio_Arcade"
url: "https://github.com/Audio-Arcade/Audio_Arcade/releases/download/Release/Audio_Arcade.msi"
- id: "Auto-Plugin.milkup"
repo: "Auto-Plugin/milkup"
url: '"https://github.com/Auto-Plugin/milkup/releases/download/Beta-v{VERSION}/milkup.Setup.0.4.10.exe https://github.com/Auto-Plugin/milkup/releases/download/Beta-v{VERSION}/milkup.Setup.0.4.10.exe"'
- id: "AutoHotkey.AutoHotkey"
repo: "AutoHotkey/AutoHotkey"
url: '"https://github.com/AutoHotkey/AutoHotkey/releases/download/v{VERSION}/AutoHotkey_{VERSION}_setup.exe https://github.com/AutoHotkey/AutoHotkey/releases/download/v{VERSION}/AutoHotkey_{VERSION}_setup.exe https://github.com/AutoHotkey/AutoHotkey/releases/download/v{VERSION}/AutoHotkey_{VERSION}_setup.exe https://github.com/AutoHotkey/AutoHotkey/releases/download/v{VERSION}/AutoHotkey_{VERSION}_setup.exe"'
- id: "AutomatedLab.AutomatedLab"
repo: "AutomatedLab/AutomatedLab"
url: "https://github.com/AutomatedLab/AutomatedLab/releases/download/{VERSION}/AutomatedLab.msi"
- id: "Avidemux.Avidemux"
repo: "mean00/avidemux2"
url: "https://github.com/mean00/avidemux2/releases/download/2.8.0/avidemux_2.8.0_win64.exe"
- id: "awakecoding.mcp-proxy-tool"
repo: "awakecoding/mcp-proxy-tool"
url: '"https://github.com/awakecoding/mcp-proxy-tool/releases/download/v{VERSION}/mcp-proxy-tool-windows-x64.zip https://github.com/awakecoding/mcp-proxy-tool/releases/download/v{VERSION}/mcp-proxy-tool-windows-arm64.zip"'
- id: "axcore.tartube"
repo: "axcore/tartube"
url: "https://github.com/axcore/tartube/releases/download/v{VERSION}/install-tartube-{VERSION}-64bit.exe"
- id: "AzaharEmulator.Azahar.MSVC"
repo: "azahar-emu/azahar"
url: "https://github.com/azahar-emu/azahar/releases/download/{VERSION}/azahar-{VERSION}-windows-msvc-installer.exe"
- id: "AzaharEmulator.Azahar.MSYS2"
repo: "azahar-emu/azahar"
url: "https://github.com/azahar-emu/azahar/releases/download/{VERSION}/azahar-{VERSION}-windows-msys2-installer.exe"
- id: "AzaharPlus.AzaharPlus"
repo: "AzaharPlus/AzaharPlus"
url: "https://github.com/AzaharPlus/AzaharPlus/releases/download/AZAHAR_PLUS_2122_A/azaharplus-{VERSION}-windows.zip"
- id: "babalae.BetterGI"
repo: "babalae/better-genshin-impact"
url: "https://github.com/babalae/better-genshin-impact/releases/download/{VERSION}/BetterGI.v{VERSION}.zip"
- id: "Babashka.Babashka"
repo: "babashka/babashka"
url: "https://github.com/babashka/babashka/releases/download/v{VERSION}/babashka-{VERSION}-windows-amd64.zip"
- id: "badboy.mdbook-toc"
repo: "badboy/mdbook-toc"
url: "https://github.com/badboy/mdbook-toc/releases/download/{VERSION}/mdbook-toc-{VERSION}-x86_64-pc-windows-msvc.zip"
- id: "BaileyBrown.cppcryptfs"
repo: "bailey27/cppcryptfs"
url: '"https://github.com/bailey27/cppcryptfs/releases/download/v{VERSION}/cppcryptfs32.exe https://github.com/bailey27/cppcryptfs/releases/download/v{VERSION}/cppcryptfs.exe"'
- id: "Balena.BalenaCLI"
repo: "balena-io/balena-cli"
url: "https://github.com/balena-io/balena-cli/releases/download/v{VERSION}/balena-cli-v{VERSION}-windows-x64-installer.exe"
- id: "Bambulab.Bambustudio"
repo: "bambulab/BambuStudio"
url: "https://github.com/bambulab/BambuStudio/releases/download/v02.05.00.67/Bambu_Studio_win_public-v{VERSION}-20260128215914.exe"
- id: "Basti-def.helloworld.package"
repo: "Basti-def/helloworld-test"
url: "https://github.com/Basti-def/helloworld-test/releases/download/helloworld/helloworld.exe"
- id: "bbatistadaniel.autoclicker"
repo: "bbatistadaniel/Auto-Clicker"
url: "https://github.com/bbatistadaniel/Auto-Clicker/releases/download/AutoClicker/Auto.Clicker.Windows.10.x64.portable.exe"
- id: "BBC.audiowaveform"
repo: "bbc/audiowaveform"
url: '"https://github.com/bbc/audiowaveform/releases/download/{VERSION}/audiowaveform-{VERSION}-win32.zip https://github.com/bbc/audiowaveform/releases/download/{VERSION}/audiowaveform-{VERSION}.win64.zip"'
- id: "bcssov.IronyModManager"
repo: "bcssov/IronyModManager"
url: '"https://github.com/bcssov/IronyModManager/releases/download/v{VERSION}/win-x64-setup.zip https://github.com/bcssov/IronyModManager/releases/download/v{VERSION}/win-x64-setup.zip"'
- id: "bdash-app.bdash"
repo: "bdash-app/bdash"
url: "https://github.com/bdash-app/bdash/releases/download/v{VERSION}/Bdash-Setup-{VERSION}.exe"
- id: "bee-san.Ares"
repo: "bee-san/Ares"
url: "https://github.com/bee-san/Ares/releases/download/v{VERSION}/project_ares-v{VERSION}-x86_64-pc-windows-msvc.zip"
- id: "BellSoft.LibericaNIK.22.JDK11"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-11.0.22+12/bellsoft-liberica-vm-openjdk11.0.22+12-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.22.JDK11.Core"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-11.0.22+12/bellsoft-liberica-vm-core-openjdk11.0.22+12-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.22.JDK11.Full"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}%2B1-11.0.22%2B12/bellsoft-liberica-vm-full-openjdk11.0.22+12-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.23.JDK17"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-17.0.12+10/bellsoft-liberica-vm-openjdk17.0.12+10-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.23.JDK17.Core"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-17.0.12+10/bellsoft-liberica-vm-core-openjdk17.0.12+10-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.23.JDK17.Full"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-17.0.12+10/bellsoft-liberica-vm-full-openjdk17.0.12+10-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.23.JDK21"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-21.0.4+9/bellsoft-liberica-vm-openjdk21.0.4+9-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.23.JDK21.Core"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-21.0.4+9/bellsoft-liberica-vm-core-openjdk21.0.4+9-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.23.JDK21.Full"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-21.0.4+9/bellsoft-liberica-vm-full-openjdk21.0.4+9-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.24.JDK22"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-22.0.2+11/bellsoft-liberica-vm-openjdk22.0.2+11-{VERSION}+1-windows-amd64.msi"
- id: "BellSoft.LibericaNIK.24.JDK22.Full"
repo: "bell-sw/LibericaNIK"
url: "https://github.com/bell-sw/LibericaNIK/releases/download/{VERSION}+1-22.0.2+11/bellsoft-liberica-vm-full-openjdk22.0.2+11-{VERSION}+1-windows-amd64.msi"
- id: "benaclejames.VRCFaceTracking"
repo: "benaclejames/VRCFaceTracking"
url: "https://github.com/benaclejames/VRCFaceTracking/releases/download/{VERSION}/VRCFaceTracking_{VERSION}_x64.msix"
- id: "BenjaminLSR.HandheldCompanion"
repo: "Valkirie/HandheldCompanion"
url: "https://github.com/Valkirie/HandheldCompanion/releases/download/{VERSION}/HandheldCompanion-{VERSION}.exe"
- id: "BepassOrg.OblivionDesktop"
repo: "bepass-org/oblivion-desktop"
url: '"https://github.com/bepass-org/oblivion-desktop/releases/download/v{VERSION}/oblivion-desktop-win-x64.exe https://github.com/bepass-org/oblivion-desktop/releases/download/v{VERSION}/oblivion-desktop-win-x64.exe https://github.com/bepass-org/oblivion-desktop/releases/download/v{VERSION}/oblivion-desktop-win-ia32.exe https://github.com/bepass-org/oblivion-desktop/releases/download/v{VERSION}/oblivion-desktop-win-ia32.exe https://github.com/bepass-org/oblivion-desktop/releases/download/v{VERSION}/oblivion-desktop-win-arm64.exe https://github.com/bepass-org/oblivion-desktop/releases/download/v{VERSION}/oblivion-desktop-win-arm64.exe"'
- id: "Betaflight.Betaflight-Configurator"
repo: "betaflight/betaflight-configurator"
url: '"https://github.com/betaflight/betaflight-configurator/releases/download/{VERSION}/betaflight-configurator_{VERSION}_win64-installer.exe https://github.com/betaflight/betaflight-configurator/releases/download/{VERSION}/betaflight-configurator_{VERSION}_win64-installer.exe"'
- id: "Bforartists.Bforartists"
repo: "Bforartists/Bforartists"
url: "https://github.com/Bforartists/Bforartists/releases/download/v{VERSION}/Install_Bforartists4_433.exe"
- id: "bggRGjQaUbCoE.PiliPlus"
repo: "bggRGjQaUbCoE/PiliPlus"
url: "https://github.com/bggRGjQaUbCoE/PiliPlus/releases/download/{VERSION}/PiliPlus_windows_1.1.5+4543_x64_setup.exe"
- id: "Bililive.BililiveRecorder"
repo: "Bililive/BililiveRecorder"
url: "https://github.com/Bililive/BililiveRecorder/releases/download/v{VERSION}/BililiveRecorder-WPF-Setup.exe"
- id: "BillStewart.SyncthingWindowsSetup"
repo: "Bill-Stewart/SyncthingWindowsSetup"
url: '"https://github.com/Bill-Stewart/SyncthingWindowsSetup/releases/download/v{VERSION}/syncthing-windows-setup.exe https://github.com/Bill-Stewart/SyncthingWindowsSetup/releases/download/v{VERSION}/syncthing-windows-setup.exe"'
- id: "Bin-Huang.Chatbox.CommunityEdition"
repo: "chatboxai/chatbox"
url: '"https://github.com/chatboxai/chatbox/releases/download/v{VERSION}/Chatbox.CE-{VERSION}-Setup.exe https://github.com/chatboxai/chatbox/releases/download/v{VERSION}/Chatbox.CE-{VERSION}-Setup.exe https://github.com/chatboxai/chatbox/releases/download/v{VERSION}/Chatbox.CE-{VERSION}-Setup.exe https://github.com/chatboxai/chatbox/releases/download/v{VERSION}/Chatbox.CE-{VERSION}-Setup.exe"'
- id: "BinanceTech.Binance"
repo: "binance/desktop"
url: "https://github.com/binance/desktop/releases/download/v{VERSION}/binance-setup-{VERSION}.exe"
- id: "binaricat.Netcatty"
repo: "binaricat/Netcatty"
url: "https://github.com/binaricat/Netcatty/releases/download/v{VERSION}/Netcatty-{VERSION}-win-x64.exe"
- id: "binbat.live777"
repo: "binbat/live777"
url: '"https://github.com/binbat/live777/releases/download/v{VERSION}/live777-v{VERSION}-i686-pc-windows-msvc.zip https://github.com/binbat/live777/releases/download/v{VERSION}/live777-v{VERSION}-x86_64-pc-windows-msvc.zip"'
- id: "binbat.liveman"
repo: "binbat/live777"
url: '"https://github.com/binbat/live777/releases/download/v{VERSION}/liveman-v{VERSION}-i686-pc-windows-msvc.zip https://github.com/binbat/live777/releases/download/v{VERSION}/liveman-v{VERSION}-x86_64-pc-windows-msvc.zip"'
- id: "binbat.net4mqtt"
repo: "binbat/live777"
url: '"https://github.com/binbat/live777/releases/download/v{VERSION}/net4mqtt-v{VERSION}-i686-pc-windows-msvc.exe https://github.com/binbat/live777/releases/download/v{VERSION}/net4mqtt-v{VERSION}-x86_64-pc-windows-msvc.exe"'
- id: "binbat.whepfrom"
repo: "binbat/live777"
url: '"https://github.com/binbat/live777/releases/download/v{VERSION}/whepfrom-v{VERSION}-i686-pc-windows-msvc.exe https://github.com/binbat/live777/releases/download/v{VERSION}/whepfrom-v{VERSION}-x86_64-pc-windows-msvc.exe"'
- id: "binbat.whipinto"
repo: "binbat/live777"
url: '"https://github.com/binbat/live777/releases/download/v{VERSION}/whipinto-v{VERSION}-i686-pc-windows-msvc.exe https://github.com/binbat/live777/releases/download/v{VERSION}/whipinto-v{VERSION}-x86_64-pc-windows-msvc.exe"'
- id: "BiomeJS.Biome"
repo: "biomejs/biome"
url: '"https://github.com/biomejs/biome/releases/download/@biomejs/biome@{VERSION}/biome-win32-x64.exe https://github.com/biomejs/biome/releases/download/@biomejs/biome@{VERSION}/biome-win32-arm64.exe"'
- id: "biondi53.QuickExplorer"
repo: "biondi53/Quick-Explorer"
url: "https://github.com/biondi53/Quick-Explorer/releases/download/v{VERSION}/Quick.Explorer_{VERSION}_x64_en-US.msi"
- id: "Bisq.Bisq"
repo: "bisq-network/bisq"
url: "https://github.com/bisq-network/bisq/releases/download/v{VERSION}/Bisq-64bit-{VERSION}.exe"
- id: "Bitwarden.Bitwarden"
repo: "bitwarden/clients"
url: '"https://github.com/bitwarden/clients/releases/download/desktop-v{VERSION}/Bitwarden-Installer-{VERSION}.exe https://github.com/bitwarden/clients/releases/download/desktop-v{VERSION}/Bitwarden-Installer-{VERSION}.exe"'
- id: "Bitwarden.CLI"
repo: "bitwarden/clients"
url: "https://github.com/bitwarden/clients/releases/download/cli-v{VERSION}/bw-windows-{VERSION}.zip"
- id: "BlankSpruce.Gersemi"
repo: "BlankSpruce/gersemi"
url: "https://github.com/BlankSpruce/gersemi/releases/download/{VERSION}/gersemi-windows.exe"
- id: "BleuBleu.FamiStudio"
repo: "BleuBleu/FamiStudio"
url: "https://github.com/BleuBleu/FamiStudio/releases/download/{VERSION}/FamiStudio433-WinInstaller.zip"
- id: "BlobstStudios.bVald"
repo: "Blobst/bVald"
url: "https://github.com/Blobst/bVald/releases/download/{VERSION}/bvaldInstaller.exe"
- id: "Bloret.BloretLauncher"
repo: "BloretCrew/Bloret-Launcher"
url: "https://github.com/BloretCrew/Bloret-Launcher/releases/download/{VERSION}/Bloret-Launcher-Setup.exe"
- id: "Bloret.Launcher"
repo: "BloretCrew/Bloret-Launcher"
url: "https://github.com/BloretCrew/Bloret-Launcher/releases/download/{VERSION}/Bloret-Launcher-Setup.exe"
- id: "blueberrycongee.LuminaNote"
repo: "blueberrycongee/Lumina-Note"
url: '"https://github.com/blueberrycongee/Lumina-Note/releases/download/v{VERSION}/lumina-note_{VERSION}_x64-setup.exe https://github.com/blueberrycongee/Lumina-Note/releases/download/v{VERSION}/lumina-note_{VERSION}_x64_en-US.msi"'
- id: "bluecfd.bluecfd"
repo: "blueCFD/Core"
url: "https://github.com/blueCFD/Core/releases/download/blueCFD-Core-2020-1/blueCFD-Core-2020-1-win64-setup.exe"
- id: "BlueJTeam.BlueJ"
repo: "k-pet-group/BlueJ-Greenfoot"
url: "https://github.com/k-pet-group/BlueJ-Greenfoot/releases/download/BLUEJ-RELEASE-{VERSION}/BlueJ-windows-{VERSION}.msi"
- id: "BlueMystical.EDHM"
repo: "BlueMystical/EDHM_UI"
url: "https://github.com/BlueMystical/EDHM_UI/releases/download/v{VERSION}/EDHM_UI_Setup.msi"
- id: "BlueprintFreespeech.RicochetRefresh"
repo: "blueprint-freespeech/ricochet-refresh"
url: '"https://github.com/blueprint-freespeech/ricochet-refresh/releases/download/v{VERSION}-release/ricochet-refresh-{VERSION}-windows-i686-installer.exe https://github.com/blueprint-freespeech/ricochet-refresh/releases/download/v{VERSION}-release/ricochet-refresh-{VERSION}-windows-x86_64-installer.exe"'
- id: "BobdaProgrammer.slik"
repo: "BobdaProgrammer/slik"
url: "https://github.com/BobdaProgrammer/slik/releases/download/slikApp/slik.zip"
- id: "Bochs.Bochs"
repo: "bochs-emu/Bochs"
url: "https://github.com/bochs-emu/Bochs/releases/download/REL_3_0_FINAL/Bochs-win64-{VERSION}.exe"
- id: "BoxHero.BoxHero"
repo: "bgpworks/boxhero-electron"
url: "https://github.com/bgpworks/boxhero-electron/releases/download/{VERSION}/BoxHero-{VERSION}.Setup.exe"
- id: "BPBible.BPBible"
repo: "bpbible/bpbible"
url: "https://github.com/bpbible/bpbible/releases/download/release-{VERSION}/bpbible-{VERSION}-setup.exe"
- id: "BQN.CBQN"
repo: "vylsaz/cbqn-win-docker-build"
url: "https://github.com/vylsaz/cbqn-win-docker-build/releases/download/cbqn-{VERSION}/cbqn-ucrt-x86_64.zip"
- id: "Braillify.Braillify"
repo: "dev-five-git/braillify"
url: "https://github.com/dev-five-git/braillify/releases/download/braillify(libs%2Fbraillify%2FCargo.toml)%40{VERSION}/braillify-windows-x86_64.exe"
- id: "brandonyoungdev.tldx"
repo: "brandonyoungdev/tldx"
url: '"https://github.com/brandonyoungdev/tldx/releases/download/v{VERSION}/tldx_{VERSION}_windows_amd64.zip https://github.com/brandonyoungdev/tldx/releases/download/v{VERSION}/tldx_{VERSION}_windows_arm64.zip"'
- id: "BrechtSanders.WinLibs.MCF.UCRT"
repo: "brechtsanders/winlibs_mingw"
url: '"https://github.com/brechtsanders/winlibs_mingw/releases/download/15.1.0mcf-12.0.0-ucrt-r1/winlibs-i686-mcf-dwarf-gcc-15.1.0-mingw-w64ucrt-12.0.0-r1.zip https://github.com/brechtsanders/winlibs_mingw/releases/download/15.1.0mcf-12.0.0-ucrt-r1/winlibs-x86_64-mcf-seh-gcc-15.1.0-mingw-w64ucrt-12.0.0-r1.zip"'
- id: "BrechtSanders.WinLibs.POSIX.MSVCRT.LLVM"
repo: "brechtsanders/winlibs_mingw"
url: '"https://github.com/brechtsanders/winlibs_mingw/releases/download/14.2.0posix-19.1.7-12.0.0-msvcrt-r3/winlibs-i686-posix-dwarf-gcc-14.2.0-llvm-19.1.7-mingw-w64msvcrt-12.0.0-r3.zip https://github.com/brechtsanders/winlibs_mingw/releases/download/14.2.0posix-19.1.7-12.0.0-msvcrt-r3/winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.7-mingw-w64msvcrt-12.0.0-r3.zip"'
- id: "BrechtSanders.WinLibs.POSIX.UCRT.LLVM"
repo: "brechtsanders/winlibs_mingw"
url: '"https://github.com/brechtsanders/winlibs_mingw/releases/download/14.2.0posix-19.1.1-12.0.0-ucrt-r2/winlibs-i686-posix-dwarf-gcc-14.2.0-llvm-19.1.1-mingw-w64ucrt-12.0.0-r2.zip https://github.com/brechtsanders/winlibs_mingw/releases/download/14.2.0posix-19.1.1-12.0.0-ucrt-r2/winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.1-mingw-w64ucrt-12.0.0-r2.zip"'
- id: "BRL-CAD.brlcad"
repo: "BRL-CAD/brlcad"
url: "https://github.com/BRL-CAD/brlcad/releases/download/rel-7-42-0/BRL-CAD_{VERSION}_win64.exe"
- id: "bronya0.Kafka-King"
repo: "Bronya0/Kafka-King"
url: "https://github.com/Bronya0/Kafka-King/releases/download/v{VERSION}/kafka-King-v{VERSION}-windows-2022.zip"
- id: "BrowserStackInc.Requestly"
repo: "requestly/requestly-desktop-app"
url: "https://github.com/requestly/requestly-desktop-app/releases/download/v{VERSION}/Requestly-Setup-{VERSION}.exe"
- id: "browsh.browsh"
repo: "browsh-org/browsh"
url: '"https://github.com/browsh-org/browsh/releases/download/v{VERSION}/browsh_{VERSION}_windows_386.exe https://github.com/browsh-org/browsh/releases/download/v{VERSION}/browsh_{VERSION}_windows_amd64.exe https://github.com/browsh-org/browsh/releases/download/v{VERSION}/browsh_{VERSION}_windows_armv6.exe https://github.com/browsh-org/browsh/releases/download/v{VERSION}/browsh_{VERSION}_windows_armv7.exe"'
- id: "BryanCandi.BandwidthCalculator"
repo: "bryancandi/WinGet-Releases"
url: "https://github.com/bryancandi/WinGet-Releases/releases/download/BandwidthCalculator-1.2.0/BandwidthCalculatorInstaller.msi"
- id: "bsharper.ATVDesktopRemote"
repo: "bsharper/atv-desktop-remote"
url: "https://github.com/bsharper/atv-desktop-remote/releases/download/v{VERSION}/ATV.Remote.Setup.{VERSION}.exe"
- id: "BtbN.FFmpeg.GPL.5.1"
repo: "BtbN/FFmpeg-Builds"
url: "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-01-31-12-58/ffmpeg-n5.1.6-16-g6e63e49496-win64-gpl-5.1.zip"
- id: "BtbN.FFmpeg.GPL.6.1"
repo: "BtbN/FFmpeg-Builds"
url: "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-08-31-13-00/ffmpeg-n6.1.3-win64-gpl-6.1.zip"
- id: "BtbN.FFmpeg.GPL.7.1"
repo: "BtbN/FFmpeg-Builds"
url: '"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n7.1.3-35-g419cdf9dcc-win64-gpl-7.1.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n7.1.3-35-g419cdf9dcc-winarm64-gpl-7.1.zip"'
- id: "BtbN.FFmpeg.GPL.8.0"
repo: "BtbN/FFmpeg-Builds"
url: '"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n8.0.1-48-g0592be14ff-win64-gpl-8.0.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n8.0.1-48-g0592be14ff-winarm64-gpl-8.0.zip"'
- id: "BtbN.FFmpeg.GPL.Shared.5.1"
repo: "BtbN/FFmpeg-Builds"
url: "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-01-31-12-58/ffmpeg-n5.1.6-16-g6e63e49496-win64-gpl-shared-5.1.zip"
- id: "BtbN.FFmpeg.GPL.Shared.6.1"
repo: "BtbN/FFmpeg-Builds"
url: "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-08-31-13-00/ffmpeg-n6.1.3-win64-gpl-shared-6.1.zip"
- id: "BtbN.FFmpeg.GPL.Shared.7.1"
repo: "BtbN/FFmpeg-Builds"
url: '"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n7.1.3-35-g419cdf9dcc-win64-gpl-shared-7.1.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n7.1.3-35-g419cdf9dcc-winarm64-gpl-shared-7.1.zip"'
- id: "BtbN.FFmpeg.GPL.Shared.8.0"
repo: "BtbN/FFmpeg-Builds"
url: '"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-12-31-14-28/ffmpeg-n8.0.1-34-gbfa334de42-win64-gpl-shared-8.0.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-12-31-14-28/ffmpeg-n8.0.1-34-gbfa334de42-winarm64-gpl-shared-8.0.zip"'
- id: "BtbN.FFmpeg.LGPL.5.1"
repo: "BtbN/FFmpeg-Builds"
url: "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-01-31-12-58/ffmpeg-n5.1.6-16-g6e63e49496-win64-lgpl-5.1.zip"
- id: "BtbN.FFmpeg.LGPL.6.1"
repo: "BtbN/FFmpeg-Builds"
url: "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-08-31-13-00/ffmpeg-n6.1.3-win64-lgpl-6.1.zip"
- id: "BtbN.FFmpeg.LGPL.7.1"
repo: "BtbN/FFmpeg-Builds"
url: '"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n7.1.3-35-g419cdf9dcc-win64-lgpl-7.1.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n7.1.3-35-g419cdf9dcc-winarm64-lgpl-7.1.zip"'
- id: "BtbN.FFmpeg.LGPL.8.0"
repo: "BtbN/FFmpeg-Builds"
url: '"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n8.0.1-48-g0592be14ff-win64-lgpl-8.0.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n8.0.1-48-g0592be14ff-winarm64-lgpl-8.0.zip"'
- id: "BtbN.FFmpeg.LGPL.Shared.5.1"
repo: "BtbN/FFmpeg-Builds"
url: "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2024-12-31-13-02/ffmpeg-n5.1.6-11-gcde3c5fc0c-win64-lgpl-shared-5.1.zip"
- id: "BtbN.FFmpeg.LGPL.Shared.6.1"
repo: "BtbN/FFmpeg-Builds"
url: "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-08-31-13-00/ffmpeg-n6.1.3-win64-lgpl-shared-6.1.zip"
- id: "BtbN.FFmpeg.LGPL.Shared.7.1"
repo: "BtbN/FFmpeg-Builds"
url: '"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n7.1.3-35-g419cdf9dcc-win64-lgpl-shared-7.1.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n7.1.3-35-g419cdf9dcc-winarm64-lgpl-shared-7.1.zip"'
- id: "BtbN.FFmpeg.LGPL.Shared.8.0"
repo: "BtbN/FFmpeg-Builds"
url: '"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n8.0.1-48-g0592be14ff-win64-lgpl-shared-8.0.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2026-01-31-12-57/ffmpeg-n8.0.1-48-g0592be14ff-winarm64-lgpl-shared-8.0.zip"'
- id: "btpf.Alexandria"
repo: "btpf/Alexandria"
url: "https://github.com/btpf/Alexandria/releases/download/v{VERSION}/Alexandria_{VERSION}_x64_en-US.msi"
- id: "Builtbybel.Winslop"
repo: "builtbybel/Winslop"
url: "https://github.com/builtbybel/Winslop/releases/download/{VERSION}/Winslop-{VERSION}.zip"
- id: "buxuku.SmartSub.CUDA.12.4"
repo: "buxuku/SmartSub"
url: '"https://github.com/buxuku/SmartSub/releases/download/v{VERSION}/SmartSub_Windows_{VERSION}_x64_12.4.0_generic.exe https://github.com/buxuku/SmartSub/releases/download/v{VERSION}/SmartSub_Windows_{VERSION}_x64_12.4.0_generic.exe"'
- id: "buxuku.SmartSub.CUDA.12.4.Optimized"
repo: "buxuku/SmartSub"
url: '"https://github.com/buxuku/SmartSub/releases/download/v{VERSION}/SmartSub_Windows_{VERSION}_x64_12.4.0_optimized.exe https://github.com/buxuku/SmartSub/releases/download/v{VERSION}/SmartSub_Windows_{VERSION}_x64_12.4.0_optimized.exe"'
- id: "ByteDance.UI-TARS"
repo: "bytedance/UI-TARS-desktop"
url: "https://github.com/bytedance/UI-TARS-desktop/releases/download/v{VERSION}/UI-TARS-{VERSION}-Setup.exe"
- id: "ByteNess.AWSVault"
repo: "ByteNess/aws-vault"
url: '"https://github.com/ByteNess/aws-vault/releases/download/v{VERSION}/aws-vault-windows-amd64.exe https://github.com/ByteNess/aws-vault/releases/download/v{VERSION}/aws-vault-windows-arm64.exe"'
- id: "c0re100.qBittorrent-Enhanced-Edition"
repo: "c0re100/qBittorrent-Enhanced-Edition"
url: "https://github.com/c0re100/qBittorrent-Enhanced-Edition/releases/download/release-{VERSION}/qbittorrent_enhanced_{VERSION}_x64_setup.exe"
- id: "CakeWallet.CakeWallet"
repo: "cake-tech/cake_wallet"
url: "https://github.com/cake-tech/cake_wallet/releases/download/v{VERSION}/Cake_Wallet_v{VERSION}_Windows.exe"
- id: "Calibrite.PROFILER"
repo: "LUMESCA/calibrite-profiler-releases"
url: "https://github.com/LUMESCA/calibrite-profiler-releases/releases/download/v{VERSION}/calibrite-PROFILER-Setup-{VERSION}.exe"
- id: "cameronrye.clarissa"
repo: "cameronrye/clarissa"
url: "https://github.com/cameronrye/clarissa/releases/download/v{VERSION}/clarissa-windows-x64.exe"
- id: "Camunda.Modeler"
repo: "camunda/camunda-modeler"
url: "https://github.com/camunda/camunda-modeler/releases/download/v{VERSION}/camunda-modeler-{VERSION}-win-x64.zip"
- id: "cangzhang.champ-r"
repo: "cangzhang/champ-r"
url: "https://github.com/cangzhang/champ-r/releases/download/v{VERSION}/ChampR-Setup-{VERSION}.exe"
- id: "Canonical.Multipass"
repo: "canonical/multipass"
url: "https://github.com/canonical/multipass/releases/download/v{VERSION}/multipass-{VERSION}+win-win64.msi"
- id: "CaprineLogic.CarePackage"
repo: "depthbomb/CarePackage"
url: "https://github.com/depthbomb/CarePackage/releases/download/4.3.1/carepackage_installer.exe"
- id: "Casey.Intermodal"
repo: "casey/intermodal"
url: '"https://github.com/casey/intermodal/releases/download/v{VERSION}/imdl-v{VERSION}-x86_64-pc-windows-msvc.zip https://github.com/casey/intermodal/releases/download/v{VERSION}/imdl-v{VERSION}-aarch64-pc-windows-msvc.zip"'
- id: "CatBraaain.winconfig"
repo: "CatBraaain/winconfig"
url: "https://github.com/CatBraaain/winconfig/releases/download/v{VERSION}/winconfig.exe"
- id: "ccccraz.cogmoteGO"
repo: "Ccccraz/cogmoteGO"
url: "https://github.com/Ccccraz/cogmoteGO/releases/download/v{VERSION}/cogmoteGO-windows-amd64-v{VERSION}.zip"
- id: "Cemu.Cemu"
repo: "cemu-project/Cemu"
url: "https://github.com/cemu-project/Cemu/releases/download/v{VERSION}/cemu-{VERSION}-windows-x64.zip"
- id: "cexll.codex-wrapper"
repo: "cexll/myclaude"
url: '"https://github.com/cexll/myclaude/releases/download/v{VERSION}/codex-wrapper-windows-amd64.exe https://github.com/cexll/myclaude/releases/download/v{VERSION}/codex-wrapper-windows-arm64.exe"'
- id: "ch.LosslessCut"
repo: "chrishuan9/LosslessCut-winget-rls"
url: "https://github.com/chrishuan9/LosslessCut-winget-rls/releases/download/losslesscut-v{VERSION}/losslesscut-v{VERSION}.zip"
- id: "Changepacks.Changepacks"
repo: "changepacks/changepacks"
url: "https://github.com/changepacks/changepacks/releases/download/changepacks(crates%2Fchangepacks%2FCargo.toml)%40{VERSION}/changepacks-windows-x86_64.exe"
- id: "Chatty.Chatty"
repo: "chatty/chatty"
url: "https://github.com/chatty/chatty/releases/download/v{VERSION}/Chatty_{VERSION}_win_standalone_setup.exe"
- id: "ChenQingYu.BF"
repo: "chen-qingyu/bf"
url: "https://github.com/chen-qingyu/bf/releases/download/v{VERSION}/bf-{VERSION}-win64.exe"
- id: "ChidiWilliams.Buzz"
repo: "chidiwilliams/buzz"
url: '"https://github.com/chidiwilliams/buzz/releases/download/v{VERSION}/Buzz-{VERSION}-windows.exe https://github.com/chidiwilliams/buzz/releases/download/v{VERSION}/Buzz-{VERSION}-windows.exe"'
- id: "chrisant996.Clink"
repo: "chrisant996/clink"
url: '"https://github.com/chrisant996/clink/releases/download/v{VERSION}/clink.{VERSION}.760de7_setup.exe https://github.com/chrisant996/clink/releases/download/v{VERSION}/clink.{VERSION}.760de7_setup.exe"'
- id: "ChrisRizzitello.BlackChocobo"
repo: "sithlord48/blackchocobo"
url: "https://github.com/sithlord48/blackchocobo/releases/download/v{VERSION}/Black_Chocobo-v{VERSION}-win64-installer.exe"
- id: "ChristianHohnstadt.xca"
repo: "chris2511/xca"
url: "https://github.com/chris2511/xca/releases/download/RELEASE.{VERSION}/xca-{VERSION}-win64.msi"
- id: "ChurchApps.FreeShow"
repo: "ChurchApps/FreeShow"
url: "https://github.com/ChurchApps/FreeShow/releases/download/v{VERSION}/FreeShow-{VERSION}-x64.exe"
- id: "Cinchoo.ChoEazyCopy"
repo: "Cinchoo/ChoEazyCopy"
url: "https://github.com/Cinchoo/ChoEazyCopy/releases/download/v{VERSION}/ChoEazyCopy.zip"
- id: "Cisco.ClamAV"
repo: "Cisco-Talos/clamav"
url: '"https://github.com/Cisco-Talos/clamav/releases/download/clamav-{VERSION}/clamav-{VERSION}.win.win32.msi https://github.com/Cisco-Talos/clamav/releases/download/clamav-{VERSION}/clamav-{VERSION}.win.x64.msi https://github.com/Cisco-Talos/clamav/releases/download/clamav-{VERSION}/clamav-{VERSION}.win.arm64.msi"'
- id: "ClipTeam.ClipCC.Beta"
repo: "Clipteam/clipcc-desktop"
url: '"https://github.com/Clipteam/clipcc-desktop/releases/download/{VERSION}/clipcc-{VERSION}-win-x64.exe https://github.com/Clipteam/clipcc-desktop/releases/download/{VERSION}/clipcc-{VERSION}-win-x64.exe https://github.com/Clipteam/clipcc-desktop/releases/download/{VERSION}/clipcc-{VERSION}-win-ia32.exe https://github.com/Clipteam/clipcc-desktop/releases/download/{VERSION}/clipcc-{VERSION}-win-ia32.exe"'
- id: "closeio.Close"
repo: "closeio/closeio-desktop-releases"
url: "https://github.com/closeio/closeio-desktop-releases/releases/download/v{VERSION}/Close-Setup-{VERSION}.exe"
- id: "Cloudflare.cloudflared"
repo: "cloudflare/cloudflared"
url: '"https://github.com/cloudflare/cloudflared/releases/download/{VERSION}/cloudflared-windows-amd64.msi https://github.com/cloudflare/cloudflared/releases/download/{VERSION}/cloudflared-windows-386.msi https://github.com/cloudflare/cloudflared/releases/download/{VERSION}/cloudflared-windows-amd64.exe https://github.com/cloudflare/cloudflared/releases/download/{VERSION}/cloudflared-windows-386.exe"'
- id: "Cloudreve.Cloudreve"
repo: "cloudreve/cloudreve"
url: '"https://github.com/cloudreve/cloudreve/releases/download/{VERSION}/cloudreve_{VERSION}_windows_amd64.zip https://github.com/cloudreve/cloudreve/releases/download/{VERSION}/cloudreve_{VERSION}_windows_arm64.zip"'
- id: "CNRISTI.MeshLab"
repo: "cnr-isti-vclab/meshlab"
url: "https://github.com/cnr-isti-vclab/meshlab/releases/download/MeshLab-{VERSION}/MeshLab{VERSION}-windows_x86_64.exe"
- id: "CNRISTI.RelightLab"
repo: "cnr-isti-vclab/relight"
url: "https://github.com/cnr-isti-vclab/relight/releases/download/RelightLab-{VERSION}/RelightLab{VERSION}-windows.exe"
- id: "Cockatrice.Cockatrice"
repo: "Cockatrice/Cockatrice"
url: "https://github.com/Cockatrice/Cockatrice/releases/download/2025-04-03-Release-{VERSION}/Cockatrice-Omenpath-{VERSION}-Win7.exe"
- id: "CodeF0x.ffzap"
repo: "CodeF0x/ffzap"
url: "https://github.com/CodeF0x/ffzap/releases/download/{VERSION}/ffzap.exe"
- id: "Coder.CoderDesktop"
repo: "coder/coder-desktop-windows"
url: '"https://github.com/coder/coder-desktop-windows/releases/download/v{VERSION}/CoderDesktop-{VERSION}-x64.exe https://github.com/coder/coder-desktop-windows/releases/download/v{VERSION}/CoderDesktop-{VERSION}-arm64.exe"'
- id: "codexu.NoteGen"
repo: "codexu/note-gen"
url: '"https://github.com/codexu/note-gen/releases/download/note-gen-v{VERSION}/NoteGen_{VERSION}_x64-setup.exe https://github.com/codexu/note-gen/releases/download/note-gen-v{VERSION}/NoteGen_{VERSION}_x64_en-US.msi"'
- id: "Codilime.Veles"
repo: "codilime/veles"
url: "https://github.com/codilime/veles/releases/download/{VERSION}.0.TIF/Veles_{VERSION}_64bit_Windows.exe"
- id: "CollapseLauncher.Collapse"
repo: "CollapseLauncher/Collapse"
url: "https://github.com/CollapseLauncher/Collapse/releases/download/CL-v{VERSION}/CollapseLauncher-stable-Setup.exe"
- id: "CollapseLauncher.Collapse.Preview"
repo: "CollapseLauncher/Collapse"
url: "https://github.com/CollapseLauncher/Collapse/releases/download/CL-v{VERSION}-pre/CollapseLauncher-preview-Setup.exe"
- id: "Coloryr.ColorMC"
repo: "Coloryr/ColorMC"
url: "https://github.com/Coloryr/ColorMC/releases/download/a29.2024.8.21-1/colormc-windows-a29-x64.msi"
- id: "commetchat.commet"
repo: "commetchat/commet"
url: "https://github.com/commetchat/commet/releases/download/v{VERSION}+hotfix.1/commet-windows.zip"
- id: "CondaForge.Mambaforge"
repo: "conda-forge/miniforge"
url: '"https://github.com/conda-forge/miniforge/releases/download/{VERSION}/Mambaforge-{VERSION}-Windows-x86_64.exe https://github.com/conda-forge/miniforge/releases/download/{VERSION}/Mambaforge-{VERSION}-Windows-x86_64.exe"'
- id: "CondaForge.Mambaforge.PyPy3"
repo: "conda-forge/miniforge"
url: '"https://github.com/conda-forge/miniforge/releases/download/{VERSION}/Mambaforge-pypy3-{VERSION}-Windows-x86_64.exe https://github.com/conda-forge/miniforge/releases/download/{VERSION}/Mambaforge-pypy3-{VERSION}-Windows-x86_64.exe"'
- id: "CondaForge.Miniforge3.PyPy3"
repo: "conda-forge/miniforge"
url: '"https://github.com/conda-forge/miniforge/releases/download/{VERSION}/Miniforge-pypy3-{VERSION}-Windows-x86_64.exe https://github.com/conda-forge/miniforge/releases/download/{VERSION}/Miniforge-pypy3-{VERSION}-Windows-x86_64.exe"'
- id: "ConfluentInc.Confluent-CLI"
repo: "confluentinc/cli"
url: "https://github.com/confluentinc/cli/releases/download/v{VERSION}/confluent_{VERSION}_windows_amd64.zip"
- id: "CongusBongus.CDogsSDL"
repo: "cxong/cdogs-sdl"
url: "https://github.com/cxong/cdogs-sdl/releases/download/{VERSION}/C-Dogs.SDL-{VERSION}-win32.exe"
- id: "Containers.PodmanTUI"
repo: "containers/podman-tui"
url: "https://github.com/containers/podman-tui/releases/download/v{VERSION}/podman-tui-release-windows_amd64.zip"
- id: "contour-terminal.Contour"
repo: "contour-terminal/contour"
url: "https://github.com/contour-terminal/contour/releases/download/v{VERSION}/contour-{VERSION}-win64.msi"
- id: "converse.converse"
repo: "conversejs/converse-desktop"
url: "https://github.com/conversejs/converse-desktop/releases/download/v{VERSION}/Converse.Desktop.Setup.{VERSION}.exe"
- id: "COPASI.COPASI"
repo: "copasi/COPASI"
url: "https://github.com/copasi/COPASI/releases/download/Build-295/COPASI-{VERSION}-Windows.exe"
- id: "Coq.CoqPlatform"
repo: "coq/platform"
url: "https://github.com/coq/platform/releases/download/2025.01.0/Coq-Platform-release-2025.01.0-version.8.19.2024.10-Windows-x86_64.exe"
- id: "Coq.CoqPlatform.Beta"
repo: "coq/platform"
url: "https://github.com/coq/platform/releases/download/2025.01.0/Coq-Platform-release-2025.01.0-version.8.19.2024.10-Windows-x86_64_UNSIGNED.exe"
- id: "Core-ai.PhoenixCode"
repo: "phcode-dev/phoenix-desktop"
url: "https://github.com/phcode-dev/phoenix-desktop/releases/download/prod-app-v{VERSION}/Phoenix.Code_{VERSION}_x64-setup.exe"
- id: "cornradio.pausemygame"
repo: "cornradio/pausemygame"
url: "https://github.com/cornradio/pausemygame/releases/download/v{VERSION}/pausemygame.exe"
- id: "Corona.Solar2D"
repo: "coronalabs/corona"
url: "https://github.com/coronalabs/corona/releases/download/3706/Solar2D-Windows-2024.3706.msi"
- id: "CorsixTH.CorsixTH"
repo: "CorsixTH/CorsixTH"
url: "https://github.com/CorsixTH/CorsixTH/releases/download/v{VERSION}/CorsixTHInstaller.exe"
- id: "cpvalente.ontime"
repo: "cpvalente/ontime"
url: "https://github.com/cpvalente/ontime/releases/download/v{VERSION}/ontime-win64.exe"
- id: "Crate-CI.Typos"
repo: "crate-ci/typos"
url: "https://github.com/crate-ci/typos/releases/download/v{VERSION}/typos-v{VERSION}-x86_64-pc-windows-msvc.zip"
- id: "Cretezy.lazyjj"
repo: "Cretezy/lazyjj"
url: "https://github.com/Cretezy/lazyjj/releases/download/v{VERSION}/lazyjj-v{VERSION}-x86_64-pc-windows-msvc.zip"
- id: "CryptoPro.Chromium-Gost"
repo: "deemru/Chromium-Gost"
url: '"https://github.com/deemru/Chromium-Gost/releases/download/{VERSION}/chromium-gost-{VERSION}-windows-386-installer.exe https://github.com/deemru/Chromium-Gost/releases/download/{VERSION}/chromium-gost-{VERSION}-windows-386-installer.exe https://github.com/deemru/Chromium-Gost/releases/download/{VERSION}/chromium-gost-{VERSION}-windows-amd64-installer.exe https://github.com/deemru/Chromium-Gost/releases/download/{VERSION}/chromium-gost-{VERSION}-windows-amd64-installer.exe"'
- id: "CryptoTrust.OnlyKeyApp"
repo: "trustcrypto/OnlyKey-App"
url: "https://github.com/trustcrypto/OnlyKey-App/releases/download/v{VERSION}/OnlyKey_{VERSION}.exe"
- id: "ctron.oidc"
repo: "ctron/oidc-cli"
url: '"https://github.com/ctron/oidc-cli/releases/download/v{VERSION}/oidc-x86_64-pc-windows-msvc.exe https://github.com/ctron/oidc-cli/releases/download/v{VERSION}/oidc-aarch64-pc-windows-msvc.exe"'
- id: "CubicSDR.CubicSDR"
repo: "cjcliffe/CubicSDR"
url: '"https://github.com/cjcliffe/CubicSDR/releases/download/{VERSION}/CubicSDR-{VERSION}-win64.exe https://github.com/cjcliffe/CubicSDR/releases/download/{VERSION}/CubicSDR-{VERSION}-win32.exe"'
- id: "CumulusMX.CumulusMX"
repo: "cumulusmx/CumulusMX"
url: '"https://github.com/cumulusmx/CumulusMX/releases/download/b4120/CumulusMXDist4120.zip https://github.com/cumulusmx/CumulusMX/releases/download/b4120/CumulusMXDist4120.zip"'
- id: "CuteChess.CuteChess"
repo: "cutechess/cutechess"
url: "https://github.com/cutechess/cutechess/releases/download/v{VERSION}/cutechess-{VERSION}-win64.zip"
- id: "Cyanfish.NAPS2.Prerelease"
repo: "cyanfish/naps2"
url: '"https://github.com/cyanfish/naps2/releases/download/v{VERSION}/naps2-{VERSION}-win-x86.msi https://github.com/cyanfish/naps2/releases/download/v{VERSION}/naps2-{VERSION}-win-x64.msi"'
- id: "CyberIntelSystems.CICB"
repo: "cyberintelsystems/cicb"
url: "https://github.com/cyberintelsystems/cicb/releases/download/v{VERSION}/CICBv2-Win-v{VERSION}.msi"
- id: "CyberTimon.RapidRAW"
repo: "CyberTimon/RapidRAW"
url: '"https://github.com/CyberTimon/RapidRAW/releases/download/v{VERSION}/01_RapidRAW_v{VERSION}_windows_x64.msi https://github.com/CyberTimon/RapidRAW/releases/download/v{VERSION}/01_RapidRAW_v{VERSION}_windows-11-arm_arm64.msi"'
- id: "D2L.BMX"
repo: "Brightspace/bmx"
url: '"https://github.com/Brightspace/bmx/releases/download/v{VERSION}/bmx-win-x64.zip https://github.com/Brightspace/bmx/releases/download/v{VERSION}/bmx-win-arm64.zip"'
- id: "danstis.rmstale"
repo: "danstis/rmstale"
url: '"https://github.com/danstis/rmstale/releases/download/v{VERSION}/rmstale_{VERSION}_Windows_x86_64.zip https://github.com/danstis/rmstale/releases/download/v{VERSION}/rmstale_{VERSION}_Windows_i386.zip https://github.com/danstis/rmstale/releases/download/v{VERSION}/rmstale_{VERSION}_Windows_arm64.zip"'
- id: "darktable.darktable"
repo: "darktable-org/darktable"
url: "https://github.com/darktable-org/darktable/releases/download/release-{VERSION}/darktable-{VERSION}-win64.exe"
- id: "Datadog.dd-trace-dotnet"
repo: "DataDog/dd-trace-dotnet"
url: "https://github.com/DataDog/dd-trace-dotnet/releases/download/v{VERSION}/datadog-dotnet-apm-{VERSION}-x64.msi"
- id: "DataPLANT.ArcCommander"
repo: "nfdi4plants/arcCommander"
url: "https://github.com/nfdi4plants/arcCommander/releases/download/Installer_v0.3.3/ArcCommanderInstaller.msi"
- id: "davidegiacometti.EdgeFavoritesForCmdPal"
repo: "davidegiacometti/CmdPal-Extensions"
url: '"https://github.com/davidegiacometti/CmdPal-Extensions/releases/download/ef-{VERSION}/DavideGiacometti.EdgeFavoritesForCmdPal_{VERSION}.0_x64__vmjk9v3vswc4e.msix https://github.com/davidegiacometti/CmdPal-Extensions/releases/download/ef-{VERSION}/DavideGiacometti.EdgeFavoritesForCmdPal_{VERSION}.0_arm64__vmjk9v3vswc4e.msix"'
- id: "davidegiacometti.VisualStudioForCmdPal"
repo: "davidegiacometti/CmdPal-Extensions"
url: '"https://github.com/davidegiacometti/CmdPal-Extensions/releases/download/vs-{VERSION}/DavideGiacometti.VisualStudioForCmdPal_{VERSION}.0_x64__vmjk9v3vswc4e.msix https://github.com/davidegiacometti/CmdPal-Extensions/releases/download/vs-{VERSION}/DavideGiacometti.VisualStudioForCmdPal_{VERSION}.0_arm64__vmjk9v3vswc4e.msix"'
- id: "DCSS.DungeonCrawlStoneSoup"
repo: "crawl/crawl"
url: '"https://github.com/crawl/crawl/releases/download/{VERSION}/dcss-{VERSION}-win32-installer.exe https://github.com/crawl/crawl/releases/download/{VERSION}/dcss-{VERSION}-win32-installer.exe"'
- id: "dechamps.FlexASIO"
repo: "dechamps/FlexASIO"
url: '"https://github.com/dechamps/FlexASIO/releases/download/flexasio-{VERSION}/FlexASIO-{VERSION}.exe https://github.com/dechamps/FlexASIO/releases/download/flexasio-{VERSION}/FlexASIO-{VERSION}.exe"'
- id: "Deep-Symmetry.beat-link-trigger"
repo: "Deep-Symmetry/beat-link-trigger"
url: "https://github.com/Deep-Symmetry/beat-link-trigger/releases/download/v{VERSION}/Beat-Link-Trigger-{VERSION}-Win64.msi"
- id: "DEIF.iectl"
repo: "deif/iectl"
url: '"https://github.com/deif/iectl/releases/download/v{VERSION}/iectl_{VERSION}_windows_amd64.zip https://github.com/deif/iectl/releases/download/v{VERSION}/iectl_{VERSION}_windows_arm64.zip"'
- id: "Deminimis.MinimalFirewall"
repo: "deminimis/minimalfirewall"
url: "https://github.com/deminimis/minimalfirewall/releases/download/v{VERSION}/Minimal.Firewall.exe"
- id: "Denby.Calculator"
repo: "palermostest25/Calculator"
url: "https://github.com/palermostest25/Calculator/releases/download/Calculator/Installer.Requires.Python.exe"
- id: "derceg.Explorer++"
repo: "derceg/explorerplusplus"
url: '"https://github.com/derceg/explorerplusplus/releases/download/version-{VERSION}/explorerpp_x86.zip https://github.com/derceg/explorerplusplus/releases/download/version-{VERSION}/explorerpp_x64.zip"'
- id: "DeSmuMETeam.DeSmuME"
repo: "TASEmulators/desmume"
url: "https://github.com/TASEmulators/desmume/releases/download/release_0_9_13/desmume-{VERSION}-win64.zip"
- id: "dev47apps.DroidCamOBSClient"
repo: "dev47apps/droidcam-obs-client"
url: "https://github.com/dev47apps/droidcam-obs-client/releases/download/droidcam-{VERSION}/DroidCam.Client.{VERSION}.exe"
- id: "developersu.ns-usbloader"
repo: "developersu/ns-usbloader"
url: "https://github.com/developersu/ns-usbloader/releases/download/v{VERSION}/Installer-{VERSION}.exe"
- id: "Devolutions.Jetsocat"
repo: "Devolutions/devolutions-gateway"
url: '"https://github.com/Devolutions/devolutions-gateway/releases/download/v{VERSION}/jetsocat_Windows_{VERSION}_x86_64.zip https://github.com/Devolutions/devolutions-gateway/releases/download/v{VERSION}/jetsocat_Windows_{VERSION}_arm64.zip"'
- id: "DifferentAI.OpenWork"
repo: "different-ai/openwork"
url: "https://github.com/different-ai/openwork/releases/download/v{VERSION}/openwork-desktop-windows-x64.msi"
- id: "Digimezzo.Dopamine.3"
repo: "digimezzo/dopamine"
url: "https://github.com/digimezzo/dopamine/releases/download/v{VERSION}/Dopamine-{VERSION}.exe"
- id: "Digimezzo.Knowte"
repo: "digimezzo/knowte"
url: "https://github.com/digimezzo/knowte/releases/download/v{VERSION}/Knowte-{VERSION}.exe"
- id: "digitalghost-dev.poke-cli"
repo: "digitalghost-dev/poke-cli"
url: '"https://github.com/digitalghost-dev/poke-cli/releases/download/v{VERSION}/poke-cli_Windows_i386.zip https://github.com/digitalghost-dev/poke-cli/releases/download/v{VERSION}/poke-cli_Windows_arm64.zip https://github.com/digitalghost-dev/poke-cli/releases/download/v{VERSION}/poke-cli_Windows_x86_64.zip"'
- id: "DimonSmart.PdfCropper"
repo: "DimonSmart/PdfCropper"
url: "https://github.com/DimonSmart/PdfCropper/releases/download/v{VERSION}/DimonSmart.PdfCropper.Cli.exe"
- id: "Diorser.LiteMonitor"
repo: "Diorser/LiteMonitor"
url: "https://github.com/Diorser/LiteMonitor/releases/download/v{VERSION}/LiteMonitor_v{VERSION}-win-x64.zip"
- id: "DiRoots.One"
repo: "DiRoots-Limited/DiRoots.One.Releases"
url: "https://github.com/DiRoots-Limited/DiRoots.One.Releases/releases/download/v{VERSION}/DiRoots.One-{VERSION}.exe"
- id: "Disservin.FastChess"
repo: "Disservin/fast-chess"
url: "https://github.com/Disservin/fast-chess/releases/download/v{VERSION}-alpha/fast-chess-windows-latest.zip"
- id: "divVerent.AAAAXY"
repo: "divVerent/aaaaxy"
url: "https://github.com/divVerent/aaaaxy/releases/download/v{VERSION}/aaaaxy-windows-amd64-v{VERSION}.zip"
- id: "DJ7NT.WaveLogGate"
repo: "wavelog/WaveLogGate"
url: "https://github.com/wavelog/WaveLogGate/releases/download/v{VERSION}/WaveLogGate-{VERSION}.Setup.exe"
- id: "Dlang.VisualD"
repo: "dlang/visuald"
url: "https://github.com/dlang/visuald/releases/download/v{VERSION}/VisualD-v{VERSION}-dmd-2.100.2-ldc2-1.30.0.exe"
- id: "dlbroadfoot.bb"
repo: "dlbroadfoot/bitbucket-cli"
url: '"https://github.com/dlbroadfoot/bitbucket-cli/releases/download/v{VERSION}/bb_{VERSION}_windows_386.msi https://github.com/dlbroadfoot/bitbucket-cli/releases/download/v{VERSION}/bb_{VERSION}_windows_amd64.msi https://github.com/dlbroadfoot/bitbucket-cli/releases/download/v{VERSION}/bb_{VERSION}_windows_arm64.msi"'
- id: "Dman95.SASM"
repo: "Dman95/SASM"
url: "https://github.com/Dman95/SASM/releases/download/v{VERSION}/SASMSetup3150.exe"
- id: "Docker.Buildx"
repo: "docker/buildx"
url: '"https://github.com/docker/buildx/releases/download/v{VERSION}/buildx-v{VERSION}.windows-amd64.exe https://github.com/docker/buildx/releases/download/v{VERSION}/buildx-v{VERSION}.windows-arm64.exe"'
- id: "donkrage.regpack"
repo: "donkrage/regpack"
url: "https://github.com/donkrage/regpack/releases/download/{VERSION}/regpack-{VERSION}.exe"
- id: "donmar.bonsai"
repo: "Mario185/bonsai"
url: "https://github.com/Mario185/bonsai/releases/download/release_{VERSION}/bonsai.exe"
- id: "DonutWare.Fladder"
repo: "DonutWare/Fladder"
url: '"https://github.com/DonutWare/Fladder/releases/download/v{VERSION}/Fladder-Windows-{VERSION}-Setup.exe https://github.com/DonutWare/Fladder/releases/download/v{VERSION}/Fladder-Windows-{VERSION}-Setup.exe"'
- id: "DonutWare.Fladder.Nightly"
repo: "DonutWare/Fladder"
url: '"https://github.com/DonutWare/Fladder/releases/download/nightly/Fladder-Windows-{VERSION}-nightly-Setup.exe https://github.com/DonutWare/Fladder/releases/download/nightly/Fladder-Windows-{VERSION}-nightly-Setup.exe"'
- id: "DoublOneStudios.Glucose"
repo: "rudi-q/glucose_media_player"
url: "https://github.com/rudi-q/glucose_media_player/releases/download/v{VERSION}/Glucose_Windows.exe"
- id: "dpaulat.supercell-wx"
repo: "dpaulat/supercell-wx"
url: "https://github.com/dpaulat/supercell-wx/releases/download/v{VERSION}-release/supercell-wx-v{VERSION}-windows-x64.msi"
- id: "Dr-Noob.cpufetch"
repo: "Dr-Noob/cpufetch"
url: "https://github.com/Dr-Noob/cpufetch/releases/download/v{VERSION}/cpufetch_x86-64_windows.exe"
- id: "DrygvalArtyom.DelAfterReboot"
repo: "Artyomka628/DelAfterReboot"
url: '"https://github.com/Artyomka628/DelAfterReboot/releases/download/v{VERSION}/DelAfterReboot-x64.msi https://github.com/Artyomka628/DelAfterReboot/releases/download/v{VERSION}/DelAfterReboot-x86.msi https://github.com/Artyomka628/DelAfterReboot/releases/download/v{VERSION}/DelAfterReboot-arm64.msi"'
- id: "DuckStudio.FufuDevTools"
repo: "DuckDuckStudio/Fufu_Dev_Tools"
url: '"https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Dev_Tools_Setup_{VERSION}.exe https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Dev_Tools_Setup_{VERSION}.exe https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Dev_Tools_Setup_{VERSION}.exe https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Dev_Tools_Setup_{VERSION}.exe https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Dev_Tools_Setup_{VERSION}.exe https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Tools_Dev_Tools_{VERSION}.zip https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Tools_Dev_Tools_{VERSION}.zip https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Tools_Dev_Tools_{VERSION}.zip https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Tools_Dev_Tools_{VERSION}.zip https://github.com/DuckDuckStudio/Fufu_Dev_Tools/releases/download/{VERSION}/Fufu_Tools_Dev_Tools_{VERSION}.zip"'
- id: "Duplicati.Duplicati.Beta"
repo: "duplicati/duplicati"
url: '"https://github.com/duplicati/duplicati/releases/download/v{VERSION}_beta_2025-01-22/duplicati-{VERSION}_beta_2025-01-22-win-x86-gui.msi https://github.com/duplicati/duplicati/releases/download/v{VERSION}_beta_2025-01-22/duplicati-{VERSION}_beta_2025-01-22-win-x64-gui.msi https://github.com/duplicati/duplicati/releases/download/v{VERSION}_beta_2025-01-22/duplicati-{VERSION}_beta_2025-01-22-win-arm64-gui.msi"'
- id: "duyxyz.PyDeploy"
repo: "duyxyz/PyDeploy"
url: "https://github.com/duyxyz/PyDeploy/releases/download/App/PyDeploy_Setup.exe"
- id: "dvcrn.markright"
repo: "dvcrn/markright"
url: '"https://github.com/dvcrn/markright/releases/download/{VERSION}/MarkRight_Windows32.exe https://github.com/dvcrn/markright/releases/download/{VERSION}/MarkRight_Windows64.exe"'
- id: "Dylibso.Extism.CLI"
repo: "extism/cli"
url: "https://github.com/extism/cli/releases/download/v{VERSION}/extism-v{VERSION}-windows-amd64.zip"
- id: "DynamoRIO.drmemory"
repo: "DynamoRIO/drmemory"
url: "https://github.com/DynamoRIO/drmemory/releases/download/cronbuild-{VERSION}/DrMemory-Windows-{VERSION}.zip"
- id: "DynamoRIO.DynamoRIO"
repo: "DynamoRIO/dynamorio"
url: "https://github.com/DynamoRIO/dynamorio/releases/download/cronbuild-{VERSION}/DynamoRIO-Windows-{VERSION}.zip"
- id: "Dyne.CJIT"
repo: "dyne/cjit"
url: '"https://github.com/dyne/cjit/releases/download/v{VERSION}/CJIT_install.exe https://github.com/dyne/cjit/releases/download/v{VERSION}/CJIT_install.exe"'
- id: "Dystroy.broot"
repo: "Canop/broot"
url: "https://github.com/Canop/broot/releases/download/v{VERSION}/broot_{VERSION}.zip"
- id: "dzonder.sshells"
repo: "dzonder/sshells"
url: "https://github.com/dzonder/sshells/releases/download/v{VERSION}/sshells.exe-v{VERSION}-x86_64-pc-windows-msvc.zip"
- id: "EastSun5566.HackDesk"
repo: "EastSun5566/hackdesk"
url: "https://github.com/EastSun5566/hackdesk/releases/download/hackdesk-v{VERSION}/HackDesk_{VERSION}_x64_en-US.msi"
- id: "EclipseAdoptium.Temurin.11.JDK"
repo: "adoptium/temurin11-binaries"
url: '"https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.29+7/OpenJDK11U-jdk_x86-32_windows_hotspot_11.0.29_7.msi https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.29+7/OpenJDK11U-jdk_x64_windows_hotspot_11.0.29_7.msi"'
- id: "EclipseAdoptium.Temurin.11.JRE"
repo: "adoptium/temurin11-binaries"
url: '"https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.29+7/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.29_7.msi https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.29+7/OpenJDK11U-jre_x64_windows_hotspot_11.0.29_7.msi"'
- id: "EclipseAdoptium.Temurin.16.JDK"
repo: "adoptium/temurin16-binaries"
url: '"https://github.com/adoptium/temurin16-binaries/releases/download/jdk-16.0.2+7/OpenJDK16U-jdk_x86-32_windows_hotspot_16.0.2_7.msi https://github.com/adoptium/temurin16-binaries/releases/download/jdk-16.0.2+7/OpenJDK16U-jdk_x64_windows_hotspot_16.0.2_7.msi"'
- id: "EclipseAdoptium.Temurin.17.JDK"
repo: "adoptium/temurin17-binaries"
url: "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.18+8/OpenJDK17U-jdk_x64_windows_hotspot_17.0.18_8.msi"
- id: "EclipseAdoptium.Temurin.17.JRE"
repo: "adoptium/temurin17-binaries"
url: "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.18+8/OpenJDK17U-jre_x64_windows_hotspot_17.0.18_8.msi"
- id: "EclipseAdoptium.Temurin.18.JDK"
repo: "adoptium/temurin18-binaries"
url: '"https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18.0.2.1+1/OpenJDK18U-jdk_x86-32_windows_hotspot_18.0.2.1_1.msi https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18.0.2.1+1/OpenJDK18U-jdk_x64_windows_hotspot_18.0.2.1_1.msi"'
- id: "EclipseAdoptium.Temurin.18.JRE"
repo: "adoptium/temurin18-binaries"
url: '"https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18.0.2.1+1/OpenJDK18U-jre_x86-32_windows_hotspot_18.0.2.1_1.msi https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18.0.2.1+1/OpenJDK18U-jre_x64_windows_hotspot_18.0.2.1_1.msi"'
- id: "EclipseAdoptium.Temurin.19.JDK"
repo: "adoptium/temurin19-binaries"
url: '"https://github.com/adoptium/temurin19-binaries/releases/download/jdk-19.0.2+7/OpenJDK19U-jdk_x86-32_windows_hotspot_19.0.2_7.msi https://github.com/adoptium/temurin19-binaries/releases/download/jdk-19.0.2+7/OpenJDK19U-jdk_x64_windows_hotspot_19.0.2_7.msi"'
- id: "EclipseAdoptium.Temurin.19.JRE"
repo: "adoptium/temurin19-binaries"
url: '"https://github.com/adoptium/temurin19-binaries/releases/download/jdk-19.0.2+7/OpenJDK19U-jre_x86-32_windows_hotspot_19.0.2_7.msi https://github.com/adoptium/temurin19-binaries/releases/download/jdk-19.0.2+7/OpenJDK19U-jre_x64_windows_hotspot_19.0.2_7.msi"'
- id: "EclipseAdoptium.Temurin.20.JDK"
repo: "adoptium/temurin20-binaries"
url: "https://github.com/adoptium/temurin20-binaries/releases/download/jdk-20.0.2+9/OpenJDK20U-jdk_x64_windows_hotspot_20.0.2_9.msi"
- id: "EclipseAdoptium.Temurin.20.JRE"
repo: "adoptium/temurin20-binaries"
url: "https://github.com/adoptium/temurin20-binaries/releases/download/jdk-20.0.2%2B9/OpenJDK20U-jre_x64_windows_hotspot_20.0.2_9.msi"
- id: "EclipseAdoptium.Temurin.21.JDK"
repo: "adoptium/temurin21-binaries"
url: '"https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10+7/OpenJDK21U-jdk_x64_windows_hotspot_21.0.10_7.msi https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10+7/OpenJDK21U-jdk_aarch64_windows_hotspot_21.0.10_7.msi"'
- id: "EclipseAdoptium.Temurin.21.JRE"
repo: "adoptium/temurin21-binaries"
url: '"https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10+7/OpenJDK21U-jre_x64_windows_hotspot_21.0.10_7.msi https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10+7/OpenJDK21U-jre_aarch64_windows_hotspot_21.0.10_7.msi"'
- id: "EclipseAdoptium.Temurin.22.JDK"
repo: "adoptium/temurin22-binaries"
url: "https://github.com/adoptium/temurin22-binaries/releases/download/jdk-22.0.2%2B9/OpenJDK22U-jdk_x64_windows_hotspot_22.0.2_9.msi"
- id: "EclipseAdoptium.Temurin.22.JRE"
repo: "adoptium/temurin22-binaries"
url: "https://github.com/adoptium/temurin22-binaries/releases/download/jdk-22.0.2%2B9/OpenJDK22U-jre_x64_windows_hotspot_22.0.2_9.msi"
- id: "EclipseAdoptium.Temurin.23.JDK"
repo: "adoptium/temurin23-binaries"
url: '"https://github.com/adoptium/temurin23-binaries/releases/download/jdk-23.0.2%2B7/OpenJDK23U-jdk_x64_windows_hotspot_23.0.2_7.msi https://github.com/adoptium/temurin23-binaries/releases/download/jdk-23.0.2%2B7/OpenJDK23U-jdk_aarch64_windows_hotspot_23.0.2_7.msi"'
- id: "EclipseAdoptium.Temurin.23.JRE"
repo: "adoptium/temurin23-binaries"
url: '"https://github.com/adoptium/temurin23-binaries/releases/download/jdk-23.0.2%2B7/OpenJDK23U-jre_x64_windows_hotspot_23.0.2_7.msi https://github.com/adoptium/temurin23-binaries/releases/download/jdk-23.0.2%2B7/OpenJDK23U-jre_aarch64_windows_hotspot_23.0.2_7.msi"'
- id: "EclipseAdoptium.Temurin.24.JDK"
repo: "adoptium/temurin24-binaries"
url: "https://github.com/adoptium/temurin24-binaries/releases/download/jdk-24.0.2+12/OpenJDK24U-jdk_x64_windows_hotspot_24.0.2_12.msi"
- id: "EclipseAdoptium.Temurin.24.JRE"
repo: "adoptium/temurin24-binaries"
url: "https://github.com/adoptium/temurin24-binaries/releases/download/jdk-24.0.2+12/OpenJDK24U-jre_x64_windows_hotspot_24.0.2_12.msi"
- id: "EclipseAdoptium.Temurin.25.JDK"
repo: "adoptium/temurin25-binaries"
url: "https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25.0.2+10/OpenJDK25U-jdk_x64_windows_hotspot_25.0.2_10.msi"
- id: "EclipseAdoptium.Temurin.25.JRE"
repo: "adoptium/temurin25-binaries"
url: "https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25.0.2+10/OpenJDK25U-jre_x64_windows_hotspot_25.0.2_10.msi"
- id: "EclipseAdoptium.Temurin.8.JDK"
repo: "adoptium/temurin8-binaries"
url: "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u472-b08/OpenJDK8U-jdk_x64_windows_hotspot_8u472b08.msi"
- id: "EclipseAdoptium.Temurin.8.JRE"
repo: "adoptium/temurin8-binaries"
url: '"https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u472-b08/OpenJDK8U-jre_x86-32_windows_hotspot_8u472b08.msi https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u472-b08/OpenJDK8U-jre_x64_windows_hotspot_8u472b08.msi"'
- id: "EclipseCommunity.r3dfox"
repo: "Eclipse-Community/r3dfox"
url: '"https://github.com/Eclipse-Community/r3dfox/releases/download/v{VERSION}/r3dfox-{VERSION}.en-US.win64.installer.exe https://github.com/Eclipse-Community/r3dfox/releases/download/v{VERSION}/r3dfox-{VERSION}.en-US.win32.installer.exe"'
- id: "EDCD.EliteDangerousMarketConnector"
repo: "EDCD/EDMarketConnector"
url: '"https://github.com/EDCD/EDMarketConnector/releases/download/Release%2F{VERSION}/EDMarketConnector_Installer_{VERSION}.exe https://github.com/EDCD/EDMarketConnector/releases/download/Release%2F{VERSION}/EDMarketConnector_Installer_{VERSION}.exe"'
- id: "EFF.Certbot"
repo: "certbot/certbot"
url: "https://github.com/certbot/certbot/releases/download/v{VERSION}/certbot-beta-installer-win_amd64_signed.exe"
- id: "Eigent.Eigent"
repo: "eigent-ai/eigent"
url: "https://github.com/eigent-ai/eigent/releases/download/v{VERSION}/Eigent.Setup.{VERSION}.exe"
- id: "EKA2L1.EKA2L1"
repo: "EKA2L1/EKA2L1"
url: "https://github.com/EKA2L1/EKA2L1/releases/download/continous/EKA2L1-Windows-x86_64.zip"
- id: "elbereth.DragonUnPACKer"
repo: "elbereth/DragonUnPACKer"
url: "https://github.com/elbereth/DragonUnPACKer/releases/download/release-56240-exedrachac/dup562exedrachac-setup.exe"
- id: "electerm.electerm"
repo: "electerm/electerm"
url: '"https://github.com/electerm/electerm/releases/download/v{VERSION}/electerm-{VERSION}-win-x64-installer.exe https://github.com/electerm/electerm/releases/download/v{VERSION}/electerm-{VERSION}-win-x64-installer.exe"'
- id: "elieserdejesus.JamTaba"
repo: "elieserdejesus/JamTaba"
url: "https://github.com/elieserdejesus/JamTaba/releases/download/v2.{VERSION}.{VERSION}6/Jamtaba.2.64.bits.installer.exe"
- id: "ElijahLopez.MusicCaster"
repo: "elibroftw/music-caster"
url: "https://github.com/elibroftw/music-caster/releases/download/v{VERSION}/Music.Caster.Setup.exe"
- id: "EliWeitzman.ETT-Admin"
repo: "eliweitzman/EnterpriseTechTool"
url: "https://github.com/eliweitzman/EnterpriseTechTool/releases/download/{VERSION}/ETT-Admin.Installer.exe"
- id: "Elk.Elk"
repo: "elk-zone/elk-native"
url: "https://github.com/elk-zone/elk-native/releases/download/elk-native-v{VERSION}/Elk_{VERSION}_windows_x86_64.msi"
- id: "eloston.ungoogled-chromium"
repo: "ungoogled-software/ungoogled-chromium-windows"
url: '"https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_installer_x64.exe https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_installer_x64.exe https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_windows_x64.zip https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_installer_x86.exe https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_installer_x86.exe https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_windows_x86.zip https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_installer_arm64.exe https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_installer_arm64.exe https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/{VERSION}-1.1/ungoogled-chromium_{VERSION}-1.1_windows_arm64.zip"'
- id: "ElyPrismLauncher.ElyPrismLauncher"
repo: "ElyPrismLauncher/ElyPrismLauncher"
url: '"https://github.com/ElyPrismLauncher/ElyPrismLauncher/releases/download/{VERSION}/ElyPrismLauncher-Windows-MSVC-Setup-{VERSION}.exe https://github.com/ElyPrismLauncher/ElyPrismLauncher/releases/download/{VERSION}/ElyPrismLauncher-Windows-MSVC-arm64-Setup-{VERSION}.exe"'
- id: "emuell.restic-browser"
repo: "emuell/restic-browser"
url: "https://github.com/emuell/restic-browser/releases/download/v{VERSION}/Restic-Browser-v{VERSION}-windows.zip"
- id: "eMule.eMule.community"
repo: "irwir/eMule"
url: '"https://github.com/irwir/eMule/releases/download/eMule_v{VERSION}-community/eMule{VERSION}-Installer.exe https://github.com/irwir/eMule/releases/download/eMule_v{VERSION}-community/eMule{VERSION}-Installer64.exe"'
- id: "EnCroissant.EnCroissant"
repo: "franciscoBSalgueiro/en-croissant"
url: "https://github.com/franciscoBSalgueiro/en-croissant/releases/download/v{VERSION}/en-croissant_{VERSION}_x64-setup.exe"
- id: "EndlessSky.EndlessSky"
repo: "endless-sky/endless-sky"
url: "https://github.com/endless-sky/endless-sky/releases/download/v{VERSION}/EndlessSky-v{VERSION}-win64-setup.exe"
- id: "ENIAC-Tech.FlexDesigner"
repo: "ENIAC-Tech/FlexDesigner"
url: "https://github.com/ENIAC-Tech/FlexDesigner/releases/download/{VERSION}/flex-designer-{VERSION}-setup.exe"
- id: "EnsoAnalytics.Enso"
repo: "enso-org/enso"
url: "https://github.com/enso-org/enso/releases/download/{VERSION}/enso-win-x64-{VERSION}.exe"
- id: "ente-io.auth-desktop"
repo: "ente-io/ente"
url: '"https://github.com/ente-io/ente/releases/download/auth-v{VERSION}/ente-auth-v{VERSION}-installer.exe https://github.com/ente-io/ente/releases/download/auth-v{VERSION}/ente-auth-v{VERSION}-installer.exe"'
- id: "ente-io.ente.CLI"
repo: "ente-io/ente"
url: '"https://github.com/ente-io/ente/releases/download/cli-v{VERSION}/ente-cli-v{VERSION}-windows-386.zip https://github.com/ente-io/ente/releases/download/cli-v{VERSION}/ente-cli-v{VERSION}-windows-amd64.zip https://github.com/ente-io/ente/releases/download/cli-v{VERSION}/ente-cli-v{VERSION}-windows-arm64.zip"'
- id: "ErikAraojo.FintX"
repo: "namigop/FintX"
url: '"https://github.com/namigop/FintX/releases/download/rel-v2.2/FintXSetup-win-x64.exe https://github.com/namigop/FintX/releases/download/rel-v2.2/FintXSetup-win-x64.exe"'
- id: "erikbra.grate"
repo: "erikbra/grate"
url: "https://github.com/erikbra/grate/releases/download/{VERSION}/grate-msi-win-x64-{VERSION}.msi"
- id: "Erlang.ErlangOTP"
repo: "erlang/otp"
url: '"https://github.com/erlang/otp/releases/download/OTP-{VERSION}/otp_win32_{VERSION}.exe https://github.com/erlang/otp/releases/download/OTP-{VERSION}/otp_win64_{VERSION}.exe"'
- id: "Ethersphere.Swarm-Desktop"
repo: "ethersphere/swarm-desktop"
url: "https://github.com/ethersphere/swarm-desktop/releases/download/v{VERSION}/Swarm.Desktop-{VERSION}.Setup.exe"
- id: "EugeneZrazhevsky.WeblocOpener"
repo: "benchdoos/WeblocOpener"
url: "https://github.com/benchdoos/WeblocOpener/releases/download/v{VERSION}.0/WeblocOpenerSetup.exe"
- id: "evansmurithi.cloak"
repo: "evansmurithi/cloak"
url: '"https://github.com/evansmurithi/cloak/releases/download/v{VERSION}/cloak-v{VERSION}-x86_64-pc-windows-msvc.zip https://github.com/evansmurithi/cloak/releases/download/v{VERSION}/cloak-v{VERSION}-i686-pc-windows-msvc.zip"'
- id: "EVEMonDevelopmentTeam.EVEMon"
repo: "mgoeppner/evemon"
url: "https://github.com/mgoeppner/evemon/releases/download/{VERSION}/EVEMon-install-{VERSION}.exe"
- id: "Everless321.dYm"
repo: "Everless321/dYm"
url: "https://github.com/Everless321/dYm/releases/download/v{VERSION}/dym-{VERSION}-setup.exe"
- id: "Exelearning.Exelearning"
repo: "exelearning/exelearning"
url: "https://github.com/exelearning/exelearning/releases/download/v{VERSION}/eXeLearning-Setup-{VERSION}.exe"
- id: "Exercism.CLI"
repo: "exercism/cli"
url: '"https://github.com/exercism/cli/releases/download/v{VERSION}/exercism-{VERSION}-windows-32bit.zip https://github.com/exercism/cli/releases/download/v{VERSION}/exercism-{VERSION}-windows-64bit.zip https://github.com/exercism/cli/releases/download/v{VERSION}/exercism-{VERSION}-windows-arm64.zip"'
- id: "Exoscale.CLI"
repo: "exoscale/cli"
url: "https://github.com/exoscale/cli/releases/download/v{VERSION}/exoscale-cli_{VERSION}_windows_amd64.zip"
- id: "ExpressLRS.ExpressLRS-Configurator"
repo: "ExpressLRS/ExpressLRS-Configurator"
url: '"https://github.com/ExpressLRS/ExpressLRS-Configurator/releases/download/v{VERSION}/ExpressLRS-Configurator-Setup-{VERSION}.exe https://github.com/ExpressLRS/ExpressLRS-Configurator/releases/download/v{VERSION}/ExpressLRS-Configurator-Setup-{VERSION}.exe"'
- id: "f3d-app.f3d"
repo: "f3d-app/f3d"
url: "https://github.com/f3d-app/f3d/releases/download/v{VERSION}/F3D-{VERSION}-Windows-x86_64.exe"
- id: "f4exb.sdrangel"
repo: "f4exb/sdrangel"
url: "https://github.com/f4exb/sdrangel/releases/download/v{VERSION}/sdrangel-{VERSION}-win64.exe"
- id: "facebook.watchman"
repo: "facebook/watchman"
url: "https://github.com/facebook/watchman/releases/download/v{VERSION}/watchman-v{VERSION}-windows.zip"
- id: "FajoX1.FAgramDesktop"
repo: "FajoX1/fagramdesktop"
url: '"https://github.com/FajoX1/fagramdesktop/releases/download/v{VERSION}/FAgram_x32_installer.exe https://github.com/FajoX1/fagramdesktop/releases/download/v{VERSION}/FAgram_x32_installer.exe https://github.com/FajoX1/fagramdesktop/releases/download/v{VERSION}/FAgram_x64_installer.exe https://github.com/FajoX1/fagramdesktop/releases/download/v{VERSION}/FAgram_x64_installer.exe"'
- id: "Faradey.Proga-CMD"
repo: "Faradey1751V2/proga_cmd_ui"
url: "https://github.com/Faradey1751V2/proga_cmd_ui/releases/download/proga_cmd_V-{VERSION}/proga_install.exe"
- id: "Faster3ck.Converseen"
repo: "Faster3ck/Converseen"
url: "https://github.com/Faster3ck/Converseen/releases/download/v{VERSION}/Converseen-{VERSION}-1-win64-setup.msi"
- id: "FelipeSantos.ClipboardSync"
repo: "felipecrs/clipboard-sync"
url: "https://github.com/felipecrs/clipboard-sync/releases/download/v{VERSION}/Clipboard.Sync-{VERSION}.Setup.exe"
- id: "Ferdium.Ferdium.Beta"
repo: "ferdium/ferdium-app"
url: '"https://github.com/ferdium/ferdium-app/releases/download/v{VERSION}/Ferdium-win-AutoSetup-{VERSION}-arm64.exe https://github.com/ferdium/ferdium-app/releases/download/v{VERSION}/Ferdium-win-AutoSetup-{VERSION}-x64.exe https://github.com/ferdium/ferdium-app/releases/download/v{VERSION}/Ferdium-win-AutoSetup-{VERSION}-ia32.exe"'
- id: "FernandoMaclen.Hollama"
repo: "fmaclen/hollama"
url: "https://github.com/fmaclen/hollama/releases/download/{VERSION}/Hollama_{VERSION}-win-x64.exe"
- id: "fifty-six.Scarab"
repo: "fifty-six/Scarab"
url: "https://github.com/fifty-six/Scarab/releases/download/v{VERSION}/windows.zip"
- id: "fio.fio"
repo: "axboe/fio"
url: '"https://github.com/axboe/fio/releases/download/fio-{VERSION}/fio-{VERSION}-x86.msi https://github.com/axboe/fio/releases/download/fio-{VERSION}/fio-{VERSION}-x64.msi"'
- id: "FirebirdProject.Firebird.3"
repo: "FirebirdSQL/firebird"
url: '"https://github.com/FirebirdSQL/firebird/releases/download/v3.0.13/Firebird-{VERSION}-0-x64.exe https://github.com/FirebirdSQL/firebird/releases/download/v3.0.13/Firebird-{VERSION}-0-Win32.exe"'
- id: "FirebirdProject.Firebird.4"
repo: "FirebirdSQL/firebird"
url: '"https://github.com/FirebirdSQL/firebird/releases/download/v4.0.6/Firebird-{VERSION}-0-x64.exe https://github.com/FirebirdSQL/firebird/releases/download/v4.0.6/Firebird-{VERSION}-0-Win32.exe"'
- id: "Firefox2000000.MoonscraperChartEditor"
repo: "FireFox2000000/Moonscraper-Chart-Editor"
url: "https://github.com/FireFox2000000/Moonscraper-Chart-Editor/releases/download/{VERSION}/MSCE.{VERSION}.Installer.Win64.exe"
- id: "Firezone.Client.GUI"
repo: "firezone/firezone"
url: "https://github.com/firezone/firezone/releases/download/gui-client-{VERSION}/firezone-client-gui-windows_{VERSION}_x86_64.msi"
- id: "Firezone.Client.Headless"
repo: "firezone/firezone"
url: "https://github.com/firezone/firezone/releases/download/headless-client-{VERSION}/firezone-client-headless-windows_{VERSION}_x86_64.exe"
- id: "Fishstrap.Fishstrap"
repo: "fishstrap/fishstrap"
url: "https://github.com/fishstrap/fishstrap/releases/download/v{VERSION}/Fishstrap-v{VERSION}.exe"
- id: "Fission.Fission.CLI"
repo: "fission/fission"
url: "https://github.com/fission/fission/releases/download/v{VERSION}/fission-v{VERSION}-windows-amd64.exe"
- id: "FlaUI.FlaUInspect"
repo: "FlaUI/FlaUInspect"
url: "https://github.com/FlaUI/FlaUInspect/releases/download/v{VERSION}/FlaUInspect_{VERSION}.zip"
- id: "Fleet.fleetctl"
repo: "fleetdm/fleet"
url: '"https://github.com/fleetdm/fleet/releases/download/fleet-v{VERSION}/fleetctl_v{VERSION}_windows_amd64.zip https://github.com/fleetdm/fleet/releases/download/fleet-v{VERSION}/fleetctl_v{VERSION}_windows_arm64.zip"'
- id: "FleetingClarityStudios.QuickFixMyPic"
repo: "Echostorm44/QuickFixMyPic"
url: "https://github.com/Echostorm44/QuickFixMyPic/releases/download/{VERSION}.0/SetupQuickFixMyPic.msi"
- id: "Fleex255.PolicyPlus"
repo: "Fleex255/PolicyPlus"
url: "https://github.com/Fleex255/PolicyPlus/releases/download/October2025/PolicyPlus.exe"
- id: "Flowify.Flowify"
repo: "naplon74/flowify-music-player"
url: "https://github.com/naplon74/flowify-music-player/releases/download/v{VERSION}/Flowify-Setup-{VERSION}.exe"
- id: "ForgQi.biliup-app"
repo: "biliup/biliup-app"
url: '"https://github.com/biliup/biliup-app/releases/download/app-v{VERSION}/biliup-app_{VERSION}_x64-setup.exe https://github.com/biliup/biliup-app/releases/download/app-v{VERSION}/biliup-app_{VERSION}_x64_en-US.msi"'
- id: "fosslife.truthy"
repo: "fosslife/truthy"
url: "https://github.com/fosslife/truthy/releases/download/app-v{VERSION}/truthy_{VERSION}_x64_en-US.msi"
- id: "FredEmmott.HandTrackedCockpitClicking"
repo: "fredemmott/HTCC"
url: "https://github.com/fredemmott/HTCC/releases/download/v{VERSION}/HTCC-v{VERSION}.msi"
- id: "freifunkMUC.FreifunkMeet"
repo: "freifunkMUC/jitsi-meet-electron"
url: "https://github.com/freifunkMUC/jitsi-meet-electron/releases/download/v{VERSION}/ffmuc-meet.exe"
- id: "Friction.Friction"
repo: "friction2d/friction"
url: '"https://github.com/friction2d/friction/releases/download/v{VERSION}/friction-{VERSION}-setup-win64.exe https://github.com/friction2d/friction/releases/download/v{VERSION}/friction-{VERSION}-setup-win64.exe"'
- id: "FrostWire.FrostWire"
repo: "frostwire/frostwire"
url: "https://github.com/frostwire/frostwire/releases/download/frostwire-desktop-6.12.0-build-318/frostwire-6.12.0.windows.github.exe"
- id: "FSFhu.Hunspell"
repo: "mlt/hunspell"
url: "https://github.com/mlt/hunspell/releases/download/tst/hunspell-msvc-Release-x64.zip"
- id: "fsprojects.Paket"
repo: "fsprojects/Paket"
url: "https://github.com/fsprojects/Paket/releases/download/9.0.2/paket.exe"
- id: "fstl.fstl"
repo: "fstl-app/fstl"
url: "https://github.com/fstl-app/fstl/releases/download/v{VERSION}/fstl-{VERSION}-win64.exe"
- id: "fupdec.mediaChips"
repo: "fupdec/mediaChips"
url: "https://github.com/fupdec/mediaChips/releases/download/v{VERSION}-beta/mediaChips.v{VERSION}.Windows.Installer.exe"
- id: "futrime.lip"
repo: "futrime/lip"
url: '"https://github.com/futrime/lip/releases/download/v{VERSION}/lip-cli-win-x64-en-US.msi https://github.com/futrime/lip/releases/download/v{VERSION}/lip-cli-win-x64-zh-CN.msi https://github.com/futrime/lip/releases/download/v{VERSION}/lip-cli-win-arm64-en-US.msi https://github.com/futrime/lip/releases/download/v{VERSION}/lip-cli-win-arm64-zh-CN.msi"'
- id: "G0rocks.DesktopShortcutRemover"
repo: "G0rocks/desktop_shortcut_remover"
url: "https://github.com/G0rocks/desktop_shortcut_remover/releases/download/{VERSION}/desktop_shortcut_remover.exe"
- id: "GAM-Team.gam"
repo: "GAM-team/GAM"
url: '"https://github.com/GAM-team/GAM/releases/download/v{VERSION}/gam-{VERSION}-windows-x86_64.msi https://github.com/GAM-team/GAM/releases/download/v{VERSION}/gam-{VERSION}-windows-arm64.msi"'
- id: "GAM-Team.GotYourBack"
repo: "GAM-team/got-your-back"
url: '"https://github.com/GAM-team/got-your-back/releases/download/v{VERSION}/gyb-{VERSION}-windows-x86_64.msi https://github.com/GAM-team/got-your-back/releases/download/v{VERSION}/gyb-{VERSION}-windows-x86_64.zip"'