Skip to content

Commit 9b872e6

Browse files
committed
better pacman support - order
1 parent 27374df commit 9b872e6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## v0.82.0
2+
- better pacman support - order
13
## v0.81.0
24
- better pacman support
35
## v0.80.0

lib/commands/humans/search.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,7 @@ class SearchCommand extends Command {
129129
final packageLabel = result.repo == 'aur' ? 'AUR' : 'PM';
130130
final fullName = repoInfo.isNotEmpty ? '$repoInfo${result.name}' : result.name;
131131

132-
out(
133-
'{@yellow}[$packageLabel]{@end} {@blue}$fullName{@end}$version$popularity - ${result.description ?? ''}',
134-
);
132+
out('{@yellow}[$packageLabel]{@end} {@blue}$fullName{@end}$version$popularity - ${result.description ?? ''}');
135133
}
136134

137135
// Then display xpm results (moved after native results)

lib/pubspec.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const name = 'xpm';
33
const description =
44
'Universal package manager for any unix-like distro including macOS. Also experimental Windows support.';
5-
const version = '0.81.0';
5+
const version = '0.82.0';
66
const homepage = 'https://xpm.link';
77
const repository = 'https://github.com/verseles/xpm';
88
const executables = '{xpm: null}';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: xpm
22
description: Universal package manager for any unix-like distro including macOS. Also experimental Windows support.
3-
version: 0.81.0
3+
version: 0.82.0
44
homepage: https://xpm.link
55
repository: https://github.com/verseles/xpm
66
executables:

0 commit comments

Comments
 (0)