Updated version numbers

This commit is contained in:
Pax1601 2023-04-11 20:30:19 +02:00
parent f4bb484c7d
commit df2aef498f
6 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@
<div class="ol-select-options">
<div id="olympus-toolbar-summary">
<h3>Olympus</h3>
<div class="accent-green app-version-number">v0.1.1</div>
<div class="accent-green app-version-number">v0.1.2</div>
</div>
<div>
<a href="https://www.discord.com" target="_blank">Discord</a>

View File

@ -1,9 +1,9 @@
#define nwjsFolder "C:\Users\dpass\Documents\nwjs\"
#define version "v0.1.1-alpha"
#define version "v0.1.2-alpha"
[Setup]
AppName=DCS Olympus
AppVerName={#version}
AppVerName=DCS Olympus {#version}
DefaultDirName={usersavedgames}\DCS.openbeta
DefaultGroupName=DCSOlympus
OutputBaseFilename=DCSOlympus_{#version}

View File

@ -1,4 +1,4 @@
local version = "v0.1.1-alpha"
local version = "v0.1.2-alpha"
local debug = false

View File

@ -1,4 +1,4 @@
local version = 'v0.1.1-alpha'
local version = 'v0.1.2-alpha'
Olympus = {}
Olympus.OlympusDLL = nil

View File

@ -134,7 +134,7 @@ json::value Unit::getData(long long time)
/********** Task data **********/
json[L"taskData"] = json::value::object();
for (auto key : { L"currentTask", L"targetSpeed", L"targetAltitude", L"activePath" })
for (auto key : { L"currentTask", L"targetSpeed", L"targetAltitude", L"activePath"})
{
if (measures.find(key) != measures.end() && measures[key]->getTime() > time)
json[L"taskData"][key] = measures[key]->getValue();

View File

@ -1,6 +1,6 @@
#pragma once
#define VERSION "v0.1.1"
#define VERSION "v0.1.2"
#define LOG_NAME "Olympus_log.txt"
#define REST_ADDRESS L"http://localhost:30000"
#define REST_URI L"olympus"