removed prefix v in versions, added prefix at the end -beta

This commit is contained in:
Данил 2022-10-02 12:20:04 +03:00
parent f5c1909f81
commit 94313bc552
2 changed files with 2 additions and 2 deletions

View file

@ -2,4 +2,4 @@ apiKey:
"1gI9G84ZafKDEnrbydviGknReOGiVK9jqrQBE3et" "1gI9G84ZafKDEnrbydviGknReOGiVK9jqrQBE3et"
version: version:
"2.0" "2.0-beta"

View file

@ -2,6 +2,6 @@ $.ajax({
url: "http://localhost:8080/api/get/version", url: "http://localhost:8080/api/get/version",
type: "GET", type: "GET",
success: function(data){ success: function(data){
$("#program-version").text(data.message.replace("v", "")); $("#program-version").text(data.message);
} }
}) })