langston-stem / skywrangler-web-client

Web app for remotely controlling UAV for objective 2 experiment
https://github.com/orgs/langston-stem/projects/1
MIT License
0 stars 0 forks source link

Display client and server version numbers to the user. #24

Open dlech opened 1 year ago

dlech commented 1 year ago

Since we have multiple drones in the fleet, it would be useful to have an easy way to check the version number to ensure the latest software is installed. We could do this by displaying the version numbers at the bottom of the web page. The version for the client can be fetched from package.json and the version from the server will require https://github.com/langston-stem/skywrangler-web-server/issues/29.

junetheprogrammer commented 1 year ago

We finished the web API fror the version. Next step is for you make a GET HTTP request to/api/version The response should contain a json payload

{
    "version" : "1.6.0"
}