From 94313bc5528ca00ad0e89199c0faf6ee7ac98608 Mon Sep 17 00:00:00 2001 From: Redume Date: Sun, 2 Oct 2022 12:20:04 +0300 Subject: [PATCH] removed prefix v in versions, added prefix at the end -beta --- config.yaml | 2 +- web/static/scripts/version.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.yaml b/config.yaml index 3426cb0..adb8ada 100644 --- a/config.yaml +++ b/config.yaml @@ -2,4 +2,4 @@ apiKey: "1gI9G84ZafKDEnrbydviGknReOGiVK9jqrQBE3et" version: - "2.0" + "2.0-beta" diff --git a/web/static/scripts/version.js b/web/static/scripts/version.js index fc8dd99..83d88b1 100644 --- a/web/static/scripts/version.js +++ b/web/static/scripts/version.js @@ -2,6 +2,6 @@ $.ajax({ url: "http://localhost:8080/api/get/version", type: "GET", success: function(data){ - $("#program-version").text(data.message.replace("v", "")); + $("#program-version").text(data.message); } }) \ No newline at end of file