bennettpeter / android-MythTV-Leanfront

:tv: MythTV Android TV frontend
GNU General Public License v3.0
45 stars 9 forks source link

Tools > Backend Status shows only Library API version and not MythTV Version #61

Closed jfabernathy closed 1 year ago

jfabernathy commented 1 year ago

Is there a way that the Tools > Backend Status screen could show the MythTV Version? The only way I can get that now is by use of a computer via ssh or mythweb. If using Leanfront as your primary frontend it would be helpful to have that information without pulling out a laptop.

bennettpeter commented 1 year ago

The backend Status screen is just a copy of the web page at http://backend:6744/Status/Status There is also a feature built into MythTV to add your own customization to that web page. In mythtv-setup, go to General -> Miscellaneous Settings. In the box for "Miscellaneous Status Application" enter the following: mythutil -q --version | head -n 2 | tail -n 1 Then you will see the version listed at the end of the status display (down arrow to get to the end)

jfabernathy commented 1 year ago

Thanks, that works on Leanfront and on mythweb backend status. However, it doesn't work on http:192.168.8.243:6744/status or status/status. Since I only use mythweb and leanfront, I'm all set. Thanks.

bennettpeter commented 1 year ago

That URL is case sensitive, (and it needs slashes) as in http://192.168.8.243:6744/Status/Status .

jfabernathy commented 1 year ago

That works great.