Skip to content

Commit 5debdc8

Browse files
committed
Bump to v3.1.2
1 parent 24b381a commit 5debdc8

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.24)
22

3-
project(SmokeAPI VERSION 3.1.1)
3+
project(SmokeAPI VERSION 3.1.2)
44

55
include(KoalaBox/cmake/KoalaBox.cmake)
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Below you can find an example config where nearly every option has been customiz
171171

172172
```json
173173
{
174-
"$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.1/res/SmokeAPI.schema.json",
174+
"$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.2/res/SmokeAPI.schema.json",
175175
"$version": 4,
176176
"logging": true,
177177
"log_steam_http": true,

res/SmokeAPI.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.1/res/SmokeAPI.schema.json",
2+
"$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.2/res/SmokeAPI.schema.json",
33
"$version": 4,
44
"logging": true,
55
"log_steam_http": false,

res/SmokeAPI.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.1/res/SmokeAPI.schema.json",
3+
"$id": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.2/res/SmokeAPI.schema.json",
44
"title": "SmokeAPI configuration",
55
"type": "object",
66
"additionalProperties": false,
@@ -120,7 +120,7 @@
120120
},
121121
"examples": [
122122
{
123-
"$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.1/res/SmokeAPI.schema.json",
123+
"$schema": "https://raw.githubusercontent.com/acidicoala/SmokeAPI/refs/tags/v3.1.2/res/SmokeAPI.schema.json",
124124
"$version": 4,
125125
"logging": true,
126126
"log_steam_http": true,

src/smoke_api/smoke_api.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ namespace {
7474
const auto steamclient_versions = find_steamclient_versions(steamapi_handle);
7575
for(const auto& steamclient_version : steamclient_versions) {
7676
if(CreateInterface$(steamclient_version.c_str(), nullptr)) {
77+
// TODO: This is not true when running under Proton.
78+
// Even before initialization, an interface will be returned,
79+
// but GetISteamGenericInterface will still fail.
7780
LOG_WARN("'{}' was already initialized. SmokeAPI might not work as expected.", steamclient_version);
7881
LOG_WARN("Probable cause: SmokeAPI was injected too late. If possible, try injecting it earlier.");
7982

0 commit comments

Comments
 (0)