lolcommits 0.9.2 → 0.9.3.pre1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop_todo.yml +6 -0
- data/CHANGELOG.md +243 -105
- data/CONTRIBUTING.md +2 -2
- data/README.md +10 -3
- data/bin/lolcommits +9 -16
- data/features/step_definitions/lolcommits_steps.rb +0 -1
- data/features/support/env.rb +0 -1
- data/features/support/path_helpers.rb +0 -1
- data/lib/core_ext/mini_magick/utilities.rb +0 -1
- data/lib/lolcommits.rb +16 -16
- data/lib/lolcommits/backends/git_info.rb +0 -1
- data/lib/lolcommits/backends/installation_git.rb +0 -1
- data/lib/lolcommits/backends/installation_mercurial.rb +0 -1
- data/lib/lolcommits/backends/mercurial_info.rb +0 -1
- data/lib/lolcommits/capturer.rb +0 -1
- data/lib/lolcommits/capturer/capture_cygwin.rb +0 -1
- data/lib/lolcommits/capturer/capture_fake.rb +0 -1
- data/lib/lolcommits/capturer/capture_linux.rb +0 -1
- data/lib/lolcommits/capturer/capture_linux_animated.rb +0 -1
- data/lib/lolcommits/capturer/capture_mac.rb +0 -1
- data/lib/lolcommits/capturer/capture_mac_animated.rb +0 -1
- data/lib/lolcommits/capturer/capture_windows.rb +0 -1
- data/lib/lolcommits/cli/fatals.rb +0 -8
- data/lib/lolcommits/cli/launcher.rb +0 -1
- data/lib/lolcommits/cli/process_runner.rb +0 -2
- data/lib/lolcommits/cli/timelapse_gif.rb +0 -1
- data/lib/lolcommits/configuration.rb +10 -7
- data/lib/lolcommits/gem_plugin.rb +46 -0
- data/lib/lolcommits/installation.rb +0 -1
- data/lib/lolcommits/platform.rb +0 -1
- data/lib/lolcommits/plugin/base.rb +110 -0
- data/lib/lolcommits/plugin/dot_com.rb +50 -0
- data/lib/lolcommits/plugin/lol_flowdock.rb +69 -0
- data/lib/lolcommits/plugin/lol_hipchat.rb +124 -0
- data/lib/lolcommits/plugin/lol_protonet.rb +68 -0
- data/lib/lolcommits/plugin/lol_slack.rb +68 -0
- data/lib/lolcommits/plugin/lol_tumblr.rb +129 -0
- data/lib/lolcommits/plugin/lol_twitter.rb +176 -0
- data/lib/lolcommits/plugin/lol_yammer.rb +84 -0
- data/lib/lolcommits/plugin/lolsrv.rb +58 -0
- data/lib/lolcommits/plugin/loltext.rb +190 -0
- data/lib/lolcommits/plugin/term_output.rb +55 -0
- data/lib/lolcommits/{plugins → plugin}/tranzlate.rb +14 -15
- data/lib/lolcommits/plugin/uploldz.rb +65 -0
- data/lib/lolcommits/plugin_manager.rb +48 -0
- data/lib/lolcommits/runner.rb +4 -5
- data/lib/lolcommits/test_helpers/fake_io.rb +20 -0
- data/lib/lolcommits/test_helpers/git_repo.rb +44 -0
- data/lib/lolcommits/vcs_info.rb +0 -1
- data/lib/lolcommits/version.rb +2 -2
- data/lolcommits.gemspec +2 -2
- data/test/lolcommits_test.rb +1 -2
- data/test/plugins_test.rb +7 -8
- metadata +22 -19
- data/lib/core_ext/class.rb +0 -8
- data/lib/lolcommits/plugin.rb +0 -123
- data/lib/lolcommits/plugins/dot_com.rb +0 -51
- data/lib/lolcommits/plugins/lol_flowdock.rb +0 -70
- data/lib/lolcommits/plugins/lol_hipchat.rb +0 -125
- data/lib/lolcommits/plugins/lol_protonet.rb +0 -69
- data/lib/lolcommits/plugins/lol_slack.rb +0 -69
- data/lib/lolcommits/plugins/lol_tumblr.rb +0 -129
- data/lib/lolcommits/plugins/lol_twitter.rb +0 -176
- data/lib/lolcommits/plugins/lol_yammer.rb +0 -85
- data/lib/lolcommits/plugins/lolsrv.rb +0 -58
- data/lib/lolcommits/plugins/loltext.rb +0 -184
- data/lib/lolcommits/plugins/term_output.rb +0 -54
- data/lib/lolcommits/plugins/uploldz.rb +0 -66
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55a7484224a62eed8753cf32fad0f20d9a483085
|
4
|
+
data.tar.gz: 2df1e2ec28806051f29c7b36be4a0e488ee7e421
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95f619adfecfd08f49430f1745a73a1de8047b9342564d304149d61ba00ccb8bdff560760fa6bf33e440e25ab505f6c6239527ff328f88f098bf71bbb2dbfa08
|
7
|
+
data.tar.gz: 5aac1f41ae637f4d479707e60d4140fcf240ddb8820fd82de8415ca93c7d43494be40f2dfc266e16e6bad737bc9015089ead311ed32e099cb0d15d3f8558e162
|
data/.rubocop_todo.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -5,184 +5,191 @@ project adheres to [Semantic Versioning][Semver].
|
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
7
|
|
8
|
-
* WIP - extract plugins to
|
8
|
+
* WIP - extract more plugins to gems ...
|
9
9
|
* Your contribution here!
|
10
10
|
|
11
|
+
## [0.9.3][] (6 March 2017)
|
12
|
+
* Gem plugin support (@matthutchinson [#332][])
|
13
|
+
* Add North gravity for ImageMagick (@domudall [#331][])
|
14
|
+
* remove Ruby 1.9 magic comments (@matthutchinson [#330][])
|
15
|
+
* add links to PRs in CHANGELOG (@bfontaine [#329][])
|
16
|
+
|
11
17
|
## [0.9.2][] (3 January 2017)
|
12
|
-
* Remove twitter gem, fixes Ruby 2.4 issues (@matthutchinson #328)
|
18
|
+
* Remove twitter gem, fixes Ruby 2.4 issues (@matthutchinson [#328][])
|
13
19
|
|
14
20
|
## [0.9.1][] (20 December 2016)
|
15
|
-
* Remove Choice gem, use Methadone (@matthutchinson #326)
|
21
|
+
* Remove Choice gem, use Methadone (@matthutchinson [#326][])
|
16
22
|
|
17
23
|
## [0.9.0][] (14 December 2016)
|
18
|
-
* ditch ruby 1.9 support and upgrade some gems (@matthutchinson #325)
|
19
|
-
* term_output plugin added (iTerm2 only) (@ruxton #323)
|
24
|
+
* ditch ruby 1.9 support and upgrade some gems (@matthutchinson [#325][])
|
25
|
+
* term_output plugin added (iTerm2 only) (@ruxton [#323][])
|
20
26
|
|
21
27
|
## [0.8.1][] (11 October 2016)
|
22
|
-
*
|
23
|
-
*
|
24
|
-
*
|
25
|
-
*
|
28
|
+
* **last release supporting Ruby < 2.0**
|
29
|
+
* shebang fix in installer (@matthutchinson [#317][])
|
30
|
+
* FlowDock plugin (@mikecrittenden [#318][])
|
31
|
+
* HipChat plugin (@Salzig [#320][])
|
32
|
+
* peg gems for legacy ruby 1.9.3 (@matthutchinson [#321][])
|
26
33
|
|
27
34
|
## [0.8.0][] (13 July 2016)
|
28
|
-
* New release requires Ruby 1.9.3+ minimum (@matthutchinson #313)
|
35
|
+
* New release requires Ruby 1.9.3+ minimum (@matthutchinson [#313][])
|
29
36
|
* All gems upgraded to latest versions (6 held back, see lolcommits.gemspec)
|
30
37
|
* See [this issue](https://github.com/mroth/lolcommits/issues/310) for details
|
31
38
|
|
32
|
-
## [0.7.0][] (13 July 2016)
|
33
|
-
*
|
39
|
+
## [0.7.0][] (13 July 2016)
|
40
|
+
* **last release supporting Ruby < 1.9.3** (@matthutchinson [#313][])
|
34
41
|
|
35
42
|
## [0.6.7][] (8 June 2016)
|
36
|
-
* Remove `console` binary from packaged gem (@samgranieri #309)
|
43
|
+
* Remove `console` binary from packaged gem (@samgranieri [#309][])
|
37
44
|
|
38
45
|
## [0.6.6][] (1 June 2016)
|
39
|
-
* Show error/exit when --config outside a git repo (@matthutchinson #308)
|
40
|
-
* Add more options to loltext plugin (@ruxton #304)
|
46
|
+
* Show error/exit when --config outside a git repo (@matthutchinson [#308][])
|
47
|
+
* Add more options to loltext plugin (@ruxton [#304][])
|
41
48
|
* Added CODE_OF_CONDUCT.md to repo (@matthutchinson)
|
42
49
|
* Added a useful `console` binary for development and debugging (@matthutchinson)
|
43
50
|
|
44
51
|
## [0.6.5][] (12 April 2016)
|
45
|
-
* Add mercurial support (@tak #301 #302 #303)
|
52
|
+
* Add mercurial support (@tak [#301][] [#302][] [#303][])
|
46
53
|
|
47
54
|
## [0.6.4][] (15 March 2016)
|
48
|
-
* Add quotes to correctly handle paths with spaces (@matthutchinson #298)
|
55
|
+
* Add quotes to correctly handle paths with spaces (@matthutchinson [#298][])
|
49
56
|
|
50
57
|
## [0.6.3][] (14 March 2016)
|
51
|
-
* Add quotes to correctly handle paths with spaces (@pedrocunha #296)
|
52
|
-
* Added plugin config path to output (@KrauseFx #294)
|
58
|
+
* Add quotes to correctly handle paths with spaces (@pedrocunha [#296][])
|
59
|
+
* Added plugin config path to output (@KrauseFx [#294][])
|
53
60
|
|
54
61
|
## [0.6.2][] (21 February 2016)
|
55
|
-
* Avoid invoking ruby if in a rebase (@jhawthorn #286)
|
56
|
-
* Slow gif problem on mac (@a06kin #289)
|
57
|
-
* Peg RuboCop gem to 0.37.2 and fix cop issues (@matthutchinson #292)
|
62
|
+
* Avoid invoking ruby if in a rebase (@jhawthorn [#286][])
|
63
|
+
* Slow gif problem on mac (@a06kin [#289][])
|
64
|
+
* Peg RuboCop gem to 0.37.2 and fix cop issues (@matthutchinson [#292][])
|
58
65
|
|
59
66
|
## [0.6.1][] (16 September 2015)
|
60
|
-
* Optional http auth header user/password in uploldz plugin (@felixroos #283)
|
61
|
-
* Slack plugin added (@yasakbulut #284)
|
67
|
+
* Optional http auth header user/password in uploldz plugin (@felixroos [#283][])
|
68
|
+
* Slack plugin added (@yasakbulut [#284][])
|
62
69
|
* Updated rubies in Travis settings (@matthutchinson)
|
63
70
|
* Fixed README badge URLS (@matthutchinson)
|
64
71
|
|
65
72
|
## [0.6.0][] (27 July 2015)
|
66
|
-
* Configurable text options for loltext plugin (@matthutchinson #282)
|
67
|
-
* Working AppVeyor configuration added (@nysthee #280)
|
68
|
-
* Tumblr plugin (@mveytsman #279)
|
73
|
+
* Configurable text options for loltext plugin (@matthutchinson [#282][])
|
74
|
+
* Working AppVeyor configuration added (@nysthee [#280][])
|
75
|
+
* Tumblr plugin (@mveytsman [#279][])
|
69
76
|
* CHANGELOG (this file) now in markdown format (@matthutchinson)
|
70
77
|
|
71
78
|
## [0.5.9][] (24 April 2015)
|
72
|
-
* Fix windows post commit hook path (@matthutchinson #278)
|
79
|
+
* Fix windows post commit hook path (@matthutchinson [#278][])
|
73
80
|
|
74
81
|
## [0.5.8][] (22 April 2015)
|
75
|
-
* Fix Windows MiniMagick issue (@matthutchinson #276)
|
76
|
-
* Rubocop code clean ups (@nysthee #272)
|
77
|
-
* Fix gem issues on earlier Ruby versions (#270)
|
78
|
-
* CLI refactoring/cleanups (@mroth #254 #258 #266 #267 #266)
|
79
|
-
* Exit with -1 for bad CLI args (@williamboman #263)
|
80
|
-
* Move unit tests to MiniTest (@mroth #256)
|
81
|
-
* Add branch name to git info (@salzig #252)
|
82
|
-
* lol_protonet plugin added (@salzig #251)
|
83
|
-
* Allow local plugins in $LOLCOMMITS_DIR/.plugins (@salzig #250)
|
82
|
+
* Fix Windows MiniMagick issue (@matthutchinson [#276][])
|
83
|
+
* Rubocop code clean ups (@nysthee [#272][])
|
84
|
+
* Fix gem issues on earlier Ruby versions ([#270][])
|
85
|
+
* CLI refactoring/cleanups (@mroth [#254][] [#258][] [#266][] [#267][] [#266][])
|
86
|
+
* Exit with -1 for bad CLI args (@williamboman [#263][])
|
87
|
+
* Move unit tests to MiniTest (@mroth [#256][])
|
88
|
+
* Add branch name to git info (@salzig [#252][])
|
89
|
+
* lol_protonet plugin added (@salzig [#251][])
|
90
|
+
* Allow local plugins in $LOLCOMMITS_DIR/.plugins (@salzig [#250][])
|
84
91
|
|
85
92
|
## [0.5.7][] (28 December 2014)
|
86
|
-
* Uploldz plugin sends more post params (@clops #224 @matthutchinson #241)
|
87
|
-
* More configurable twitter plugin (@woodrowbarlow #207 @matthutchinson)
|
88
|
-
* Upgrade all gems that can be, 4 held back (#244 @matthutchinson)
|
89
|
-
* Ruby 2.2.0 compatible (#244 @matthutchinson)
|
90
|
-
* Glob /dev/video for default video device (linux only) (#246 @Ferada)
|
93
|
+
* Uploldz plugin sends more post params (@clops [#224][] @matthutchinson [#241][])
|
94
|
+
* More configurable twitter plugin (@woodrowbarlow [#207][] @matthutchinson)
|
95
|
+
* Upgrade all gems that can be, 4 held back ([#244][] @matthutchinson)
|
96
|
+
* Ruby 2.2.0 compatible ([#244][] @matthutchinson)
|
97
|
+
* Glob /dev/video for default video device (linux only) ([#246][] @Ferada)
|
91
98
|
|
92
99
|
## [0.5.6][] (24 November 2014)
|
93
|
-
* Updates and clean ups on the gemspec (@mroth #228)
|
94
|
-
* Travis CI now includes ruby-head (@mroth #229)
|
95
|
-
* Improved error message for ImageMagick issues #159 (@matthutchinson #233)
|
96
|
-
* Fix twitter plugin config issue #231 (@matthutchinson #232)
|
97
|
-
* Update mini_magick gem to 3.8.1 (@matthutchinson #234)
|
98
|
-
* Improve README for LOLCOMMITS_DIR (@dagar #235)
|
99
|
-
* Update README to include ffmpeg installation (@VictorBjelkholm #236)
|
100
|
-
* Better failover when no snapshot created (@matthutchinson #237)
|
101
|
-
* Export LANG to post-commit hook, fixes GitHub client (@matthutchinson #240)
|
100
|
+
* Updates and clean ups on the gemspec (@mroth [#228][])
|
101
|
+
* Travis CI now includes ruby-head (@mroth [#229][])
|
102
|
+
* Improved error message for ImageMagick issues [#159][] (@matthutchinson [#233][])
|
103
|
+
* Fix twitter plugin config issue [#231][] (@matthutchinson [#232][])
|
104
|
+
* Update mini_magick gem to 3.8.1 (@matthutchinson [#234][])
|
105
|
+
* Improve README for LOLCOMMITS_DIR (@dagar [#235][])
|
106
|
+
* Update README to include ffmpeg installation (@VictorBjelkholm [#236][])
|
107
|
+
* Better failover when no snapshot created (@matthutchinson [#237][])
|
108
|
+
* Export LANG to post-commit hook, fixes GitHub client (@matthutchinson [#240][])
|
102
109
|
|
103
110
|
## [0.5.5][] (29 September 2014)
|
104
|
-
* Animated gif capture support (@theY4Kman #226)
|
105
|
-
* Fix plugin config issues with user input (@matthutchinson #225 #223)
|
106
|
-
* Fix Linux FPS timing issues (@matthutchinson #215)
|
107
|
-
* Fix hook enable/disable issue (@matthutchinson #206)
|
108
|
-
* Fix Git GUI issues (@matthutchinson #196 #168 #193 #188 #159 #133 #123 #119 #104 #83)
|
109
|
-
* Mention Boxen script in README (@matthutchinson #208)
|
110
|
-
* Explain global Git hooks how-to in README (@matthutchinson #212 #112)
|
111
|
+
* Animated gif capture support (@theY4Kman [#226][])
|
112
|
+
* Fix plugin config issues with user input (@matthutchinson [#225][] [#223][])
|
113
|
+
* Fix Linux FPS timing issues (@matthutchinson [#215][])
|
114
|
+
* Fix hook enable/disable issue (@matthutchinson [#206][])
|
115
|
+
* Fix Git GUI issues (@matthutchinson [#196][] [#168][] [#193][] [#188][] [#159][] [#133][] [#123][] [#119][] [#104][] [#83][])
|
116
|
+
* Mention Boxen script in README (@matthutchinson [#208][])
|
117
|
+
* Explain global Git hooks how-to in README (@matthutchinson [#212][] [#112][])
|
111
118
|
* Minor improvments to Linux Capturer (@matthutchinson)
|
112
119
|
|
113
120
|
## [0.5.4][] (13 April 2014)
|
114
121
|
* Excluded vendor/bundle from rubocop cops (@matthutchinson)
|
115
122
|
* Peg fivemat gem to ~> 1.2.1 (@mroth)
|
116
|
-
* Fix lolsrv log file issue (@matthutchinson #202)
|
117
|
-
* Yammer Plugin added (@mrclmvn #160)
|
123
|
+
* Fix lolsrv log file issue (@matthutchinson [#202][])
|
124
|
+
* Yammer Plugin added (@mrclmvn [#160][])
|
118
125
|
* Refactor on capture options (@mroth)
|
119
126
|
|
120
127
|
## [0.5.3][] (30 March 2014)
|
121
128
|
* Fixed permissions on CommandCam (755) for cygwin (@matthutchinson)
|
122
|
-
* Added `--devices` option, mac only for now (@matthutchinson #183, #174)
|
123
|
-
* Replace http with https in twitter plugin (@kleinschmidt #195)
|
124
|
-
* RuboCop gem added for development (@mroth #194)
|
125
|
-
* Added optional key to uploldz plugin (@Numan1617 #192)
|
126
|
-
* Fixed lolcommmits typo: too much mmm (@penyaskito #189)
|
127
|
-
* Work when in subdirectory of a git repo (@ilkka #186)
|
128
|
-
* Added --version (-v) flag (@bfontaine #184)
|
129
|
-
* Send more VCS details to lolsrv (@drewwells #181)
|
129
|
+
* Added `--devices` option, mac only for now (@matthutchinson [#183][], [#174][])
|
130
|
+
* Replace http with https in twitter plugin (@kleinschmidt [#195][])
|
131
|
+
* RuboCop gem added for development (@mroth [#194][])
|
132
|
+
* Added optional key to uploldz plugin (@Numan1617 [#192][])
|
133
|
+
* Fixed lolcommmits typo: too much mmm (@penyaskito [#189][])
|
134
|
+
* Work when in subdirectory of a git repo (@ilkka [#186][])
|
135
|
+
* Added --version (-v) flag (@bfontaine [#184][])
|
136
|
+
* Send more VCS details to lolsrv (@drewwells [#181][])
|
130
137
|
|
131
138
|
## [0.5.2][] (5 December 2013)
|
132
|
-
* Allow lolsrv plugin to sync/upload gifs (@matthutchinson #180)
|
133
|
-
* Plugins refactor, can now configure themselves (@matthutchinson #179)
|
134
|
-
- also closes issue #136 and issue #73
|
135
|
-
* Fix for Twitter gem dependency issue (@matthutchinson #178)
|
136
|
-
* Added coveralls support (@Aaron1011 #177)
|
139
|
+
* Allow lolsrv plugin to sync/upload gifs (@matthutchinson [#180][])
|
140
|
+
* Plugins refactor, can now configure themselves (@matthutchinson [#179][])
|
141
|
+
- also closes issue [#136][] and issue [#73][]
|
142
|
+
* Fix for Twitter gem dependency issue (@matthutchinson [#178][])
|
143
|
+
* Added coveralls support (@Aaron1011 [#177][])
|
137
144
|
- gitignore updated, coveralls badge added to README
|
138
|
-
* Refactor tranzlate plugin, lolspeak now in plugin (@matthutchinson #176)
|
139
|
-
* Fix for 'Cannot satisfy json dependancy' (@matthutchinson #175)
|
140
|
-
* Better post commit hook enabling/disabling (@matthutchinson #173)
|
141
|
-
* Improved --enable option, accepts passing arguments (@matthutchinson #154)
|
145
|
+
* Refactor tranzlate plugin, lolspeak now in plugin (@matthutchinson [#176][])
|
146
|
+
* Fix for 'Cannot satisfy json dependancy' (@matthutchinson [#175][])
|
147
|
+
* Better post commit hook enabling/disabling (@matthutchinson [#173][])
|
148
|
+
* Improved --enable option, accepts passing arguments (@matthutchinson [#154][])
|
142
149
|
- README updated to explain enabling with options
|
143
150
|
|
144
151
|
## [0.5.1][] (13 November 2013)
|
145
|
-
* Fix JSON gem issue #163 (@matthutchinson, #171)
|
146
|
-
* Enable image capture under Cygwin (@cwc, #105)
|
147
|
-
* Add Ruby PATH to post-commit hook (@matthutchinson, #155)
|
148
|
-
* "Stealth mode" where no notification is given (@sionide21, #156)
|
149
|
-
* BUGFIX: comparison error for animate (@Yabes, #151)
|
152
|
+
* Fix JSON gem issue [#163][] (@matthutchinson, [#171][])
|
153
|
+
* Enable image capture under Cygwin (@cwc, [#105][])
|
154
|
+
* Add Ruby PATH to post-commit hook (@matthutchinson, [#155][])
|
155
|
+
* "Stealth mode" where no notification is given (@sionide21, [#156][])
|
156
|
+
* BUGFIX: comparison error for animate (@Yabes, [#151][])
|
150
157
|
|
151
158
|
## [0.5.0][] (10 September 2013)
|
152
|
-
* better handling of LOLCOMMITS_DELAY (thx @leewillis77, #125)
|
153
|
-
* LOLCOMMITS_DEVICE support on Linux (thx @EbenezerEdelman, #139)
|
154
|
-
* better handling of repository names (thx @drocamor and @andromedado, #145 and #146)
|
155
|
-
* added new LOLCOMMITS_ANIMATE (or `--animate`) option (Mac/OSX only) (#114, #108)
|
159
|
+
* better handling of LOLCOMMITS_DELAY (thx @leewillis77, [#125][])
|
160
|
+
* LOLCOMMITS_DEVICE support on Linux (thx @EbenezerEdelman, [#139][])
|
161
|
+
* better handling of repository names (thx @drocamor and @andromedado, [#145][] and [#146][])
|
162
|
+
* added new LOLCOMMITS_ANIMATE (or `--animate`) option (Mac/OSX only) ([#114][], [#108][])
|
156
163
|
- defaults to a 320x240 sized animated gif
|
157
164
|
- new vendored binary videosnap - https://github.com/matthutchinson/videosnap
|
158
165
|
- feature requires ffmpeg
|
159
166
|
- README updated with details and an example
|
160
167
|
|
161
168
|
## 0.4.6 (12 August 2013)
|
162
|
-
* Fix for incorrect permissioning in gem issue (see #112)
|
169
|
+
* Fix for incorrect permissioning in gem issue (see [#112][])
|
163
170
|
|
164
171
|
## 0.4.5 (8 July 2013)
|
165
|
-
* disable&remove statsd plugin (as per #94)
|
166
|
-
* fix issues with animated gif generation (#107)
|
167
|
-
* added new LOLCOMMITS_FORK (or --fork) option to fork the runner capturing (#109)
|
172
|
+
* disable&remove statsd plugin (as per [#94][])
|
173
|
+
* fix issues with animated gif generation ([#107][])
|
174
|
+
* added new LOLCOMMITS_FORK (or --fork) option to fork the runner capturing ([#109][])
|
168
175
|
|
169
176
|
## 0.4.4 (28 June 2013)
|
170
|
-
* add -g option to produce animated gifs! (thx @hSATAC, #95)
|
177
|
+
* add -g option to produce animated gifs! (thx @hSATAC, [#95][])
|
171
178
|
|
172
179
|
## 0.4.3 (29 March 2013)
|
173
180
|
* bump mini_magick dependency to deal with security alert
|
174
181
|
|
175
182
|
## 0.4.2 (11 March 2013)
|
176
|
-
* fix ruby 2.0 compatibility (#91)
|
177
|
-
* gracefully detect upstream issue with git color.ui being set to always (#50)
|
178
|
-
* handle external capture devices with special characters in name (#93)
|
179
|
-
* fixes to the uploldz plugin (#92)
|
183
|
+
* fix ruby 2.0 compatibility ([#91][])
|
184
|
+
* gracefully detect upstream issue with git color.ui being set to always ([#50][])
|
185
|
+
* handle external capture devices with special characters in name ([#93][])
|
186
|
+
* fixes to the uploldz plugin ([#92][])
|
180
187
|
|
181
188
|
## 0.4.1 (17 February 2013)
|
182
|
-
* add lolsrv plugin (thx @sebastianmarr!, #82)
|
183
|
-
* enable feature to change font (thx @fukayatsu!, #89)
|
184
|
-
* correct activesupport gem name in bundle (thx @djbender!, #90)
|
185
|
-
* graceful detection of imagemagick not being installed (#87)
|
189
|
+
* add lolsrv plugin (thx @sebastianmarr!, [#82][])
|
190
|
+
* enable feature to change font (thx @fukayatsu!, [#89][])
|
191
|
+
* correct activesupport gem name in bundle (thx @djbender!, [#90][])
|
192
|
+
* graceful detection of imagemagick not being installed ([#87][])
|
186
193
|
* restructure logging slightly to use Methadone::CLILogging in most places
|
187
194
|
* add a bunch of debugging output, viewable via --debug flag
|
188
195
|
|
@@ -192,7 +199,7 @@ project adheres to [Semantic Versioning][Semver].
|
|
192
199
|
being a buggy unmaintained piece of crap
|
193
200
|
- this should also result in less problems with IM version changes
|
194
201
|
- some preliminary test work on using image_sorcery instead too
|
195
|
-
- perhaps finally kill issue #9 from continually resurfacing
|
202
|
+
- perhaps finally kill issue [#9][] from continually resurfacing
|
196
203
|
* make sure quotes are properly handled in commit messages
|
197
204
|
* silence warnings generated by twitter gem in MRI 1.8.7
|
198
205
|
|
@@ -227,14 +234,14 @@ project adheres to [Semantic Versioning][Semver].
|
|
227
234
|
|
228
235
|
## 0.1.4 (28 May 2012)
|
229
236
|
* set device on mac via --device (or LOLCOMMITS_DEVICE env variable) --
|
230
|
-
thanks @pioz (pull #51)
|
237
|
+
thanks @pioz (pull [#51][])
|
231
238
|
|
232
239
|
## 0.1.3 (18 May 2012)
|
233
240
|
* add LGPLv3 license
|
234
241
|
* add option to translate your commit message to lolspeak! (thx
|
235
242
|
to @DanielleSucher!). To enable, set `LOLCOMMITS_TRANZLATE=1`.
|
236
|
-
* fix issue with older versions of IM crashing on interline spacing (pull #31 via @german)
|
237
|
-
* fix issue with git repos with no hooks directory (pull #43 via @mkmaster)
|
243
|
+
* fix issue with older versions of IM crashing on interline spacing (pull [#31][] via @german)
|
244
|
+
* fix issue with git repos with no hooks directory (pull [#43][] via @mkmaster)
|
238
245
|
* fix missing dash in capture -c
|
239
246
|
|
240
247
|
## 0.1.2 (22 April 2012)
|
@@ -248,7 +255,7 @@ project adheres to [Semantic Versioning][Semver].
|
|
248
255
|
* Linux compatibility! Thanks to @madjar, @cscorely, and @Prydonius.
|
249
256
|
|
250
257
|
## 0.0.3 (16 April 2012)
|
251
|
-
* use only first line for multi-line commit msgs (pull req #21)
|
258
|
+
* use only first line for multi-line commit msgs (pull req [#21][])
|
252
259
|
* clean up some command line options
|
253
260
|
|
254
261
|
## 0.0.2 (2 April 2012)
|
@@ -266,7 +273,7 @@ project adheres to [Semantic Versioning][Semver].
|
|
266
273
|
reliable to not glitch.)
|
267
274
|
|
268
275
|
[Unreleased]: https://github.com/mroth/lolcommits/compare/v0.9.2...HEAD
|
269
|
-
[0.9.
|
276
|
+
[0.9.2]: https://github.com/mroth/lolcommits/compare/v0.9.1...v0.9.2
|
270
277
|
[0.9.1]: https://github.com/mroth/lolcommits/compare/v0.9.0...v0.9.1
|
271
278
|
[0.9.0]: https://github.com/mroth/lolcommits/compare/v0.8.1...v0.9.0
|
272
279
|
[0.8.1]: https://github.com/mroth/lolcommits/compare/v0.8.0...v0.8.1
|
@@ -291,3 +298,134 @@ project adheres to [Semantic Versioning][Semver].
|
|
291
298
|
[0.5.1]: https://github.com/mroth/lolcommits/compare/v0.5.0...v0.5.1
|
292
299
|
[0.5.0]: https://github.com/mroth/lolcommits/compare/v0.4.9...v0.5.0
|
293
300
|
[Semver]: http://semver.org
|
301
|
+
[#9]: https://github.com/mroth/lolcommits/pull/9
|
302
|
+
[#21]: https://github.com/mroth/lolcommits/pull/21
|
303
|
+
[#31]: https://github.com/mroth/lolcommits/pull/31
|
304
|
+
[#43]: https://github.com/mroth/lolcommits/pull/43
|
305
|
+
[#50]: https://github.com/mroth/lolcommits/pull/50
|
306
|
+
[#51]: https://github.com/mroth/lolcommits/pull/51
|
307
|
+
[#73]: https://github.com/mroth/lolcommits/pull/73
|
308
|
+
[#82]: https://github.com/mroth/lolcommits/pull/82
|
309
|
+
[#83]: https://github.com/mroth/lolcommits/pull/83
|
310
|
+
[#87]: https://github.com/mroth/lolcommits/pull/87
|
311
|
+
[#89]: https://github.com/mroth/lolcommits/pull/89
|
312
|
+
[#90]: https://github.com/mroth/lolcommits/pull/90
|
313
|
+
[#91]: https://github.com/mroth/lolcommits/pull/91
|
314
|
+
[#92]: https://github.com/mroth/lolcommits/pull/92
|
315
|
+
[#93]: https://github.com/mroth/lolcommits/pull/93
|
316
|
+
[#94]: https://github.com/mroth/lolcommits/pull/94
|
317
|
+
[#95]: https://github.com/mroth/lolcommits/pull/95
|
318
|
+
[#104]: https://github.com/mroth/lolcommits/pull/104
|
319
|
+
[#105]: https://github.com/mroth/lolcommits/pull/105
|
320
|
+
[#107]: https://github.com/mroth/lolcommits/pull/107
|
321
|
+
[#108]: https://github.com/mroth/lolcommits/pull/108
|
322
|
+
[#109]: https://github.com/mroth/lolcommits/pull/109
|
323
|
+
[#112]: https://github.com/mroth/lolcommits/pull/112
|
324
|
+
[#112]: https://github.com/mroth/lolcommits/pull/112
|
325
|
+
[#114]: https://github.com/mroth/lolcommits/pull/114
|
326
|
+
[#119]: https://github.com/mroth/lolcommits/pull/119
|
327
|
+
[#123]: https://github.com/mroth/lolcommits/pull/123
|
328
|
+
[#125]: https://github.com/mroth/lolcommits/pull/125
|
329
|
+
[#133]: https://github.com/mroth/lolcommits/pull/133
|
330
|
+
[#136]: https://github.com/mroth/lolcommits/pull/136
|
331
|
+
[#139]: https://github.com/mroth/lolcommits/pull/139
|
332
|
+
[#145]: https://github.com/mroth/lolcommits/pull/145
|
333
|
+
[#146]: https://github.com/mroth/lolcommits/pull/146
|
334
|
+
[#151]: https://github.com/mroth/lolcommits/pull/151
|
335
|
+
[#154]: https://github.com/mroth/lolcommits/pull/154
|
336
|
+
[#155]: https://github.com/mroth/lolcommits/pull/155
|
337
|
+
[#156]: https://github.com/mroth/lolcommits/pull/156
|
338
|
+
[#159]: https://github.com/mroth/lolcommits/pull/159
|
339
|
+
[#159]: https://github.com/mroth/lolcommits/pull/159
|
340
|
+
[#160]: https://github.com/mroth/lolcommits/pull/160
|
341
|
+
[#163]: https://github.com/mroth/lolcommits/pull/163
|
342
|
+
[#168]: https://github.com/mroth/lolcommits/pull/168
|
343
|
+
[#171]: https://github.com/mroth/lolcommits/pull/171
|
344
|
+
[#173]: https://github.com/mroth/lolcommits/pull/173
|
345
|
+
[#174]: https://github.com/mroth/lolcommits/pull/174
|
346
|
+
[#175]: https://github.com/mroth/lolcommits/pull/175
|
347
|
+
[#176]: https://github.com/mroth/lolcommits/pull/176
|
348
|
+
[#177]: https://github.com/mroth/lolcommits/pull/177
|
349
|
+
[#178]: https://github.com/mroth/lolcommits/pull/178
|
350
|
+
[#179]: https://github.com/mroth/lolcommits/pull/179
|
351
|
+
[#180]: https://github.com/mroth/lolcommits/pull/180
|
352
|
+
[#181]: https://github.com/mroth/lolcommits/pull/181
|
353
|
+
[#183]: https://github.com/mroth/lolcommits/pull/183
|
354
|
+
[#184]: https://github.com/mroth/lolcommits/pull/184
|
355
|
+
[#186]: https://github.com/mroth/lolcommits/pull/186
|
356
|
+
[#188]: https://github.com/mroth/lolcommits/pull/188
|
357
|
+
[#189]: https://github.com/mroth/lolcommits/pull/189
|
358
|
+
[#192]: https://github.com/mroth/lolcommits/pull/192
|
359
|
+
[#193]: https://github.com/mroth/lolcommits/pull/193
|
360
|
+
[#194]: https://github.com/mroth/lolcommits/pull/194
|
361
|
+
[#195]: https://github.com/mroth/lolcommits/pull/195
|
362
|
+
[#196]: https://github.com/mroth/lolcommits/pull/196
|
363
|
+
[#202]: https://github.com/mroth/lolcommits/pull/202
|
364
|
+
[#206]: https://github.com/mroth/lolcommits/pull/206
|
365
|
+
[#207]: https://github.com/mroth/lolcommits/pull/207
|
366
|
+
[#208]: https://github.com/mroth/lolcommits/pull/208
|
367
|
+
[#212]: https://github.com/mroth/lolcommits/pull/212
|
368
|
+
[#215]: https://github.com/mroth/lolcommits/pull/215
|
369
|
+
[#223]: https://github.com/mroth/lolcommits/pull/223
|
370
|
+
[#224]: https://github.com/mroth/lolcommits/pull/224
|
371
|
+
[#225]: https://github.com/mroth/lolcommits/pull/225
|
372
|
+
[#226]: https://github.com/mroth/lolcommits/pull/226
|
373
|
+
[#228]: https://github.com/mroth/lolcommits/pull/228
|
374
|
+
[#229]: https://github.com/mroth/lolcommits/pull/229
|
375
|
+
[#231]: https://github.com/mroth/lolcommits/pull/231
|
376
|
+
[#232]: https://github.com/mroth/lolcommits/pull/232
|
377
|
+
[#233]: https://github.com/mroth/lolcommits/pull/233
|
378
|
+
[#234]: https://github.com/mroth/lolcommits/pull/234
|
379
|
+
[#235]: https://github.com/mroth/lolcommits/pull/235
|
380
|
+
[#236]: https://github.com/mroth/lolcommits/pull/236
|
381
|
+
[#237]: https://github.com/mroth/lolcommits/pull/237
|
382
|
+
[#240]: https://github.com/mroth/lolcommits/pull/240
|
383
|
+
[#241]: https://github.com/mroth/lolcommits/pull/241
|
384
|
+
[#244]: https://github.com/mroth/lolcommits/pull/244
|
385
|
+
[#244]: https://github.com/mroth/lolcommits/pull/244
|
386
|
+
[#246]: https://github.com/mroth/lolcommits/pull/246
|
387
|
+
[#250]: https://github.com/mroth/lolcommits/pull/250
|
388
|
+
[#251]: https://github.com/mroth/lolcommits/pull/251
|
389
|
+
[#252]: https://github.com/mroth/lolcommits/pull/252
|
390
|
+
[#254]: https://github.com/mroth/lolcommits/pull/254
|
391
|
+
[#256]: https://github.com/mroth/lolcommits/pull/256
|
392
|
+
[#258]: https://github.com/mroth/lolcommits/pull/258
|
393
|
+
[#263]: https://github.com/mroth/lolcommits/pull/263
|
394
|
+
[#266]: https://github.com/mroth/lolcommits/pull/266
|
395
|
+
[#266]: https://github.com/mroth/lolcommits/pull/266
|
396
|
+
[#267]: https://github.com/mroth/lolcommits/pull/267
|
397
|
+
[#270]: https://github.com/mroth/lolcommits/pull/270
|
398
|
+
[#272]: https://github.com/mroth/lolcommits/pull/272
|
399
|
+
[#276]: https://github.com/mroth/lolcommits/pull/276
|
400
|
+
[#278]: https://github.com/mroth/lolcommits/pull/278
|
401
|
+
[#279]: https://github.com/mroth/lolcommits/pull/279
|
402
|
+
[#280]: https://github.com/mroth/lolcommits/pull/280
|
403
|
+
[#282]: https://github.com/mroth/lolcommits/pull/282
|
404
|
+
[#283]: https://github.com/mroth/lolcommits/pull/283
|
405
|
+
[#284]: https://github.com/mroth/lolcommits/pull/284
|
406
|
+
[#286]: https://github.com/mroth/lolcommits/pull/286
|
407
|
+
[#289]: https://github.com/mroth/lolcommits/pull/289
|
408
|
+
[#292]: https://github.com/mroth/lolcommits/pull/292
|
409
|
+
[#294]: https://github.com/mroth/lolcommits/pull/294
|
410
|
+
[#296]: https://github.com/mroth/lolcommits/pull/296
|
411
|
+
[#298]: https://github.com/mroth/lolcommits/pull/298
|
412
|
+
[#301]: https://github.com/mroth/lolcommits/pull/301
|
413
|
+
[#302]: https://github.com/mroth/lolcommits/pull/302
|
414
|
+
[#303]: https://github.com/mroth/lolcommits/pull/303
|
415
|
+
[#304]: https://github.com/mroth/lolcommits/pull/304
|
416
|
+
[#308]: https://github.com/mroth/lolcommits/pull/308
|
417
|
+
[#309]: https://github.com/mroth/lolcommits/pull/309
|
418
|
+
[#313]: https://github.com/mroth/lolcommits/pull/313
|
419
|
+
[#313]: https://github.com/mroth/lolcommits/pull/313
|
420
|
+
[#317]: https://github.com/mroth/lolcommits/pull/317
|
421
|
+
[#318]: https://github.com/mroth/lolcommits/pull/318
|
422
|
+
[#320]: https://github.com/mroth/lolcommits/pull/320
|
423
|
+
[#321]: https://github.com/mroth/lolcommits/pull/321
|
424
|
+
[#323]: https://github.com/mroth/lolcommits/pull/323
|
425
|
+
[#325]: https://github.com/mroth/lolcommits/pull/325
|
426
|
+
[#326]: https://github.com/mroth/lolcommits/pull/326
|
427
|
+
[#328]: https://github.com/mroth/lolcommits/pull/328
|
428
|
+
[#329]: https://github.com/mroth/lolcommits/pull/329
|
429
|
+
[#330]: https://github.com/mroth/lolcommits/pull/330
|
430
|
+
[#331]: https://github.com/mroth/lolcommits/pull/331
|
431
|
+
[#332]: https://github.com/mroth/lolcommits/pull/332
|