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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,28 @@
1
+
# 2.48.1
2
+
3
+
Features:
4
+
* Add support for detecting Openbox WM version (WM, Linux)
5
+
* Improve reliability of child process spawning on Windows (Windows)
6
+
* Add a new option `--packages-combined`, which combines related package managers into single counts (#1851, Packages)
7
+
* For example: if you have both `flatpak-system` and `flatpak-user` packages installed, they will be combined into a single `flatpak` count with `--packages-combined` enabled.
8
+
* Add `modules[n].condition` to conditionally enable modules on different platforms
9
+
* Useful when sharing configuration files across platforms
10
+
* For example:
11
+
```jsonc
12
+
{
13
+
"type":"custom",
14
+
"format":"This string will be printed on Intel macOS only",
15
+
"condition": {
16
+
"system":"macOS", // Can be an array, optional
17
+
"arch":"x86_64"// Can be an array, optional too
18
+
}
19
+
}
20
+
```
21
+
22
+
Bugfixes:
23
+
* Revert the change of `posix_spawn` in v2.48.0 for Android and OpenBSD (Android / OpenBSD)
24
+
* Fix completion for Android 7 (Required by Termux)
0 commit comments