-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
lifter.config
853 lines (715 loc) · 19.4 KB
/
lifter.config
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
[template:github_api_latest]
method = api_json
page_url = https://api.github.com/repos/{project}/releases/latest
version_tag = $.tag_name
anchor_tag = $.assets.*.browser_download_url
[tokei]
template = github_api_latest
project = XAMPPRocky/tokei
anchor_text = tokei-x86_64-unknown-linux-gnu.tar.gz
target_filename_to_extract_from_archive = tokei
version = v12.1.2
[tokei.exe]
template = github_api_latest
project = XAMPPRocky/tokei
anchor_text = tokei-x86_64-pc-windows-msvc.exe
version = v12.1.2
[fzf]
template = github_api_latest
project = junegunn/fzf
anchor_text = fzf-(\d+\.\d+\.\d+)-linux_amd64.tar.gz
version = 0.28.0
[fzf.exe]
template = github_api_latest
project = junegunn/fzf
anchor_text = fzf-(\d+\.\d+\.\d+)-windows_amd64.zip
version = 0.28.0
[starship]
template = github_api_latest
project = starship/starship
anchor_text = starship-x86_64-unknown-linux-musl.tar.gz
version = v0.55.0
[starship.exe]
template = github_api_latest
project = starship/starship
anchor_text = starship-x86_64-pc-windows-msvc.zip
version = v0.55.0
[ripgrep]
template = github_api_latest
project = BurntSushi/ripgrep
anchor_text = ripgrep-(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
target_filename_to_extract_from_archive = rg
version = 13.0.0
[ripgrep Windows]
template = github_api_latest
project = BurntSushi/ripgrep
anchor_text = ripgrep-(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
target_filename_to_extract_from_archive = rg.exe
version = 13.0.0
[xsv]
template = github_api_latest
project = BurntSushi/xsv
anchor_text = xsv-(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = 0.13.0
[xsv.exe]
template = github_api_latest
project = BurntSushi/xsv
anchor_text = xsv-(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = 0.13.0
[watchexec]
template = github_api_latest
project = watchexec/watchexec
anchor_text = watchexec-(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.xz
version = cli-v1.16.2
[watchexec.exe]
template = github_api_latest
project = watchexec/watchexec
anchor_text = watchexec-(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = cli-v1.16.2
[github]
template = github_api_latest
project = cli/cli
anchor_text = gh_(\d+\.\d+\.\d+)_linux_amd64.tar.gz
target_filename_to_extract_from_archive = gh
version = v2.2.0
[github Windows]
template = github_api_latest
project = cli/cli
anchor_text = gh_(\d+\.\d+\.\d+)_windows_amd64.zip
target_filename_to_extract_from_archive = gh.exe
version = v2.2.0
[gitui]
template = github_api_latest
project = extrawurst/gitui
anchor_text = gitui-linux-musl.tar.gz
version = v0.16.2
[gitui.exe]
template = github_api_latest
project = extrawurst/gitui
anchor_text = gitui-win.tar.gz
version = v0.16.2
[verco]
template = github_api_latest
project = matheuslessarodrigues/verco
anchor_text = verco-linux-x86_64
version = v5.5.1
[verco.exe]
template = github_api_latest
project = matheuslessarodrigues/verco
anchor_text = verco-windows-x86_64.exe
version = v5.5.1
[jq]
template = github_api_latest
project = stedolan/jq
anchor_text = jq-linux64
version = jq-1.6
[jq.exe]
template = github_api_latest
project = stedolan/jq
anchor_text = jq-win64.exe
version = jq-1.6
[procs]
template = github_api_latest
project = dalance/procs
anchor_text = procs-v(\d+\.\d+\.\d+)-x86_64-linux.zip
version = v0.11.9
[procs.exe]
template = github_api_latest
project = dalance/procs
anchor_text = procs-v(\d+\.\d+\.\d+)-x86_64-windows.zip
version = v0.11.9
[lsd]
template = github_api_latest
project = Peltoche/lsd
anchor_text = lsd-(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = 0.20.1
[lsd.exe]
template = github_api_latest
project = Peltoche/lsd
anchor_text = lsd-(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = 0.20.1
[tealdeer]
template = github_api_latest
project = dbrgn/tealdeer
anchor_text = tealdeer-linux-x86_64-musl
version = v1.4.1
[bat]
template = github_api_latest
project = sharkdp/bat
anchor_text = bat-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.18.1
[bat.exe]
template = github_api_latest
project = sharkdp/bat
anchor_text = bat-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = v0.18.1
[sd]
template = github_api_latest
project = chmln/sd
anchor_text = sd-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-gnu
version = v0.7.6
[dust]
template = github_api_latest
project = bootandy/dust
anchor_text = dust-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.6.0
[dust.exe]
template = github_api_latest
project = bootandy/dust
anchor_text = dust-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = v0.6.0
[fd]
template = github_api_latest
project = sharkdp/fd
anchor_text = fd-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v8.2.1
[fd.exe]
template = github_api_latest
project = sharkdp/fd
anchor_text = fd-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = v8.2.1
[hexyl]
template = github_api_latest
project = sharkdp/hexyl
anchor_text = hexyl-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.8.0
[hyperfine]
template = github_api_latest
project = sharkdp/hyperfine
anchor_text = hyperfine-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v1.11.0
[hyperfine.exe]
template = github_api_latest
project = sharkdp/hyperfine
anchor_text = hyperfine-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = v1.11.0
[lazydocker]
template = github_api_latest
project = jesseduffield/lazydocker
anchor_text = lazydocker_(\d+\.\d+\.\d+)_Linux_x86_64.tar.gz
version = v0.12.0
[lazydocker.exe]
template = github_api_latest
project = jesseduffield/lazydocker
anchor_text = lazydocker_(\d+\.\d+\.\d+)_Windows_x86_64.zip
version = v0.12.0
[ctop]
template = github_api_latest
project = bcicen/ctop
anchor_text = ctop-(\d+\.\d+\.\d+)-linux-amd64
version = v0.7.6
[ctop.exe]
template = github_api_latest
project = bcicen/ctop
anchor_text = ctop-(\d+\.\d+\.\d+)-windows-amd64
version = v0.7.6
[exa]
template = github_api_latest
project = ogham/exa
anchor_text = exa-linux-x86_64-v(\d+\.\d+\.\d+).zip
version = v0.10.1
[gitea]
template = github_api_latest
project = go-gitea/gitea
anchor_text = gitea-(\d+\.\d+\.\d+)-linux-amd64
version = v1.14.4
[gitea.exe]
template = github_api_latest
project = go-gitea/gitea
anchor_text = gitea-(\d+\.\d+\.\d+)-windows-4.0-amd64.exe
version = v1.14.4
[caddy]
template = github_api_latest
project = caddyserver/caddy
anchor_text = caddy_(\d+\.\d+\.\d+)_linux_amd64.tar.gz
version = v2.4.3
[caddy.exe]
template = github_api_latest
project = caddyserver/caddy
anchor_text = caddy_(\d+\.\d+\.\d+)_windows_amd64.zip
version = v2.4.3
[grex]
template = github_api_latest
project = pemistahl/grex
anchor_text = grex-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v1.2.0
[grex.exe]
template = github_api_latest
project = pemistahl/grex
anchor_text = grex-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = v1.2.0
[rargs]
template = github_api_latest
project = lotabout/rargs
anchor_text = rargs-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.3.0
[dictomatic]
template = github_api_latest
project = cjrh/dictomatic
anchor_text = dictomatic
version = v0.1.0
[dictomatic.exe]
template = github_api_latest
project = cjrh/dictomatic
anchor_text = dictomatic.exe
version = v0.1.0
[thesauromatic]
template = github_api_latest
project = cjrh/thesauromatic
anchor_text = thesauromatic
version = v0.0.3
[thesauromatic.exe]
template = github_api_latest
project = cjrh/thesauromatic
anchor_text = thesauromatic.exe
version = v0.0.3
[pwrgen]
template = github_api_latest
project = cjrh/pwrgen
anchor_text = pwrgen
version = First release
[pwrgen.exe]
template = github_api_latest
project = cjrh/pwrgen
anchor_text = pwrgen.exe
version = First release
[rust-analyzer]
template = github_api_latest
project = rust-analyzer/rust-analyzer
anchor_text = rust-analyzer-x86_64-unknown-linux-gnu.gz
version = 2021-07-05
[rust-analyzer.exe]
template = github_api_latest
project = rust-analyzer/rust-analyzer
anchor_text = rust-analyzer-x86_64-pc-windows-msvc.gz
version = 2021-07-05
[nvim]
template = github_api_latest
project = neovim/neovim
commit_tag = $.target_commitish
anchor_text = nvim.appimage
version = v0.10.0
commit = 27fb62988e922c2739035f477f93cc052a4fee1e
[ncspot]
template = github_api_latest
project = hrkfdn/ncspot
anchor_text = ncspot-v(\d+\.\d+\.\d+)-linux-x86_64.tar.gz
version = v0.7.3
[delta]
template = github_api_latest
project = dandavison/delta
anchor_text = delta-(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = 0.8.2
[delta.exe]
template = github_api_latest
project = dandavison/delta
anchor_text = delta-(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = 0.8.2
[duf]
template = github_api_latest
project = muesli/duf
anchor_text = duf_(\d+\.\d+\.\d+)_linux_x86_64.tar.gz
version = v0.6.2
[duf.exe]
template = github_api_latest
project = muesli/duf
anchor_text = duf_(\d+\.\d+\.\d+)_Windows_x86_64.zip
version = v0.6.2
[mcfly]
template = github_api_latest
project = cantino/mcfly
anchor_text = mcfly-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0
[choose]
template = github_api_latest
project = theryangeary/choose
anchor_text = choose-x86_64-unknown-linux-musl
version = v0
[cheat]
template = github_api_latest
project = cheat/cheat
target_filename_to_extract_from_archive = cheat-linux-amd64
desired_filename = cheat
anchor_text = cheat-linux-amd64.gz
version = 4.2.2
[cheat.exe]
template = github_api_latest
project = cheat/cheat
target_filename_to_extract_from_archive = cheat-windows-amd64.exe
desired_filename = cheat.exe
anchor_text = cheat-windows-amd64.exe.zip
version = 4.2.2
[curlie]
template = github_api_latest
project = rs/curlie
anchor_text = curlie_(\d+\.\d+\.\d+)_linux_amd64.tar.gz
version = v1.6.0
[curlie.exe]
template = github_api_latest
project = rs/curlie
anchor_text = curlie_(\d+\.\d+\.\d+)_windows_amd64.tar.gz
version = v1.6.0
[csvtk]
template = github_api_latest
project = shenwei356/csvtk
anchor_text = csvtk_linux_amd64.tar.gz
version = v0.23.0
[csvtk.exe]
template = github_api_latest
project = shenwei356/csvtk
anchor_text = csvtk_windows_amd64.exe.tar.gz
version = v0.23.0
[pastel]
template = github_api_latest
project = sharkdp/pastel
anchor_text = pastel-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.8.0
[pastel.exe]
template = github_api_latest
project = sharkdp/pastel
anchor_text = pastel-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = v0.8.0
[websocat]
template = github_api_latest
project = vi/websocat
anchor_text = websocat.x86_64-unknown-linux-musl
version = v1.8.0
[websocat.exe]
template = github_api_latest
project = vi/websocat
anchor_text = websocat.x86_64-pc-windows-gnu.exe
version = v1.8.0
[miniserve]
template = github_api_latest
project = svenstaro/miniserve
anchor_text = miniserve-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl
version = v0.14.0
[miniserve.exe]
template = github_api_latest
project = svenstaro/miniserve
anchor_text = miniserve-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.exe
version = v0.14.0
[fcp]
template = github_api_latest
project = Svetlitski/fcp
target_filename_to_extract_from_archive = fcp-(\d+\.\d+\.\d+)-x86_64-unknown-linux-gnu
desired_filename = fcp
anchor_text = fcp-(\d+\.\d+\.\d+)-x86_64-unknown-linux-gnu.zip
version = v0.2.0
[xh]
template = github_api_latest
project = ducaale/xh
anchor_text = xh-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.10.0
[xh.exe]
template = github_api_latest
project = ducaale/xh
anchor_text = xh-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = v0.10.0
[zellij]
template = github_api_latest
project = zellij-org/zellij
anchor_text = zellij-x86_64-unknown-linux-musl.tar.gz
version = v0.14.0
[lifter]
template = github_api_latest
project = cjrh/lifter
anchor_text = lifter-(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = 0.2.1
[lifter.exe]
template = github_api_latest
project = cjrh/lifter
anchor_text = lifter-(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = 0.2.1
[redbean.com]
page_url = https://redbean.dev/
anchor_tag = html body p.link a[href*="redbean-"]
version_tag = p.link a
anchor_text = redbean-(\d+\.\d+).com
version = redbean-2.2.com
[rathole]
template = github_api_latest
project = rapiz1/rathole
anchor_text = rathole-x86_64-unknown-linux-musl.zip
version = v0.4.0
[rathole.exe]
template = github_api_latest
project = rapiz1/rathole
anchor_text = rathole-x86_64-pc-windows-msvc.zip
version = v0.4.0
[rathole Mac]
template = github_api_latest
project = rapiz1/rathole
anchor_text = rathole-x86_64-apple-darwin.zip
target_filename_to_extract_from_archive = rathole
desired_filename = rathole-mac
version = v0.4.0
[viu]
template = github_api_latest
project = atanunq/viu
anchor_text = viu
version = v0.0.0
[cb]
template = github_api_latest
project = yaa110/cb
anchor_text = cb
version = 0.0.0
[cpc]
template = github_api_latest
project = probablykasper/cpc
anchor_text = cpc-v(\d+\.\d+\.\d+)-linux-x64.zip
version = v0.0.0
[hck]
template = github_api_latest
project = sstadick/hck
anchor_text = hck-linux-amd64
version = v0.0.0
[dua]
template = github_api_latest
project = Byron/dua-cli
anchor_text = dua-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.0.0
[navi]
template = github_api_latest
project = denisidoro/navi
anchor_text = navi-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = 0.0.0
[jql]
template = github_api_latest
project = yamafaktory/jql
anchor_text = jql-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.0.0
[just]
template = github_api_latest
project = casey/just
anchor_text = just-(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = 0.0.0
[mdbook]
template = github_api_latest
project = rust-lang/mdBook
anchor_text = mdbook-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-gnu.tar.gz
version = v0.0.0
[mdbook.exe]
template = github_api_latest
project = rust-lang/mdBook
anchor_text = mdbook-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.zip
version = v0.0.0
[rclone]
template = github_api_latest
project = rclone/rclone
anchor_text = rclone-v(\d+\.\d+\.\d+)-linux-amd64.zip
version = v0.0.0
[keypairs]
template = github_api_latest
project = therootcompany/keypairs
anchor_text = keypairs_(\d+\.\d+\.\d+(-pre\.\d)?)_linux_x86-64.tar.gz
version = v0.0.0
[keypairs.exe]
template = github_api_latest
project = therootcompany/keypairs
anchor_text = keypairs_(\d+\.\d+\.\d+(-pre\.\d)?_windows_x86-64.zip
version = v0.0.0
[xonsh]
template = github_api_latest
project = xonsh/xonsh
anchor_text = xonsh-x86_64.AppImage
version = 0.0.0
[fnm]
template = github_api_latest
project = Schniz/fnm
anchor_text = fnm-linux.zip
version = v0.0.0
[drawio]
template = github_api_latest
project = jgraph/drawio-desktop
anchor_text = drawio-x86_64-(\d+\.\d+\.\d+).AppImage
version = v0.0.0
[wezterm]
template = github_api_latest
project = wez/wezterm
anchor_text = WezTerm-(.*?)-Ubuntu18.04.AppImage
version = 0.0.0
[zenith]
template = github_api_latest
project = bvaisvil/zenith
anchor_text = zenith.x86_64-unknown-linux-musl.tgz
version = 0.0.0
[micro]
template = github_api_latest
project = zyedidia/micro
anchor_text = micro-(\d+\.\d+\.\d+)-linux64.tar.gz
version = 0.0.0
[audacity]
template = github_api_latest
project = audacity/audacity
anchor_text = audacity-linux-(\d+\.\d+\.\d+)-x86_64.AppImage
version = Audacity-3.1.3
[mergestat]
template = github_api_latest
project = mergestat/mergestat
anchor_text = mergestat-linux-amd64.tar.gz
version = v0.5.5
[slides]
template = github_api_latest
project = maaslalani/slides
anchor_text = slides_(\d+\.\d+\.\d+)_linux_amd64.tar.gz
version = v0.8.0
[trunk]
template = github_api_latest
project = thedodd/trunk
anchor_text = trunk-x86_64-unknown-linux-gnu.tar.gz
version = v0.14.0
[trunk.exe]
template = github_api_latest
project = thedodd/trunk
anchor_text = trunk-x86_64-pc-windows-msvc.zip
version = v0.14.0
[wasm-pack]
template = github_api_latest
project = rustwasm/wasm-pack
anchor_text = wasm-pack-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-musl.tar.gz
version = v0.10.2
[wasm-pack.exe]
template = github_api_latest
project = rustwasm/wasm-pack
anchor_text = wasm-pack-v(\d+\.\d+\.\d+)-x86_64-pc-windows-msvc.tar.gz
version = v0.10.2
[perseus]
template = github_api_latest
project = arctic-hen7/perseus
anchor_text = perseus-musl-amd64
version = v0.3.4
[perseus.exe]
template = github_api_latest
project = arctic-hen7/perseus
anchor_text = perseus-windows-amd64
version = v0.3.4
[nerdctl]
template = github_api_latest
project = containerd/nerdctl
anchor_text = nerdctl-(\d+\.\d+\.\d+)-linux-amd64.tar.gz
version = v0.19.0
[act]
template = github_api_latest
project = nektos/act
anchor_text = act_Linux_x86_64.tar.gz
version = v0.2.26
[neovide]
template = github_api_latest
project = neovide/neovide
anchor_text = neovide.tar.gz
version = 0.9.0
[gitsign]
template = github_api_latest
project = sigstore/gitsign
anchor_text = gitsign_(\d+\.\d+\.\d+(-[a-z]*)?)_linux_amd64
version = v0.0.2-alpha
[cosign]
template = github_api_latest
project = sigstore/cosign
anchor_text = cosign-linux-amd64
version = v1.9.0
[obsidian]
template = github_api_latest
project = obsidianmd/obsidian-releases
anchor_text = Obsidian-(\d+\.\d+\.\d+).AppImage
version = v0.14.15
[flyctl]
template = github_api_latest
project = superfly/flyctl
anchor_text = flyctl_(\d+\.\d+\.\d+)_Linux_x86_64.tar.gz
version = v0.0.351
[consul]
page_url = https://www.consul.io/downloads
anchor_tag = div[class*=downloads] a[href*=linux]
version_tag = [class*=logoWrapper] span
anchor_text = Amd64
version = 1.12.2
[nomad]
page_url = https://www.nomadproject.io/downloads
anchor_tag = div[class*=downloads] a[href*=linux]
version_tag = [class*=logoWrapper] span
anchor_text = Amd64
version = 1.3.1
[terraform]
page_url = https://www.terraform.io/downloads
anchor_tag = div[class*=downloads] a[href*=linux]
version_tag = [class*=logoWrapper] span
anchor_text = Amd64
version = 1.2.4
[vault]
page_url = https://www.vaultproject.io/downloads
anchor_tag = div[class*=downloads] a[href*=linux]
version_tag = [class*=logoWrapper] span
anchor_text = Amd64
version = 1.11.0
[difft]
template = github_api_latest
project = Wilfred/difftastic
anchor_text = difft-x86_64-unknown-linux-gnu.tar.gz
version = 0.0.0
[helix]
template = github_api_latest
project = helix-editor/helix
anchor_text = helix-(\d+\.\d+(\.\d+)?)-x86_64.AppImage
version = 0.0
[zola]
template = github_api_latest
project = getzola/zola
anchor_text = zola-v(\d+\.\d+\.\d+)-x86_64-unknown-linux-gnu.tar.gz
version = v0.16.1
[shellclear]
template = github_api_latest
project = rusty-ferris-club/shellclear
anchor_text = shellclear-v(\d+\.\d+\.\d+)-x86_64-linux.tar.xz
version = v0.4.2
[tree-sitter]
template = github_api_latest
project = tree-sitter/tree-sitter
anchor_text = tree-sitter-linux-x64.gz
version = v0.20.7
[lapce]
template = github_api_latest
project = lapce/lapce
anchor_text = Lapce-linux.tar.gz
version = v0.2.0
[qsv]
template = github_api_latest
project = jqnatividad/qsv
anchor_text = qsv-(\d+\.\d+\.\d+)-x86_64-unknown-linux-gnu.zip
version = 0.70.0
[ossia.score]
template = github_api_latest
project = ossia/score
anchor_text = ossia.score-(\d+\.\d+\.\d+)-linux-amd64.AppImage
version = v3.1.1
[zls]
template = github_api_latest
project = zigtools/zls
anchor_text = zls-x86_64-linux.tar.xz
version = 0.12.0
[devd]
template = github_api_latest
project = cortesi/devd
anchor_text = devd-(\d+.\d+)-linux64.tgz
version = v0.9
[pik]
template = github_api_latest
project = jacek-kurlit/pik
anchor_text = pik-(\d+.\d+.\d+)-x86_64-unknown-linux-gnu.tar.gz
version = 0.6.3
[tw]
template = github_api_latest
project = shshemi/tabiew
anchor_text = tw-x86-linux-gnu
version = v0.6.2
[gobang]
template = github_api_latest
project = TaKO8Ki/gobang
anchor_text = gobang-(\d+\.\d+\.\d+(-[a-z0-9.-]*)?)-x86_64-unknown-linux-musl.tar.gz
version = v0.1.0-alpha.5
[monolith]
template = github_api_latest
project = Y2Z/monolith
anchor_text = monolith-gnu-linux-x86_64
version = v2.8.1