Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
you can get the current build ID on the steam servers via "app_info_print #ID".
But take into account, due a nice bug[github.com] you cannot pipe it into anything except TTY.
The build ID of your local installation can be found in the manifest file (%SERVER_INSTALL_DIR%/steamapps/manifest_#APP_ID.acf under windows).
If you want to write an auto updater, I found two solutions:
- Use steam WebAPI like GetScheme or isUpToDate. But it seems, that not all games support this web API (also, some needs the client app_id insteand of the server app_id as parameter
- extract the steam server build ID from steamCMD cache file (%STEAMCMD%/appcache/appinfo.vdf under windows)
I started a private project[github.com] which implements the second approach and has a roughly implementation of the first one. The project still needs some tests + never compiled/tested under linux yet.
you can get the current build ID on the steam servers via "app_info_print #ID".
But take into account, due a nice bug[github.com] you cannot pipe it into anything except TTY.
The build ID of your local installation can be found in the manifest file (%SERVER_INSTALL_DIR%/steamapps/manifest_#APP_ID.acf under windows).
If you want to write an auto updater, I found two solutions:
- Use steam WebAPI like GetScheme or isUpToDate. But it seems, that not all games support this web API (also, some needs the client app_id insteand of the server app_id as parameter)
- extract the steam server build ID from steamCMD cache file (%STEAMCMD%/appcache/appinfo.vdf under windows)
I started a private project[github.com] which implements the second approach and has a roughly implementation of the first one. The project still needs some tests + never compiled/tested under linux yet.
#1
Showing 1-1 of 1 comments