Every appinfo change SteamRaw has observed, grouped by changelist. Tags, features, languages, builds, depots, prices and any other key Steam publishes. Tracking since 2026-09-11 21:21 UTC.
No changes recorded since SteamRaw first saw this app. Every future PICS change will be listed here.
2022-03-09 08:20 UTC · Community Announcements · Talos
Onset 1.5.5 (Protocol Compatibility 5) 3D sound for 3D Web UIs There is a new parameter for the function CreateWebUI3D and CreateRemoteWebUI3D to set the sound falloff distance. New Lua functions SetWebVolume(web, volume) SetWebPitch(web, pitch) New Lua events The following events allow you to block certain input when you return false. OnActionKey(EventType, ActionName, KeyName) OnAxisKey(EventType, AxisName, KeyName) New constants (enum). Used for the new On*Key events. EInputEvent IE_Pressed = 0 IE_Released = 1 IE_Repeat = 2 IE_DoubleClick = 3 IE_Axis = 4 New Ambient Night Lighting Lighting
2022-02-05 09:16 UTC · Community Announcements · Talos
Onset 1.5.4 (Protocol Compatibility 5) This update removes the old server query mechanism & master server system. It is being replaced with the solution that the Steamworks library offers. Server operators must update their servers to be shown in the game main menu. Game You can view a list of servers (outside of Onset) in Steam. Go to View -> Servers -> Change Filter to Onset. The main menu will now display the branch name and buildid if you're running on a beta branch. Temporary fix: Setting audio master volume to 0 will no mute the audio completely to prevent the annoying stuttering. Update
2022-01-07 19:16 UTC · Community Announcements · Talos
Update WebUI library. Update object images. Update copyright year.
2021-12-14 18:25 UTC · Community Announcements · Talos
Onset 1.5.3 (Protocol Compatibility 5) Client update Add function EnableSnowParticles(bEnable) Add function SetLandscapeSnowAlpha(Val) Example usage: AddEvent("OnPackageStart", function() EnableSnowParticles(true) SetLandscapeSnowAlpha(1.0) end) {STEAM_CLAN_IMAGE}/35359927/c08e7d1bbf0c6b295be70c987e7ef162dfeeeb1d.png The loadstring function now has a 2nd optional parameter for the package name. You can specify a different package where the code will be executed in. {STEAM_CLAN_IMAGE}/35359927/eb59276940436c81b3cfd0b426baa23a09a26497.png For example you could create a console function that exec
2021-11-19 16:20 UTC · Community Announcements · Talos
Onset 1.5.2 (Protocol Compatibility 5) Motorboat_02 {STEAM_CLAN_IMAGE}/35359927/edda6a33d4b8a63d250566bbdfb00f6bdcc47f18.png Helicopter_06 {STEAM_CLAN_IMAGE}/35359927/7c8a53070e0fcff13c641ea5162c10aa1810adc9.png Fix roof collision of the marketplace building. Fix scooter steer animation. Update WebUI. Add missing Lua functions to the client. IsValidNPC(npcid) IsValidDoor(doorid) IsValidText3D(text3did) GetText3DActor(text3did) GetText3DText(text3did) UnrealLua AActor::GetActorTags() Server Add global event handler to C# "CallEventGlobally" (Thanks to DasDarki). Fix C# context based registratio
2021-07-18 15:21 UTC · Community Announcements · Talos
Game Fix UCharacterMovementComponent not working with GetComponentsByClass Increase tow truck acceleration. Fix door model number 6 collision. Fix game freezes mostly happening in fullscreen mode. Fix ambient sound near the northern desert mountain. Fix tractor, van and news van body coloring. Server Fix some Lua natives that broke due to C#. Fix reported C# errors (Thanks to DaskDarki). Fix crash on multi-dimensional tables. Add function EnableObjectStreamEvents (bEnable) which enables OnObjectStreamIn/Out events. Add optional bSync parameter to SetObjectLocation/Rotation and SetVehicleLocati
2021-07-01 15:07 UTC · Community Announcements · Talos
Onset 1.5.0 (Protocol Compatibility 5) The game compatibility has changed in this release. Server owners must update their server via steamcmd in order to allow clients to connect. https://dev.playonset.com/wiki/DedicatedServer Experimental C# support (server side) {STEAM_CLAN_IMAGE}/35359927/a42336726d23ab8c221f8357bf654020f38ec381.png Onset now features C# as a secondary scripting language. Why C#? Lua hits its limits when it comes to large projects. Becoming difficult to keep track of structure due to it's missing type safety and limited OOP. Onset is and was always about learning and havin
2021-02-11 18:14 UTC · Community Announcements · Talos
Onset 1.4.3 (Protocol Compatibility 4) Firetruck {STEAM_CLAN_IMAGE}/35359927/eaa119a3d3ad412a805f8307e08c06ec180d856d.png Keybindings for the ladder: E, Q - Extend ladder Numpad 4, 6 - Rotate ladder Numpad 2, 8 - Move ladder up and down The ladder and water mesh is a skeletal mesh with an attachment point named "water". You can use that to spawn and attach water particles through Lua. Lua function SetWebFocus for WebUIs This is a great addition to WebUIs. Until now you couldn't focus an input on purpose. For example for a custom chat system. function OnKeyPress(key) if key == "Space Bar" then
2021-01-22 11:48 UTC · Community Announcements · Talos
Onset 1.4.2 (Protocol Compatibility 4) Remote WebUI whitelisting Until now remote WebUIs could only display websites that have been whitelisted in the game config. To give you more freedom, servers can now request the client to whitelist additional domains. Only domain names with a top level domain (TLD) can be whitelisted. Use the new function AddWebUIWhitelist in your index.lua or any other package script. When a player connects they will be asked. {STEAM_CLAN_IMAGE}/35359927/1ab6d286a3460cfab541ab7b0896cc8652038c19.png Example whitelisting from the above picture: --index.lua AddWebUIWhiteli
2021-01-11 19:28 UTC · Community Announcements · Talos
Onset 1.4.1 (Protocol Compatibility 4) Package index.lua Each package can now register package files and scripts in a special Lua file. The index.lua is executed before the server loads the package.json file. In this Lua file you can register scripts and files to this package. The following functions are only available to the index.lua script. Besides that, only Lua library functions are exposed the index.lua but no other Onset server functions. AddServerScript AddClientScript AddSharedScript AddFile Example for an index.lua script: AddServerScript("server/*_s.lua") AddClientScript("client/*_c
2020-12-20 20:46 UTC · Community Announcements · Talos
Enable new winter functions: EnableSnowParticles(bEnable) Enable snow particles in player view. SetLandscapeSnowAlpha(Alpha) Changes how much snow is visible on the landscape. A value of 0 means no snow at all and a value of 1 means fully covered with snow. Both functions are client side. This update also includes a maintenance update for the WebUIs. Please report any problems with scripted WebUIs or the main menu of the game. {STEAM_CLAN_IMAGE}/35359927/6199771e134b7c8c04c0e187f79a7b9b613f5c5b.png
2020-12-15 15:02 UTC · Community Announcements · Talos
The game compatibility has changed in this release. Server owners must update their server via steamcmd in order to allow clients to connect. https://dev.playonset.com/wiki/DedicatedServer Gas Station Erwann reworked the gas station in the main city. It looks a lot more attractive now. {STEAM_CLAN_IMAGE}/35359927/7d705391e22a812b94c83b15bd2203db354dd382.jpg {STEAM_CLAN_IMAGE}/35359927/ea4a13080d558a7af6827257b85828178863892b.jpg A new sign on top the city hills fill some empty space. {STEAM_CLAN_IMAGE}/35359927/af7b3943db44585a357505f7e6ca59be815df5e5.png The restricted rooms in the townhall a
2020-10-30 17:01 UTC · Community Announcements · Talos
Cemetery For the Halloween update Erwann designed a spooky cemetery near the race track and prison. {STEAM_CLAN_IMAGE}/35359927/30249ee59408d5dfa98956989efda8bbc823cea9.jpg {STEAM_CLAN_IMAGE}/35359927/28f254f0e2f458edff26c372c15a39fc333bbc69.jpg Truck {STEAM_CLAN_IMAGE}/35359927/5711b3dfdebae72a048cbff5783bfa3b3e259ec2.png Other changes Support .m4a audio files. Increase SetSoundPitch limit to 10. Event OnPlayerCrouch can now be cancelled. Parameter "radius" in CreateSound3D is now optional. Pak files can now be placed in the %LocalAppData%\Onset\Saved\PakFiles directory, bypassing the 2GB dow
2020-10-19 15:22 UTC · Community Announcements · Talos
Apartment Prefab Erwann has been working on an apartment prefab that can be spawned anywhere on the map. {STEAM_CLAN_IMAGE}/35359927/9183ed5252f5aef9a39101e9a56ab542039342b6.jpg {STEAM_CLAN_IMAGE}/35359927/0ed300d1ce9e9bbbb8b2de3e60ce8b8df6a38d77.jpg {STEAM_CLAN_IMAGE}/35359927/584959119e830dc00791eb74b644d7c4176daa27.jpg {STEAM_CLAN_IMAGE}/35359927/6911b33fdf22e78005c10a2578730a6bfd83948e.jpg Prefab 01a without furniture. /Game/Geometry/Prefabs/PF_Apartment_01a Prefab 01b with furniture as seen in the pictures. /Game/Geometry/Prefabs/PF_Apartment_01b Spawning the apartment interior from Lua.
2020-10-08 10:56 UTC · Community Announcements · Talos
Client changes Custom maps The long awaited feature has finally arrived. You can now load maps/level from the Unreal Engine in Onset. See the Developer Wiki on how to get started with Custom Maps. https://dev.playonset.com/wiki/Custom_Maps First public playable custom maps: Office {STEAM_CLAN_IMAGE}/35359927/f3f2eeafc60a5191b24dcbb14373e406e534192d.jpg Factory Map {STEAM_CLAN_IMAGE}/35359927/3ef56aa3c4ef54f632f6e68f43e8b730f7ae7115.png Town Hall {STEAM_CLAN_IMAGE}/35359927/e8b80b29cf063d52c6538c1640b9851001b4dcbb.jpg {STEAM_CLAN_IMAGE}/35359927/e01dc20344f613266aabd39b35622626e41c01a1.jpg Elev
Full appinfo as delivered by Steam PICS, changenumber 37349149. Also at /api/app/1105810/raw.
{
"appid": "1105810",
"common": {
"name": "Onset",
"type": "Game",
"releasestate": "released",
"oslist": "windows",
"osarch": "64",
"clienttga": "4f2802709a65dd31683d193e6869423c70de9a88",
"clienticon": "83ec3467f351003b5160bbe01887a06c1e3e54d2",
"icon": "3c2ad5d1ecd47c9b1fa10061b0372638b75aeb2b",
"logo": "a0d0e0d362eff9d7fdd741c0896b8793fa9fbb15",
"logo_small": "a0d0e0d362eff9d7fdd741c0896b8793fa9fbb15_thumb",
"eulas": {
"0": {
"id": "1105810_eula_0",
"name": "Onset EULA",
"url": "https://store.steampowered.com//eula/1105810_eula_0"
}
},
"content_descriptors": {
"0": "5"
},
"metacritic_name": "Onset",
"small_capsule": {
"english": "capsule_231x87.jpg"
},
"header_image": {
"english": "header.jpg"
},
"library_assets": {
"library_capsule": "en",
"library_hero": "en",
"library_logo": "en",
"logo_position": {
"pinned_position": "BottomCenter",
"width_pct": "100",
"height_pct": "81.2628631362305"
}
},
"library_assets_full": {
"library_capsule": {
"image": {
"english": "library_600x900.jpg"
},
"image2x": {
"english": "library_600x900_2x.jpg"
}
},
"library_hero": {
"image": {
"english": "library_hero.jpg"
}
},
"library_logo": {
"logo_position": {
"pinned_position": "BottomCenter",
"width_pct": "100",
"height_pct": "81.2628631362305"
},
"image": {
"english": "logo.png"
}
}
},
"store_asset_mtime": "1643640829",
"associations": {
"0": {
"type": "developer",
"name": "Blue Mountains"
},
"1": {
"type": "publisher",
"name": "Blue Mountains"
}
},
"primary_genre": "29",
"genres": {
"0": "1",
"1": "23",
"2": "29",
"3": "3",
"4": "28",
"5": "70"
},
"category": {
"category_36": "1",
"category_1": "1",
"category_17": "1",
"category_20": "1",
"category_49": "1",
"category_62": "1"
},
"supported_languages": {
"english": {
"supported": "true"
},
"french": {
"supported": "true"
},
"german": {
"supported": "true"
},
"russian": {
"supported": "true"
},
"turkish": {
"supported": "true"
}
},
"steam_release_date": "1576263608",
"community_hub_visible": "1",
"gameid": "1105810",
"content_descriptors_including_dlc": {
"0": "5"
},
"store_tags": {
"0": "122",
"1": "128",
"2": "599",
"3": "19",
"4": "492",
"5": "1695",
"6": "3859",
"7": "3810",
"8": "493"
},
"review_score": "5",
"review_percentage": "66"
},
"extended": {
"gamedir": "Onset",
"serverbrowsername": "Onset",
"developer": "Blue Mountains",
"publisher": "Blue Mountains",
"homepage": "https://www.playonset.com"
},
"config": {
"installdir": "Onset",
"launch": {
"0": {
"executable": "Onset.exe",
"type": "default",
"config": {
"oslist": "windows",
"osarch": "64"
}
},
"1": {
"executable": "Onset.sh",
"type": "default",
"config": {
"oslist": "linux",
"osarch": "64"
}
}
}
},
"depots": {
"228988": {
"config": {
"oslist": "windows"
},
"depotfromapp": "228980",
"sharedinstall": "1"
},
"228990": {
"config": {
"oslist": "windows"
},
"depotfromapp": "228980",
"sharedinstall": "1"
},
"1105811": {
"config": {
"oslist": "windows"
},
"manifests": {
"public": {
"gid": "5455222269391627673",
"size": "18754167765",
"download": "7958812160"
}
}
},
"baselanguages": "english",
"branches": {
"public": {
"buildid": "8185986",
"timeupdated": "1646813998",
"timebuildupdated": "1644576200"
}
},
"privatebranches": "1"
}
}