hishamhm / htop

htop is an interactive text-mode process viewer for Unix systems. It aims to be a better 'top'.
GNU General Public License v2.0
5.84k stars 581 forks source link

New version? #943

Open Neustradamus opened 5 years ago

Neustradamus commented 5 years ago

It is possible to have a new version?

birdie-github commented 5 years ago

You can always git clone and compile ;-)

Neustradamus commented 5 years ago

@birdie-github: Yes but it is not a perfect solution.

The last stable and beta have already one year.

ghost commented 4 years ago

The following command to obtain the download url for a GH release:

curl -s https://api.github.com/repos/atom/atom/releases | grep browser_download_url | grep 'tar[.]gz' | h
ead -n 1 | cut -d '"' -f 4

Outputs the URL of a package to download and pipe to tar xz:

https://github.com/atom/atom/releases/download/v1.41.0-beta1/atom-amd64.tar.gz

Whereas the same command adjusted for this GH repository

curl -s https://api.github.com/repos/hishamhm/htop/releases | grep browser_download_url | grep 'tar[.]gz'
 | head -n 1 | cut -d '"' -f 4

Outputs nothing. It should probably output something.

EDIT: Alternatively, perhaps https://hisham.hm/htop/releases outputs the url for the latest release?