Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nodecg

Package Overview
Dependencies
Maintainers
0
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodecg - npm Package Versions

1
12

1.2.2-master.1fb2545

Diff

hoishin
published 1.2.2-master.93a1fc9 •

hoishin
published 1.2.2 •

Changelog

Source

1.2.2 (2018-10-30)

Bug Fixes

  • update Node.js version check (#438) (086621d)
  • types: remove optional parameters in callback (81b0a11)

Features

  • security: add support for passphrase for SSL key (#437) (c444d9b)
  • replace Pug by Lodash with cache (83404d1)
  • TypeScript: Add NodeCG API TypeScript Type Definition (#432) (9372ca4)

<a name="1.1.3"></a>

hoishin
published 1.2.1 •

hoishin
published 1.2.0 •

lange
published 1.1.3 •

Changelog

Source

1.1.3 (2018-08-05)

Bug Fixes

  • dashboard: also target root html for theme import (0948f5f)
  • dashboard: fix text and icon colors of Asset upload dialog (d1d3a45)
  • dashboard: implement missing dark theme for bundle dialogs (d14158f)
  • package: roll node-localstorage to v1.3.1 (56d8bb7)

<a name="1.1.2"></a>

lange
published 1.1.2 •

Changelog

Source

1.1.2 (2018-07-19)

Bug Fixes

  • dashboard: fix graphic instances not appearing when using a bundle that is not a git repo (54cfcd6)

<a name="1.1.1"></a>

lange
published 1.1.1 •

Changelog

Source

1.1.1 (2018-07-19)

Bug Fixes

  • dashboard: fix missing background color on graphics collapse toggle button (9e6bc4d)
  • package: include schemas folder in zeit pkg builds (c38e463)

<a name="1.1.0"></a>

lange
published 1.1.0 •

Changelog

Source

1.1.0 (2018-07-19)

Features

  • api: add nodecg.bundleGit object (#418) (dfe0b95)
  • api: add nodecg.bundleVersion to api (#459) (170142b)
  • api: introduce bundles replicant (#421) (94d0b1d)
  • dashboard: implement dark theme (#425) (0dafe4e)
  • dashboard: implement redesigned graphics tab with refresh buttons (#420) (215f489)

<a name="1.0.0"></a>

lange
published 1.0.0 •

Changelog

Source

1.0.0 (2018-07-11)

Bug Fixes

  • remove undocumented and non-functional panelClick event (1c20d58)
  • remove undocumented dialog-confirm and dialog-dismiss attribute click handlers (cab06b6)
  • assets: fix "can't set headers..." error (#411) (518cf21)
  • dashboard: remove useless and busted-looking "info" dialog from panels (22499bd)
  • login: use the New Twitch API (#413) (6696231)
  • mounts: put mount routes behind an auth check (c99fa85)
  • sounds: remove undocumented customCues system (efe877e)

Features

  • api: add support for intra-context messaging (#410) (3a3acf7)
  • api: support multiple listenFor handlers (#403) (f19c79b), closes #298
  • bundle-manager: blacklisted bundle directory names (#357) (68e7add)

BREAKING CHANGES

  • dashboard: The undocumented [dialog-confirm] and [dialog-dismiss] attribute click handlers have been removed.
  • dashboard: The undocumented (and broken) panelClick event has been removed.
  • api: sendMessage can now trigger listenFor handlers in the same context (extension, webpage, etc).
  • login: The format of Twitch auth scopes has changed. Please see https://dev.twitch.tv/docs/authentication/#scopes for documentation on this new format.
  • login: Twitch auth now uses the "New Twitch API", instead of the deprecated "v5" API.
  • api: A given context (server, client) can now declare multiple listenFor handlers for a given message. Handlers are called in the order they were registered.

However, a server-side listenFor handler must be careful to only call an acknowledgement once. Attempting to call an acknowledgement more than once will throw an error.

Your server-side code can check if an acknowledgement has already been called/handled by checking its .handled property.

Example:

nodecg.listenFor('example', (data, ack) => {
  if (ack && !ack.handled) {
    ack();
  }
});
  • sounds: The undocumented customCues system has been removed.

<a name="0.9.12"></a>

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc