Releases: scholtzm/vapor
Releases · scholtzm/vapor
vapor v1.3.0
vapor v1.2.2
Release notes:
- Fixed invalid reference to
SteamUser
handler in the internalwebLogOn
implementation.
vapor v1.2.1
This was a maintenance update.
vapor v1.2.0
Release notes:
- Added new option to
init
method:logonID
(number value which maps toobfustucated_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?)
vapor v1.1.0
Release notes:
- Fixed
loginKey
event. - Added new built-in plugins:
admins
andpresence
- Deprecated
isAdmin
method in Utils. - Updated examples and docs
- Updated dependencies
vapor v1.0.0
Vapor v1.0.0 is finally here. 😄 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
andrememberPassword
- Added new built-in plugin:
auto-responder
- Built-in plugin
fs
now usesdata-<username>
as its default folder - Vapor methods
init
anduse
are now chainable - added more tests
- switched to ESLint and added all necessary packages to dependencies
vapor v0.13.1
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
vapor v0.13.0
Release notes:
- added
getPlugins
method to API API.hasHandler
now also accepts event name (string
) as it's sole argument- updated examples
vapor v0.12.0
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
- wrapper for emitting
- added new built-in plugin:
account-flags
- fixed examples
vapor v0.11.0
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 new
- 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 todisconnected
- 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
- added new example
- lot's of small fixes
- updated all dependencies
- updated docs