diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8abf59..e215bad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: push jobs: ci: name: CI - uses: acidicoala/KoalaBox/.github/workflows/build-and-package.yml@1bdfeefa9933092a747c46679b3d872470ef4998 + uses: acidicoala/KoalaBox/.github/workflows/build-and-package.yml@f97e4e4fcef5374ac81c1584eff74f595527e15a permissions: contents: write with: diff --git a/KoalaBox b/KoalaBox index 183184c..f97e4e4 160000 --- a/KoalaBox +++ b/KoalaBox @@ -1 +1 @@ -Subproject commit 183184cf5bbf18dd92d5e92d2ccf445d795f445b +Subproject commit f97e4e4fcef5374ac81c1584eff74f595527e15a diff --git a/README.md b/README.md index 1263d5b..17b50e9 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ Below you can find an example config where nearly every option has been customiz ```json { - "$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.2/res/SmokeAPI.schema.json", + "$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.5/res/SmokeAPI.schema.json", "$version": 4, "logging": true, "log_steam_http": true, diff --git a/res/SmokeAPI.config.json b/res/SmokeAPI.config.json index 3e178a7..39583f8 100644 --- a/res/SmokeAPI.config.json +++ b/res/SmokeAPI.config.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.2/res/SmokeAPI.schema.json", + "$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.5/res/SmokeAPI.schema.json", "$version": 4, "logging": true, "log_steam_http": false, diff --git a/res/SmokeAPI.schema.json b/res/SmokeAPI.schema.json index 3e0f9fc..2ceeab3 100644 --- a/res/SmokeAPI.schema.json +++ b/res/SmokeAPI.schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.2/res/SmokeAPI.schema.json", + "$id": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.5/res/SmokeAPI.schema.json", "title": "SmokeAPI configuration", "type": "object", "additionalProperties": false, @@ -120,7 +120,7 @@ }, "examples": [ { - "$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.2/res/SmokeAPI.schema.json", + "$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.5/res/SmokeAPI.schema.json", "$version": 4, "logging": true, "log_steam_http": true, diff --git a/res/extra_build_config.gen.h b/res/extra_build_config.gen.h index 141a89e..16fd1d8 100644 --- a/res/extra_build_config.gen.h +++ b/res/extra_build_config.gen.h @@ -1,4 +1,4 @@ #pragma once #define STEAM_API_MODULE "${STEAM_API_MODULE}" -#define STEAMCLIENT_DLL "${STEAMCLIENT_DLL}" +#define STEAMCLIENT_DLL "${STEAMCLIENT_DLL}" diff --git a/src/smoke_api/smoke_api.cpp b/src/smoke_api/smoke_api.cpp index e467335..24c6183 100644 --- a/src/smoke_api/smoke_api.cpp +++ b/src/smoke_api/smoke_api.cpp @@ -129,7 +129,7 @@ namespace smoke_api { kb::logger::init_null_logger(); } - LOG_INFO("{} v{} | Built at '{}'", PROJECT_NAME, PROJECT_VERSION, __TIMESTAMP__); + LOG_INFO("{} v{}{} | Built at '{}'", PROJECT_NAME, PROJECT_VERSION, VERSION_SUFFIX, __TIMESTAMP__); LOG_DEBUG("Parsed config:\n{}", nlohmann::ordered_json(config::instance).dump(2)); const auto exe_path = kb::lib::get_fs_path(nullptr);