Skip to content

Commit

Permalink
Merge pull request #540 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 13.15.9
  • Loading branch information
andyone authored Jan 23, 2025
2 parents b41769d + ef114a2 commit 405bb80
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

### [13.15.9](https://kaos.sh/ek/13.15.9)

- `[support/pkgs]` Fixed bug with collecting info about multilib versions of RPM packages

### [13.15.8](https://kaos.sh/ek/13.15.8)

- `[terminal/input]` Improved support for custom title formatting with `fmtc` tags
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ _It's hard to show all the possibilities of all the subpackages. But you can tak
- [fz](https://kaos.sh/fz) — Simple tool for formatting `go-fuzz` output
- [GoHeft](https://kaos.sh/goheft) — Utility for listing sizes of all used static libraries compiled into golang binary
- [GoMakeGen](https://kaos.sh/gomakegen) — Utility for generating makefiles for golang applications
- [htmlcov](https://kaos.sh/htmlcov) — Utility for converting Go coverage profiles into HTML pages
- [icecli](https://kaos.sh/icecli) — Command-line tools for Icecast
- [IMC](https://kaos.sh/imc) — Simple terminal dashboard for Icecast
- [init-exporter](https://github.com/funbox/init-exporter) — Utility for exporting services described by Procfile to init system
Expand All @@ -130,10 +131,12 @@ _It's hard to show all the possibilities of all the subpackages. But you can tak
- [rsz](https://kaos.sh/rsz) — Simple utility for image resizing
- [scratch](https://kaos.sh/scratch) — Simple utility for generating blank files for Go apps, utilities and packages
- [SHDoc](https://kaos.sh/shdoc) — Tool for viewing and exporting docs for shell scripts
- [siocrypt](https://kaos.sh/siocrypt) — Tool for encrypting/decrypting arbitrary data streams
- [Sonar](https://kaos.sh/sonar) — Utility for showing user Slack status in Atlassian Jira
- [SourceIndex](https://kaos.sh/source-index) — Utility for generating an index for source archives
- [SSLScan Client](https://kaos.sh/sslcli) — Pretty awesome command-line client for public SSLLabs API
- [subdy](https://kaos.sh/subdy) — CLI for subdomain.center API
- [Swap Reaper](https://kaos.sh/swap-reaper) — Service to periodically clean swap memory
- [swptop](https://kaos.sh/swptop) — Simple utility for viewing swap consumption of processes
- [uc](https://kaos.sh/uc) — Simple utility for counting unique lines
- [updown-badge-server](https://kaos.sh/updown-badge-server) — Service for generating badges for updown.io checks
Expand Down
3 changes: 2 additions & 1 deletion support/pkgs/pkgs_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ func getPackageInfo(names string) support.Pkg {

// getRPMPackageInfo returns info about package from rpm
func getRPMPackageInfo(name string) support.Pkg {
out := getCommandOutput("rpm", "-q", "--qf", "%{version}-%{release}.%{arch}", name)
out := getCommandOutput("rpm", "-q", "--qf", "%{version}-%{release}.%{arch} ", name)
out = strings.TrimSpace(out)

if len(out) == 0 {
return support.Pkg{name, ""}
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ package ek
// ////////////////////////////////////////////////////////////////////////////////// //

// VERSION is current ek package version
const VERSION = "13.15.8"
const VERSION = "13.15.9"

0 comments on commit 405bb80

Please sign in to comment.