alexandrehtrb / Pororoca

An API testing tool with support for HTTP/2 and HTTP/3. Alternative to Postman.
https://pororoca.io
Other
500 stars 38 forks source link

Deb not registered by Gnome #74

Closed faveoled closed 9 months ago

faveoled commented 9 months ago

After installing Pororoca it didn't appear in the list of apps: image

alexandrehtrb commented 9 months ago

Hey,

Thanks for reporting this issue, I will take a look.

In the meanwhile, you can use the linux-x64 version.

alexandrehtrb commented 9 months ago

How did you install the package? Was it:

sudo apt install Pororoca_version_amd64.deb

Please try installing with the alternatives below:

sudo dpkg -i Pororoca_version_amd64.deb

or

sudo apt-get install ./Pororoca_version_amd64.deb
faveoled commented 9 months ago

Tried all ways, same bad result. I suggest you do the following: make pororoca a script in /usr/bin and simplify your desktop file with just pororoca call:

Exec=LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/pororoca pororoca

I think Gnome can't parse this exec line and skips the app altogether

faveoled commented 9 months ago

Alternatively you can use this line (tested and works with Gnome):

Exec=env LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/pororoca pororoca
alexandrehtrb commented 9 months ago

Solved

The .debpackage for release 3.0.1 has been updated and fixes this issue

I used your suggestion of the script, thanks for the tip!