Scholtzm Vapor Versions Save

☁️ Lightweight Steam client framework for node.js

v1.3.0

8 years ago

Release notes:

  • connect method now accepts authentication codes for logging in
  • updated examples
  • updated docs

v1.2.2

8 years ago

Release notes:

  • Fixed invalid reference to SteamUser handler in the internal webLogOn implementation.

v1.2.1

8 years ago

This was a maintenance update.

v1.2.0

8 years ago

Release notes:

  • Added new option to init method: logonID (number value which maps to obfustucated_private_ip when logging in)
    • You'll need to set this in order to use multiple instances of Vapor with the same account
  • loginKey is now automatically accepted (login keys work even without this, why?)

v1.1.0

8 years ago

Release notes:

  • Fixed loginKey event.
  • Added new built-in plugins: admins and presence
  • Deprecated isAdmin method in Utils.
  • Updated examples and docs
  • Updated dependencies

v1.0.0

8 years ago

Vapor v1.0.0 is finally here. :smile: This also means that the plugin API is stable and won't change until the next major release.

Release notes:

  • Added new event: loginKey
  • Added new options accepted by init: loginKey and rememberPassword
  • Added new built-in plugin: auto-responder
  • Built-in plugin fs now uses data-<username> as its default folder
  • Vapor methods init and use are now chainable
  • added more tests
  • switched to ESLint and added all necessary packages to dependencies

v0.13.1

8 years ago

Release notes:

  • displayName will be only set if it was explicitly defined in options
  • updated all dependencies
  • added another example of cross-plugin communication
  • small docs updates

v0.13.0

8 years ago

Release notes:

  • added getPlugins method to API
  • API.hasHandler now also accepts event name (string) as it's sole argument
  • updated examples

v0.12.0

8 years ago

Release notes:

  • added logger back to API
    • wrapper for emitting message:* events
    • works exactly the same as before
    • automatically adds prefix based on plugin's name
  • added new built-in plugin: account-flags
  • fixed examples

v0.11.0

8 years ago

Big changes in this one.

Release notes:

  • added generic ability to register handler for any emitter/plugin
  • decoupled Vapor from file system
    • added new readFile / writeFile events
    • added simple fs handler for these events
  • added hasHandler method to API
  • marked most of Vapor properties as private
  • added new servers property to Vapor - use it to set your own up-to-date list of Steam servers
  • renamed error event to disconnected
  • added new message:* events
  • removed winston dependency --> this code will be moved to separate Vapor plugin
  • added new built-in plugin: console-logger
  • added new built-in plugin: debugger
  • removed faulty steamGameCoordinator handler
    • added new example External Handlers which shows how to instantiate other handlers
  • lot's of small fixes
  • updated all dependencies
  • updated docs