-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Hi
I think there might be a mistake in the example given in the readme.md, shouldn't the gameid be inside the first map instead of right outside it, like this?
appinfo;#appid;7;common;"name;Steam Client;"type;Config;;associations;<#gameid;7<;extended;"beta_name_1;Steam Beta Update;"
[
{
appid: 7,
common: {
name: 'Steam Client',
type: 'Config',
associations: {},
gameid: 7
},
extended: {
beta_name_1: 'Steam Beta Update',
beta_contentlist_1: 'steamexe publicbeta',
beta_name_2: 'Steam Deck Stable',
beta_contentlist_2: 'steamexe steamdeck_stable',
beta_name_3: 'Steam Deck Beta',
// ...
}
}
]
there's one map closure (<) after associations, which means it's an empty map, not two (which would close the map in which associations is), the next map closure is after gameid
not sure if I don't understand your explanation of the file format or if there is indeed a mistake, that's confusing