Compare commits

..

No commits in common. "7f56a77e7d628f82768a0078462859f6f673bb32" and "de9f84264037854a1a6dfda1925548dd81ba7ce2" have entirely different histories.

3 changed files with 1 additions and 16 deletions

View File

@ -9,11 +9,6 @@ target_link_libraries(
OlympicApplib
)
target_compile_definitions(
NostalgiaStudio PUBLIC
OLYMPIC_APP_VERSION="2023.12.0"
)
install(
TARGETS
NostalgiaStudio

View File

@ -13,10 +13,6 @@
#define OLYMPIC_APP_NAME "App"
#endif
#ifndef OLYMPIC_APP_VERSION
#define OLYMPIC_APP_VERSION "dev build"
#endif
#ifndef OLYMPIC_PROJECT_NAMESPACE
#define OLYMPIC_PROJECT_NAMESPACE project
#endif
@ -35,8 +31,6 @@
namespace olympic {
ox::String s_version = ox::String(OLYMPIC_APP_VERSION);
ox::Error run(
ox::StringView project,
ox::StringView appName,

View File

@ -7,14 +7,10 @@
#include <studio/imguiuitl.hpp>
#include "aboutpopup.hpp"
namespace olympic {
extern ox::String s_version;
}
namespace studio {
AboutPopup::AboutPopup(turbine::Context &ctx) noexcept {
m_text = ox::sfmt("{} - {}", keelCtx(ctx).appName, olympic::s_version);
m_text = ox::sfmt("{} - dev build", keelCtx(ctx).appName);
}
void AboutPopup::open() noexcept {