You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -372,7 +365,7 @@ each `where` query supports one of the following:
372
365
-**range match**
373
366
-`field=start:end` -> fuzzy match
374
367
-`field==start:end` -> strict match
375
-
- works with `date` and `size`
368
+
- works with `updated`, `built`, and `size`
376
369
- supports:
377
370
- full ranges: `start:end`
378
371
- open-ended ranges: `start:` or `:end`
@@ -471,7 +464,7 @@ qp w not superorphan and not name=gtk
471
464
qp w name==bash and has:depends
472
465
qp where size=100MB:2GB
473
466
qp w name=python,cmake,yazi
474
-
qp w date==2024-01-01
467
+
qp w updated==2024-01-01
475
468
qp where q name=vim or name=nvim p and not has:conflicts
476
469
qp w not arch=x86_64
477
470
qp w q has:depends or has:required-by p and not reason=explicit
@@ -489,8 +482,8 @@ qp w q has:depends or has:required-by p and not reason=explicit
489
482
490
483
| field name | field type |
491
484
|------------|------------|
492
-
|date| range |
493
-
|build-date| range |
485
+
|updated| range |
486
+
|built| range |
494
487
| size | range |
495
488
| name | string |
496
489
| reason | string |
@@ -614,7 +607,7 @@ output format:
614
607
- multiple short commands are supported using space separation (e.g. `s`, `w`, `l`, `o`), but **cannot** be combined as `swo` or `-swo`. use them like this:
615
608
```
616
609
qp w name yay
617
-
qp s name,size w name=vim o date:asc l 10 # full query with shorthand
610
+
qp s name,size w name=vim o updated:asc l 10 # full query with shorthand
618
611
```
619
612
620
613
- group queries with `q ... p` to clarify order of operations:
@@ -630,8 +623,8 @@ output format:
630
623
631
624
- options that take arguments can be used in the `--<option>=<value>` form:
632
625
```
633
-
qp select name,date --limit=100
634
-
qp s name,date o name
626
+
qp select name,updated --limit=100
627
+
qp s name,updated o name
635
628
```
636
629
637
630
boolean flags can be explicitly set using `--<option>=true` or `--<option>=false`:
@@ -664,9 +657,9 @@ output format:
664
657
qp where reason=explicit limit all
665
658
```
666
659
667
-
3. show only dependencies installed on a specific date
660
+
3. show only dependencies updated on a specific date
668
661
```
669
-
qp where reason=dependency and date=2025-03-01
662
+
qp where reason=dependency and update=2025-03-01
670
663
```
671
664
672
665
4. show all packages sorted alphabetically by name
@@ -681,7 +674,7 @@ output format:
681
674
682
675
6. show packages installed between January 1, 2025, and January 5, 2025
683
676
```
684
-
qp where date=2025-01-01:2025-01-05
677
+
qp where updated=2025-01-01:2025-01-05
685
678
```
686
679
687
680
7. sort all packages by their license, displaying name and license
@@ -696,12 +689,12 @@ output format:
696
689
697
690
9. show packages between 100MB and 1GB installed up to February 27, 2025
698
691
```
699
-
qp where size=100MB:1GB and date=:2025-02-27
692
+
qp where size=100MB:1GB and updated=:2025-02-27
700
693
```
701
694
702
695
10. show all packages sorted by size in descending order, installed after January 1, 2025
703
696
```
704
-
qp where date=2025-01-01: order size:desc limit all
697
+
qp where updated=2025-01-01: order size:desc limit all
705
698
```
706
699
707
700
11. search for installed packages containing "python"
@@ -716,12 +709,12 @@ output format:
716
709
717
710
13. search for packages with names containing "linux" installed between January 1 and March 30, 2025
718
711
```
719
-
qp where name=linux and date=2025-01-01:2025-03-30
712
+
qp where name=linux and updated=2025-01-01:2025-03-30
720
713
```
721
714
722
715
14. search for packages containing "gtk" installed after January 1, 2025, and at least 5MB in size
723
716
```
724
-
qp where name=gtk and date=2025-01-01: and size=5MB:
717
+
qp where name=gtk and updated=2025-01-01: and size=5MB:
725
718
```
726
719
727
720
15. show packages with name, version, and size
@@ -781,7 +774,7 @@ output format:
781
774
782
775
26. show packages required by `vlc` and installed after January 1, 2025
783
776
```
784
-
qp where required-by=vlc and date=2025-01-01:
777
+
qp where required-by=vlc and updated=2025-01-01:
785
778
```
786
779
787
780
27. show all packages that have `glibc` as a dependency and are required by `ffmpeg`
0 commit comments