Skip to content

Releases: webdev03/meowclient

v3.1.0

02 Oct 04:18

Choose a tag to compare

First release in a long time! Meowclient v4 is coming soon with the rest of the social actions but here's a sneak peek!
Full Changelog: v3.0.1...v3.1.0

v3.0.0

02 Dec 09:09

Choose a tag to compare

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

03 Aug 04:07

Choose a tag to compare

Fixed returning type for getComments and improve "mute_status" in Session JSON type

Full Changelog: v2.3.1...v2.3.2

v2.3.1

16 May 06:35

Choose a tag to compare

Fix TS mistake

Full Changelog: v2.3.0...v2.3.1

v2.3.0

16 May 01:23

Choose a tag to compare

Fix a bit of JSDoc comments and add in signature editing

Full Changelog: v2.2.1...v2.3.0

v2.2.1

05 May 09:30

Choose a tag to compare

Adds matrix testing and fixes node version in package.json

Full Changelog: v2.2.0...v2.2.1

v2.2.0

26 Apr 04:28

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.1.0...v2.2.0

v2.1.0

16 Mar 22:46

Choose a tag to compare

Adds stuff

(I forgot to make a release)

Full Changelog: v2.0.0...v2.1.0

v2.0.0

15 Feb 08:00

Choose a tag to compare

  • Adds forum support
  • BREAKING: Change responses that return status of request into the full request object! Please remember this!

What's Changed

Full Changelog: v1.1.0...v2.0.0

v1.1.0

09 Feb 07:14

Choose a tag to compare

This switches to node-html-parser instead of jsdom!

Full Changelog: v1.0.0...v1.1.0