Releases: webdev03/meowclient
v3.1.0
v3.0.0
V3 is out!
Meowclient v3 changes the API so instead of code like
import { ScratchSession } from "meowclient";
const s = new ScratchSession();
await s.init("user", "pass");
const project = s.getProject(104);it is now
import { ScratchSession, Project } from "meowclient";
const s = new ScratchSession();
await s.init("user", "pass");
const project = new Project(s, 104);Thanks to uwv on Scratch (Zxnii on github) for suggesting that change.
There are more changes in this update such as Project.getCommentReplies() now taking ID as the first parameter instead of the last.
JSDoc comments should help and in the future typedoc might replace the examples.
Thank you for using meowclient!
v2.3.2
Fixed returning type for getComments and improve "mute_status" in Session JSON type
Full Changelog: v2.3.1...v2.3.2
v2.3.1
Fix TS mistake
Full Changelog: v2.3.0...v2.3.1
v2.3.0
Fix a bit of JSDoc comments and add in signature editing
Full Changelog: v2.2.1...v2.3.0
v2.2.1
Adds matrix testing and fixes node version in package.json
Full Changelog: v2.2.0...v2.2.1
v2.2.0
What's Changed
- Make CloudConnection an EventEmitter by @hello-smile6 in #19
New Contributors
- @hello-smile6 made their first contribution in #19
Full Changelog: v2.1.0...v2.2.0
v2.1.0
v2.0.0
v1.1.0
This switches to node-html-parser instead of jsdom!
Full Changelog: v1.0.0...v1.1.0