Skip to content

Commit 8ff80e7

Browse files
author
vvo
committed
2.2.0
* feat: add --no-loop avoids looping in GIF fixes #66 #68
1 parent f6e47b1 commit 8ff80e7

File tree

3 files changed

+55
-10
lines changed

3 files changed

+55
-10
lines changed

HISTORY.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.2.0 (2016-11-03)
2+
3+
* feat: add --no-loop avoids looping in GIF fixes #66 #68
4+
15
# 2.1.6 (2016-03-11)
26

37
* fix: windows comes with fontconfig pre-installed in ImageMagick
@@ -25,4 +29,3 @@
2529
# 2.1.0 (2015-01-11)
2630

2731
* add --text
28-

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gifify",
3-
"version": "2.1.6",
3+
"version": "2.2.0",
44
"description": "Convert any video file to an optimized animated GIF",
55
"main": "index.js",
66
"bin": {
@@ -20,12 +20,12 @@
2020
},
2121
"homepage": "https://github.com/vvo/gifify",
2222
"dependencies": {
23-
"commander": "2.4.0",
24-
"debug": "2.1.0",
25-
"moment": "2.15.0",
26-
"moment-duration-format": "1.3.0",
27-
"promise": "6.0.1",
28-
"whereis": "0.4.0",
29-
"colors": "1.0.3"
23+
"colors": "^1.1.2",
24+
"commander": "^2.9.0",
25+
"debug": "^2.2.0",
26+
"moment": "^2.15.2",
27+
"moment-duration-format": "^1.3.0",
28+
"promise": "^7.1.1",
29+
"whereis": "^0.4.0"
3030
}
31-
}
31+
}

yarn.lock

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
asap@~1.0.0:
4+
version "1.0.0"
5+
resolved "https://registry.yarnpkg.com/asap/-/asap-1.0.0.tgz#b2a45da5fdfa20b0496fc3768cc27c12fa916a7d"
6+
7+
8+
version "1.0.3"
9+
resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b"
10+
11+
12+
version "2.4.0"
13+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.4.0.tgz#fad884ce8f09509b10a5ec931332cb97786e2fd6"
14+
15+
16+
version "2.1.0"
17+
resolved "https://registry.yarnpkg.com/debug/-/debug-2.1.0.tgz#33ab915659d8c2cc8a41443d94d6ebd37697ed21"
18+
dependencies:
19+
ms "0.6.2"
20+
21+
22+
version "1.3.0"
23+
resolved "https://registry.yarnpkg.com/moment-duration-format/-/moment-duration-format-1.3.0.tgz#541771b5f87a049cc65540475d3ad966737d6908"
24+
25+
26+
version "2.15.0"
27+
resolved "https://registry.yarnpkg.com/moment/-/moment-2.15.0.tgz#cc9e33958bf4a99dea7111d5e62ed3c13fc96440"
28+
29+
30+
version "0.6.2"
31+
resolved "https://registry.yarnpkg.com/ms/-/ms-0.6.2.tgz#d89c2124c6fdc1353d65a8b77bf1aac4b193708c"
32+
33+
34+
version "6.0.1"
35+
resolved "https://registry.yarnpkg.com/promise/-/promise-6.0.1.tgz#d475cff81c083a27fe87ae19952b72c1a6936237"
36+
dependencies:
37+
asap "~1.0.0"
38+
39+
40+
version "0.4.0"
41+
resolved "https://registry.yarnpkg.com/whereis/-/whereis-0.4.0.tgz#7ace618a4b8c2a8863db36ff9f54ef8aa23d822b"
42+

0 commit comments

Comments
 (0)