File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.24 )
22
3- project (SmokeAPI VERSION 3.1.1 )
3+ project (SmokeAPI VERSION 3.1.2 )
44
55include (KoalaBox/cmake/KoalaBox.cmake )
66
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change 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 ,
Original file line number Diff line number Diff line change 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 ,
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 ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments