Skip to content

v3.1.0.0

Compare
Choose a tag to compare
@steve02081504 steve02081504 released this 02 Jan 02:38
· 38 commits to master since this release

npm ver: 3.1.0

What's Changed

New Features

  • Added jsstp.list_info_t to handle list type SSTP response
  • Added jsstp.Get* index reflector to Execute Get* commands conveniently
const { jsstp } = require('jsstp')
var SSPver=await jsstp.GetShortVersion()
console.log(SSPver)
var names=await jsstp.GetNames()
for(var name of names)
	console.log(name)
  • Added jsstp.Set* index reflector to Execute Set* commands conveniently
const { jsstp } = require('jsstp')
await jsstp.SetCookie('name','value')

Breaking Changes

Documentation

Other improvements

  • Use packer to further compress dist
  • Refactored the dist and dts generation process

New Contributors

Full Changelog: v3.0.0.1...v3.1.0.0