discord-irc
Advanced tools
Comparing version 2.1.0 to 2.1.1
# Changelog | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
## [2.1.1] - 2016-10-21 | ||
### Fixed | ||
* A bug where Discord attachment URLs weren't posted to IRC, thanks to @LordAlderaan for the report. | ||
## [2.1.0] - 2016-10-09 | ||
## Added | ||
### Added | ||
* Messages sent to IRC will now use the correct server nickname, | ||
@@ -7,0 +11,0 @@ instead of the user's global username (thanks to @DarkSpyro003). |
@@ -176,3 +176,3 @@ 'use strict'; | ||
if (message.attachments && message.attachments.length) { | ||
if (message.attachments && message.attachments.size) { | ||
message.attachments.forEach(a => { | ||
@@ -179,0 +179,0 @@ const urlMessage = `<${ displayUsername }> ${ a.url }`; |
{ | ||
"name": "discord-irc", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Connects IRC and Discord channels by sending messages back and forth.", | ||
@@ -52,11 +52,11 @@ "keywords": [ | ||
"babel-preset-stage-0": "^6.5.0", | ||
"chai": "3.5.0", | ||
"eslint": "^3.6.0", | ||
"eslint-config-airbnb-base": "^8.0.0", | ||
"eslint-plugin-import": "^2.0.0", | ||
"mocha": "3.1.0", | ||
"chai": "^3.5.0", | ||
"eslint": "^3.7.1", | ||
"eslint-config-airbnb-base": "^9.0.0", | ||
"eslint-plugin-import": "^2.0.1", | ||
"mocha": "^3.1.2", | ||
"nyc": "^8.3.0", | ||
"sinon": "1.17.6", | ||
"sinon-chai": "2.8.0" | ||
"sinon": "^1.17.6", | ||
"sinon-chai": "^2.8.0" | ||
} | ||
} |
131131
16