lolcommits 0.17.3 → 0.18.0
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/lib/lolcommits/cli/timelapse_gif.rb +4 -2
- data/lib/lolcommits/runner.rb +6 -4
- data/lib/lolcommits/version.rb +1 -1
- metadata +2 -52
- data/.github/workflows/ci.yml +0 -69
- data/.gitignore +0 -17
- data/.quickhook/pre-commit/ruby-lint +0 -3
- data/CHANGELOG.md +0 -448
- data/CODE_OF_CONDUCT.md +0 -71
- data/CONTRIBUTING.md +0 -44
- data/Gemfile +0 -6
- data/PULL_REQUEST_TEMPLATE.md +0 -16
- data/Rakefile +0 -16
- data/bin/cucumber +0 -25
- data/bin/rubocop +0 -25
- data/features/bugs.feature +0 -52
- data/features/lolcommits.feature +0 -376
- data/features/step_definitions/lolcommits_steps.rb +0 -236
- data/features/support/env.rb +0 -54
- data/features/support/path_helpers.rb +0 -36
- data/lolcommits.gemspec +0 -61
- data/test/assets/test_image.jpg +0 -0
- data/test/assets/test_video.mp4 +0 -0
- data/test/images/test_image.jpg +0 -0
- data/test/permissions_test.rb +0 -17
- data/test/test_helper.rb +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d68fc910621c20affe1a01a975da0c2b4165dec81689a69c347aab0121fc510
|
4
|
+
data.tar.gz: e32e2f3a25b64abac860446672eae4ec5a1b1c6af1fb14933d6f2965ab692e22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c35563bc2fa8ba6762f8e2c42fd41164968b1b121e0729be258834a009ca687199feb708c65044bc7ccb8a6b0d982086a1b948e7fb6099562573331b4246bf55
|
7
|
+
data.tar.gz: 374d4265eca8f0a3af139cdfde448e820c52379ce4600a1b9dc4c3be859916c224582153f8f6731400a3c2b01bf8517738356522d3a0e2083d74e045c66c46a5
|
@@ -29,14 +29,16 @@ module Lolcommits
|
|
29
29
|
|
30
30
|
puts "*** Generating animated timelapse gif."
|
31
31
|
|
32
|
+
gif_path = File.join(timelapses_dir_path, "#{filename}.gif")
|
33
|
+
|
32
34
|
MiniMagick.convert do |convert|
|
33
35
|
convert.delay 50
|
34
36
|
convert.loop 0
|
35
37
|
lolimages.each { |image| convert << image }
|
36
|
-
convert <<
|
38
|
+
convert << gif_path
|
37
39
|
end
|
38
40
|
|
39
|
-
puts "*** Done, generated at #{
|
41
|
+
puts "*** Done, generated at #{gif_path}"
|
40
42
|
end
|
41
43
|
|
42
44
|
private
|
data/lib/lolcommits/runner.rb
CHANGED
@@ -64,12 +64,14 @@ module Lolcommits
|
|
64
64
|
png_tempfile = MiniMagick::Utilities.tempfile(".png")
|
65
65
|
debug("creating a new empty overlay png for lolcommit (#{base.dimensions.join('x')})")
|
66
66
|
|
67
|
-
MiniMagick
|
68
|
-
|
69
|
-
|
70
|
-
|
67
|
+
MiniMagick.convert do |convert|
|
68
|
+
convert.size "#{base.width}x#{base.height}"
|
69
|
+
convert.xc "transparent"
|
70
|
+
convert << png_tempfile.path
|
71
71
|
end
|
72
72
|
|
73
|
+
debug "mehhh!"
|
74
|
+
|
73
75
|
MiniMagick::Image.open(png_tempfile.path)
|
74
76
|
end
|
75
77
|
end
|
data/lib/lolcommits/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lolcommits
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Rothenberg
|
8
8
|
- Matthew Hutchinson
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: base64
|
@@ -150,34 +150,6 @@ dependencies:
|
|
150
150
|
- - "~>"
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: 0.5.0
|
153
|
-
- !ruby/object:Gem::Dependency
|
154
|
-
name: rubocop
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
156
|
-
requirements:
|
157
|
-
- - ">="
|
158
|
-
- !ruby/object:Gem::Version
|
159
|
-
version: '0'
|
160
|
-
type: :runtime
|
161
|
-
prerelease: false
|
162
|
-
version_requirements: !ruby/object:Gem::Requirement
|
163
|
-
requirements:
|
164
|
-
- - ">="
|
165
|
-
- !ruby/object:Gem::Version
|
166
|
-
version: '0'
|
167
|
-
- !ruby/object:Gem::Dependency
|
168
|
-
name: rubocop-performance
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - ">="
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: '0'
|
174
|
-
type: :runtime
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - ">="
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '0'
|
181
153
|
- !ruby/object:Gem::Dependency
|
182
154
|
name: aruba
|
183
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -274,26 +246,10 @@ executables:
|
|
274
246
|
extensions: []
|
275
247
|
extra_rdoc_files: []
|
276
248
|
files:
|
277
|
-
- ".github/workflows/ci.yml"
|
278
|
-
- ".gitignore"
|
279
|
-
- ".quickhook/pre-commit/ruby-lint"
|
280
249
|
- ".rubocop.yml"
|
281
|
-
- CHANGELOG.md
|
282
|
-
- CODE_OF_CONDUCT.md
|
283
|
-
- CONTRIBUTING.md
|
284
|
-
- Gemfile
|
285
250
|
- LICENSE
|
286
|
-
- PULL_REQUEST_TEMPLATE.md
|
287
251
|
- README.md
|
288
|
-
- Rakefile
|
289
|
-
- bin/cucumber
|
290
252
|
- bin/lolcommits
|
291
|
-
- bin/rubocop
|
292
|
-
- features/bugs.feature
|
293
|
-
- features/lolcommits.feature
|
294
|
-
- features/step_definitions/lolcommits_steps.rb
|
295
|
-
- features/support/env.rb
|
296
|
-
- features/support/path_helpers.rb
|
297
253
|
- lib/core_ext/mercurial-ruby/changed_file.rb
|
298
254
|
- lib/core_ext/mercurial-ruby/command.rb
|
299
255
|
- lib/core_ext/mercurial-ruby/config_file.rb
|
@@ -331,12 +287,6 @@ files:
|
|
331
287
|
- lib/lolcommits/test_helpers/git_repo.rb
|
332
288
|
- lib/lolcommits/vcs_info.rb
|
333
289
|
- lib/lolcommits/version.rb
|
334
|
-
- lolcommits.gemspec
|
335
|
-
- test/assets/test_image.jpg
|
336
|
-
- test/assets/test_video.mp4
|
337
|
-
- test/images/test_image.jpg
|
338
|
-
- test/permissions_test.rb
|
339
|
-
- test/test_helper.rb
|
340
290
|
- vendor/ext/CommandCam/COPYING
|
341
291
|
- vendor/ext/CommandCam/CommandCam.exe
|
342
292
|
- vendor/ext/CommandCam/LICENSE
|
data/.github/workflows/ci.yml
DELETED
@@ -1,69 +0,0 @@
|
|
1
|
-
name: CI
|
2
|
-
|
3
|
-
on:
|
4
|
-
push:
|
5
|
-
branches:
|
6
|
-
- main
|
7
|
-
pull_request:
|
8
|
-
branches:
|
9
|
-
- main
|
10
|
-
jobs:
|
11
|
-
rubocop:
|
12
|
-
name: RuboCop
|
13
|
-
runs-on: ubuntu-latest
|
14
|
-
steps:
|
15
|
-
- uses: actions/checkout@v4
|
16
|
-
- name: Setup Ruby and install rubocop
|
17
|
-
uses: ruby/setup-ruby@v1
|
18
|
-
with:
|
19
|
-
ruby-version: 3.4
|
20
|
-
bundler-cache: true
|
21
|
-
- name: Run rubocop
|
22
|
-
run: bin/rubocop --parallel
|
23
|
-
tests:
|
24
|
-
name: Unit tests
|
25
|
-
runs-on: ubuntu-latest
|
26
|
-
steps:
|
27
|
-
- uses: actions/checkout@v4
|
28
|
-
- name: Set up Ruby and install gems
|
29
|
-
uses: ruby/setup-ruby@v1
|
30
|
-
with:
|
31
|
-
ruby-version: 3.4
|
32
|
-
bundler-cache: true
|
33
|
-
- name: Run tests
|
34
|
-
run: bundle exec rake test
|
35
|
-
features:
|
36
|
-
name: ${{ format('Features (Ruby {0})', matrix.ruby-version) }}
|
37
|
-
runs-on: ubuntu-latest
|
38
|
-
strategy:
|
39
|
-
fail-fast: false
|
40
|
-
matrix:
|
41
|
-
ruby-version:
|
42
|
-
- "3.1"
|
43
|
-
- "3.2"
|
44
|
-
- "3.3"
|
45
|
-
- "3.4"
|
46
|
-
steps:
|
47
|
-
- uses: actions/checkout@v4
|
48
|
-
- name: Set up Ruby and install gems
|
49
|
-
uses: ruby/setup-ruby@v1
|
50
|
-
with:
|
51
|
-
ruby-version: ${{ matrix.ruby-version }}
|
52
|
-
bundler-cache: true
|
53
|
-
- name: Set up imagemagick
|
54
|
-
uses: mfinelli/setup-imagemagick@v5
|
55
|
-
with:
|
56
|
-
cache: true
|
57
|
-
- name: Set up ffmpeg
|
58
|
-
uses: FedericoCarboni/setup-ffmpeg@v3
|
59
|
-
- name: Set up mplayer
|
60
|
-
run: sudo apt-get install -y mplayer
|
61
|
-
- name: Configure Git
|
62
|
-
run: |
|
63
|
-
git config --global user.name $NAME
|
64
|
-
git config --global user.email $EMAIL
|
65
|
-
env:
|
66
|
-
NAME: "George Costanza"
|
67
|
-
EMAIL: "george.costanza@vandelay.com"
|
68
|
-
- name: Run features
|
69
|
-
run: bin/cucumber --publish-quiet -f progress
|
data/.gitignore
DELETED
data/CHANGELOG.md
DELETED
@@ -1,448 +0,0 @@
|
|
1
|
-
### ChangeLog
|
2
|
-
|
3
|
-
All notable changes to this project will be documented in this file.
|
4
|
-
This project adheres to [Semantic Versioning][Semver].
|
5
|
-
|
6
|
-
## [Unreleased]
|
7
|
-
|
8
|
-
* Your contribution here!
|
9
|
-
|
10
|
-
## [0.17.3][] (18 Jan 2025)
|
11
|
-
* Truncate CHANGELOG
|
12
|
-
* Update Github CI workflows
|
13
|
-
* Bump Ruby in CI
|
14
|
-
* Refresh rubocop rules with omakase Rails rules (minus the Rails stuff)
|
15
|
-
* Appease all rubocop rules
|
16
|
-
* Update README
|
17
|
-
* Remove unused files
|
18
|
-
* Use bundler for gem pushing (not GH)
|
19
|
-
* Remove frozen_string_literal: true magic comment
|
20
|
-
* Use MiniMagick instead of shell cmd for animated gifs
|
21
|
-
|
22
|
-
## [0.17.2][] (22 Sep 2024)
|
23
|
-
* Change plugin testing helper to use /tmp for test repo path
|
24
|
-
|
25
|
-
## [0.17.1][] (20 Sep 2024)
|
26
|
-
* Use latest lolcommits-loltext gem
|
27
|
-
|
28
|
-
## [0.17.0][] (15 Sep 2024)
|
29
|
-
* Ditch Travis, switch to GitHub actions for CI
|
30
|
-
* Use GitHub actions for trusted gem publishing
|
31
|
-
* Bump all gem dependencies
|
32
|
-
* Add runtime gems (logger, ostruct, base64) to prep for Ruby 3.5+
|
33
|
-
* Drop code coverage tooling
|
34
|
-
* Swap pry for debug gem
|
35
|
-
* Update minimum Ruby version to 3.1 (oldest supported version) (@SalvatoreT [#433][])
|
36
|
-
* Patch `mercurial-ruby` to work with Ruby 3.2
|
37
|
-
* Update `optparse-plus` gem from 1.x to 3.x
|
38
|
-
* Update `mini_magick` gem from 4.x to 5.x
|
39
|
-
* Update `launchy` gem from 2.x to 3.x
|
40
|
-
* Update `git` gem from 1.x to 2.x
|
41
|
-
|
42
|
-
## [0.16.5][] (29 May 2024)
|
43
|
-
* Use Git 1.19.1 [#430][]
|
44
|
-
* Fix undefined method `rm_f` for File:Class (@khramtsoff [#432][])
|
45
|
-
|
46
|
-
## [0.16.4][] (05 Sep 2023)
|
47
|
-
* Fixing for Git 1.18+, it no longer sets a `$GIT_DIR` in post-commit hooks [#417][]
|
48
|
-
|
49
|
-
## [0.16.3][] (28 Jan 2021)
|
50
|
-
* Upgrade gem dependencies (for Ruby 3.0 compatibility)
|
51
|
-
* Patched `mercurial-ruby` to work with Ruby 3.0 [#411][]
|
52
|
-
* Fixed up the formatting of generated hooks in `.hg/hgrc` [#411][]
|
53
|
-
* Fix failing RuboCops and update config
|
54
|
-
* Update Travis CI rubies
|
55
|
-
|
56
|
-
## [0.16.2][] (24 Aug 2020)
|
57
|
-
* Support delays w/ Linux animated GIFs (@theY4Kman [#405][])
|
58
|
-
* Upgrade git gem to version 1.6.0 (@depfu [#402][])
|
59
|
-
* Upgrade lolcommits-loltext to version 0.4.0 (@depfu [#401][])
|
60
|
-
|
61
|
-
## [0.16.1][] (21 Jan 2020)
|
62
|
-
* Upgrade mini_magick to version 4.10.1 (@depfu [#399][])
|
63
|
-
* Fix rubocop config (@Salzig [#400][])
|
64
|
-
|
65
|
-
## [0.16.0][] (21 Oct 2019)
|
66
|
-
* update macOS binaries for Catalina support (@matthutchinson, @samwize [#398][])
|
67
|
-
|
68
|
-
## [0.15.1][] (6 Jun 2019)
|
69
|
-
* fix device list command (@matthutchinson [#394][])
|
70
|
-
|
71
|
-
## [0.15.0][] (20 May 2019)
|
72
|
-
* require at least lolcommits-loltext `>= 0.3.0` (@matthutchinson)
|
73
|
-
* remove `main_image` method, plugins should use `lolcommit_path` on
|
74
|
-
`runner` object (@matthutchinson)
|
75
|
-
|
76
|
-
## [0.14.2][] (19 May 2019)
|
77
|
-
* minor runner improvements, `capture_image?` now public
|
78
|
-
(@matthutchinson)
|
79
|
-
|
80
|
-
## [0.14.1][] (14 May 2019)
|
81
|
-
* minor runner improvements, for friendly plugin testing
|
82
|
-
(@matthutchinson)
|
83
|
-
|
84
|
-
## [0.14.0][] (14 May 2019)
|
85
|
-
* `main_image` now deprecated, use `lolcommit_path` instead (@matthutchinson)
|
86
|
-
* make actual videos to make gifs from (@ruxton [#386][])
|
87
|
-
* improved tabs/spacing on git commit hook text (@matthutchinson)
|
88
|
-
* add video captures `-v {seconds}` and runner overlays (@matthutchinson [#392][])
|
89
|
-
* `Capturer` classes refactored and renamed (@matthutchinson)
|
90
|
-
* `AnimatedGif` class takes care of gif generating (@matthutchinson)
|
91
|
-
|
92
|
-
## [0.13.1][] (29 April 2019)
|
93
|
-
* Update all links and badges (in gemspec, README etc.) to lolcommits
|
94
|
-
organisation (@matthutchinson)
|
95
|
-
* remove gem `post_install` message (@matthutchinson)
|
96
|
-
* use `lolcommits-loltext ~> 0.1.0` (@matthutchinson)
|
97
|
-
|
98
|
-
## [0.13.0][] (23 April 2019)
|
99
|
-
* Require at least Ruby 2.3
|
100
|
-
* Upgrade git gem dependency to 1.5.0 (@matthutchinson [#377][])
|
101
|
-
* Upgrade mini_magick gem dependency to 4.9.3 (@matthutchinson [#385][])
|
102
|
-
* Add History and Contributor section to README (@mroth [#385][])
|
103
|
-
* add frozen_string_literal: true comment to all Ruby files
|
104
|
-
* change $PATH override precedence in hooks installers
|
105
|
-
* Updated COC (Contributor Covenant v1.4)
|
106
|
-
* Added PR template
|
107
|
-
|
108
|
-
## [0.12.1][] (27 March 2018)
|
109
|
-
* Name passed to `Plugin::Base` initializer (@matthutchinson)
|
110
|
-
* Removed dead method `configured?` in `Plugin::Base`
|
111
|
-
* Using `YAML.safe_load` for configuration loading
|
112
|
-
|
113
|
-
## [0.12.0][] (15 March 2018)
|
114
|
-
* Use CodeClimate and simplecov for coverage reports (@matthutchinson [#367][])
|
115
|
-
* Remove plugin runner order (@matthutchinson [#369][])
|
116
|
-
|
117
|
-
## [0.11.0][] (4 February 2018)
|
118
|
-
* Require at least Ruby 2.1 (@matthutchinson [#366][])
|
119
|
-
- drop support for Ruby 2.0
|
120
|
-
- update all remaining gem dependencies (incl. Aruba, Cucumber)
|
121
|
-
- remove @unstable tag from features
|
122
|
-
|
123
|
-
## 0.10.0 (10 January 2018)
|
124
|
-
* Plugin configuration changes (@matthutchinson [#365][])
|
125
|
-
- `--plugins` now shows if plugin is enabled or not
|
126
|
-
- `default_options` now available, nested hash with default values
|
127
|
-
- if `valid_configuration?` fails, warning message shows
|
128
|
-
- `prompt_autocomplete_hash` helper method added
|
129
|
-
* Better plugin config flow (@matthutchinson [#363][])
|
130
|
-
|
131
|
-
## 0.9.8 (3 December 2017)
|
132
|
-
* Extract protonet to gem (@matthutchinson [#361][])
|
133
|
-
* Extract flowdock to gem (@matthutchinson [#360][])
|
134
|
-
* Extract yammer to gem (@matthutchinson [#359][])
|
135
|
-
* Extract hipchat to gem (@matthutchinson [#358][])
|
136
|
-
* Extract tumblr to gem (@matthutchinson [#357][])
|
137
|
-
* Extract term_output to gem (@matthutchinson [#356][])
|
138
|
-
* Add Ruby 2.4.2 to Travis config (@matthutchinson)
|
139
|
-
|
140
|
-
## 0.9.7 (17 September 2017)
|
141
|
-
* Extract dotcom to gem (@matthutchinson [#355][])
|
142
|
-
* Extract uploldz to gem (@matthutchinson [#354][])
|
143
|
-
* Extract lolsrv to gem (@matthutchinson [#353][])
|
144
|
-
|
145
|
-
## 0.9.6 (28 August 2017)
|
146
|
-
* Clean legacy plugin methods (@matthutchinson [#348][])
|
147
|
-
* Extract Slack Plugin to gem (@matthutchinson [#349][])
|
148
|
-
* Fix Windows install hook (@matthutchinson)
|
149
|
-
* Animated capturing for Windows via ffmpeg (@freehugs [#351][])
|
150
|
-
* Pin `public_suffix` gem version (@matthutchinson [#352][])
|
151
|
-
|
152
|
-
## 0.9.5 (21 July 2017)
|
153
|
-
* Extract Twitter Plugin / refactor Plugin::Base (@matthutchinson [#347][])
|
154
|
-
|
155
|
-
## 0.9.4 (17 April 2017)
|
156
|
-
* Add captureready plugin hook (@matthutchinson [#342][])
|
157
|
-
* README changes (@mroth [#341][])
|
158
|
-
* Extract tranzlate plugin to gem (@matthutchinson [#340][])
|
159
|
-
* Extract loltext plugin to gem (@matthutchinson [#339][])
|
160
|
-
|
161
|
-
## 0.9.3 (5 April 2017)
|
162
|
-
* LOLCOMMITS_CAPTURE_DISABLED env var (@williamboman [#338][])
|
163
|
-
* Plugin Manager and Gem plugin support (@matthutchinson [#332][])
|
164
|
-
* Add North gravity for ImageMagick (@domudall [#331][])
|
165
|
-
* remove Ruby 1.9 magic comments (@matthutchinson [#330][])
|
166
|
-
* add links to PRs in CHANGELOG (@bfontaine [#329][])
|
167
|
-
|
168
|
-
## 0.9.2 (3 January 2017)
|
169
|
-
* Remove twitter gem, fixes Ruby 2.4 issues (@matthutchinson [#328][])
|
170
|
-
|
171
|
-
## 0.9.1 (20 December 2016)
|
172
|
-
* Remove Choice gem, use Methadone (@matthutchinson [#326][])
|
173
|
-
|
174
|
-
## 0.9.0 (14 December 2016)
|
175
|
-
* ditch ruby 1.9 support and upgrade some gems (@matthutchinson [#325][])
|
176
|
-
* term_output plugin added (iTerm2 only) (@ruxton [#323][])
|
177
|
-
|
178
|
-
## 0.8.1 (11 October 2016)
|
179
|
-
* **last release supporting Ruby < 2.0**
|
180
|
-
* shebang fix in installer (@matthutchinson [#317][])
|
181
|
-
* FlowDock plugin (@mikecrittenden [#318][])
|
182
|
-
* HipChat plugin (@Salzig [#320][])
|
183
|
-
* peg gems for legacy ruby 1.9.3 (@matthutchinson [#321][])
|
184
|
-
|
185
|
-
## 0.8.0 (13 July 2016)
|
186
|
-
* New release requires Ruby 1.9.3+ minimum (@matthutchinson [#313][])
|
187
|
-
* All gems upgraded to latest versions (6 held back, see lolcommits.gemspec)
|
188
|
-
* See [this issue](https://github.com/lolcommits/lolcommits/issues/310) for details
|
189
|
-
|
190
|
-
## 0.7.0 (13 July 2016)
|
191
|
-
* **last release supporting Ruby < 1.9.3** (@matthutchinson [#313][])
|
192
|
-
|
193
|
-
## 0.6.7 (8 June 2016)
|
194
|
-
* Remove `console` binary from packaged gem (@samgranieri [#309][])
|
195
|
-
|
196
|
-
## 0.6.6 (1 June 2016)
|
197
|
-
* Show error/exit when --config outside a git repo (@matthutchinson [#308][])
|
198
|
-
* Add more options to loltext plugin (@ruxton [#304][])
|
199
|
-
* Added CODE_OF_CONDUCT.md to repo (@matthutchinson)
|
200
|
-
* Added a useful `console` binary for development and debugging (@matthutchinson)
|
201
|
-
|
202
|
-
## 0.6.5 (12 April 2016)
|
203
|
-
* Add mercurial support (@tak [#301][] [#302][] [#303][])
|
204
|
-
|
205
|
-
## 0.6.4 (15 March 2016)
|
206
|
-
* Add quotes to correctly handle paths with spaces (@matthutchinson [#298][])
|
207
|
-
|
208
|
-
## 0.6.3 (14 March 2016)
|
209
|
-
* Add quotes to correctly handle paths with spaces (@pedrocunha [#296][])
|
210
|
-
* Added plugin config path to output (@KrauseFx [#294][])
|
211
|
-
|
212
|
-
## 0.6.2 (21 February 2016)
|
213
|
-
* Avoid invoking ruby if in a rebase (@jhawthorn [#286][])
|
214
|
-
* Slow gif problem on mac (@a06kin [#289][])
|
215
|
-
* Peg RuboCop gem to 0.37.2 and fix cop issues (@matthutchinson [#292][])
|
216
|
-
|
217
|
-
## 0.6.1 (16 September 2015)
|
218
|
-
* Optional http auth header user/password in uploldz plugin (@felixroos [#283][])
|
219
|
-
* Slack plugin added (@yasakbulut [#284][])
|
220
|
-
* Updated rubies in Travis settings (@matthutchinson)
|
221
|
-
* Fixed README badge URLS (@matthutchinson)
|
222
|
-
|
223
|
-
## 0.6.0 (27 July 2015)
|
224
|
-
* Configurable text options for loltext plugin (@matthutchinson [#282][])
|
225
|
-
* Working AppVeyor configuration added (@nysthee [#280][])
|
226
|
-
* Tumblr plugin (@mveytsman [#279][])
|
227
|
-
* CHANGELOG (this file) now in markdown format (@matthutchinson)
|
228
|
-
|
229
|
-
## 0.5.9 (24 April 2015)
|
230
|
-
* Fix windows post commit hook path (@matthutchinson [#278][])
|
231
|
-
|
232
|
-
## 0.5.8 (22 April 2015)
|
233
|
-
* Fix Windows MiniMagick issue (@matthutchinson [#276][])
|
234
|
-
* Rubocop code clean ups (@nysthee [#272][])
|
235
|
-
* Fix gem issues on earlier Ruby versions ([#270][])
|
236
|
-
* CLI refactoring/cleanups (@mroth [#254][] [#258][] [#266][] [#267][] [#266][])
|
237
|
-
* Exit with -1 for bad CLI args (@williamboman [#263][])
|
238
|
-
* Move unit tests to MiniTest (@mroth [#256][])
|
239
|
-
* Add branch name to git info (@salzig [#252][])
|
240
|
-
* lol_protonet plugin added (@salzig [#251][])
|
241
|
-
* Allow local plugins in $LOLCOMMITS_DIR/.plugins (@salzig [#250][])
|
242
|
-
|
243
|
-
## 0.5.7 (28 December 2014)
|
244
|
-
* Uploldz plugin sends more post params (@clops [#224][] @matthutchinson [#241][])
|
245
|
-
* More configurable twitter plugin (@woodrowbarlow [#207][] @matthutchinson)
|
246
|
-
* Upgrade all gems that can be, 4 held back ([#244][] @matthutchinson)
|
247
|
-
* Ruby 2.2.0 compatible ([#244][] @matthutchinson)
|
248
|
-
* Glob /dev/video for default video device (linux only) ([#246][] @Ferada)
|
249
|
-
|
250
|
-
## 0.5.6 (24 November 2014)
|
251
|
-
* Updates and clean ups on the gemspec (@mroth [#228][])
|
252
|
-
* Travis CI now includes ruby-head (@mroth [#229][])
|
253
|
-
* Improved error message for ImageMagick issues [#159][] (@matthutchinson [#233][])
|
254
|
-
* Fix twitter plugin config issue [#231][] (@matthutchinson [#232][])
|
255
|
-
* Update mini_magick gem to 3.8.1 (@matthutchinson [#234][])
|
256
|
-
* Improve README for LOLCOMMITS_DIR (@dagar [#235][])
|
257
|
-
* Update README to include ffmpeg installation (@VictorBjelkholm [#236][])
|
258
|
-
* Better failover when no snapshot created (@matthutchinson [#237][])
|
259
|
-
* Export LANG to post-commit hook, fixes GitHub client (@matthutchinson [#240][])
|
260
|
-
|
261
|
-
## 0.5.5 (29 September 2014)
|
262
|
-
* Animated gif capture support (@theY4Kman [#226][])
|
263
|
-
* Fix plugin config issues with user input (@matthutchinson [#225][] [#223][])
|
264
|
-
* Fix Linux FPS timing issues (@matthutchinson [#215][])
|
265
|
-
* Fix hook enable/disable issue (@matthutchinson [#206][])
|
266
|
-
* Fix Git GUI issues (@matthutchinson [#196][] [#168][] [#193][] [#188][] [#159][] [#133][] [#123][] [#119][] [#104][] [#83][])
|
267
|
-
* Mention Boxen script in README (@matthutchinson [#208][])
|
268
|
-
* Explain global Git hooks how-to in README (@matthutchinson [#212][] [#112][])
|
269
|
-
* Minor improvments to Linux Capturer (@matthutchinson)
|
270
|
-
|
271
|
-
## 0.5.4 (13 April 2014)
|
272
|
-
* Excluded vendor/bundle from rubocop cops (@matthutchinson)
|
273
|
-
* Peg fivemat gem to ~> 1.2.1 (@mroth)
|
274
|
-
* Fix lolsrv log file issue (@matthutchinson [#202][])
|
275
|
-
* Yammer Plugin added (@mrclmvn [#160][])
|
276
|
-
* Refactor on capture options (@mroth)
|
277
|
-
|
278
|
-
## 0.5.3 (30 March 2014)
|
279
|
-
* Fixed permissions on CommandCam (755) for cygwin (@matthutchinson)
|
280
|
-
* Added `--devices` option, mac only for now (@matthutchinson [#183][], [#174][])
|
281
|
-
* Replace http with https in twitter plugin (@kleinschmidt [#195][])
|
282
|
-
* RuboCop gem added for development (@mroth [#194][])
|
283
|
-
* Added optional key to uploldz plugin (@Numan1617 [#192][])
|
284
|
-
* Fixed lolcommmits typo: too much mmm (@penyaskito [#189][])
|
285
|
-
* Work when in subdirectory of a git repo (@ilkka [#186][])
|
286
|
-
* Added --version (-v) flag (@bfontaine [#184][])
|
287
|
-
* Send more VCS details to lolsrv (@drewwells [#181][])
|
288
|
-
|
289
|
-
## 0.5.2 (5 December 2013)
|
290
|
-
* Allow lolsrv plugin to sync/upload gifs (@matthutchinson [#180][])
|
291
|
-
* Plugins refactor, can now configure themselves (@matthutchinson [#179][])
|
292
|
-
- also closes issue [#136][] and issue [#73][]
|
293
|
-
* Fix for Twitter gem dependency issue (@matthutchinson [#178][])
|
294
|
-
* Added coveralls support (@Aaron1011 [#177][])
|
295
|
-
- gitignore updated, coveralls badge added to README
|
296
|
-
* Refactor tranzlate plugin, lolspeak now in plugin (@matthutchinson [#176][])
|
297
|
-
* Fix for 'Cannot satisfy json dependancy' (@matthutchinson [#175][])
|
298
|
-
* Better post commit hook enabling/disabling (@matthutchinson [#173][])
|
299
|
-
* Improved --enable option, accepts passing arguments (@matthutchinson [#154][])
|
300
|
-
- README updated to explain enabling with options
|
301
|
-
|
302
|
-
## 0.5.1 (13 November 2013)
|
303
|
-
* Fix JSON gem issue [#163][] (@matthutchinson, [#171][])
|
304
|
-
* Enable image capture under Cygwin (@cwc, [#105][])
|
305
|
-
* Add Ruby PATH to post-commit hook (@matthutchinson, [#155][])
|
306
|
-
* "Stealth mode" where no notification is given (@sionide21, [#156][])
|
307
|
-
* BUGFIX: comparison error for animate (@Yabes, [#151][])
|
308
|
-
|
309
|
-
## 0.5.0 (10 September 2013)
|
310
|
-
* better handling of LOLCOMMITS_DELAY (thx @leewillis77, [#125][])
|
311
|
-
* LOLCOMMITS_DEVICE support on Linux (thx @EbenezerEdelman, [#139][])
|
312
|
-
* better handling of repository names (thx @drocamor and @andromedado, [#145][] and [#146][])
|
313
|
-
* added new LOLCOMMITS_ANIMATE (or `--animate`) option (Mac/OSX only) ([#114][], [#108][])
|
314
|
-
- defaults to a 320x240 sized animated gif
|
315
|
-
- new vendored binary videosnap - https://github.com/matthutchinson/videosnap
|
316
|
-
- feature requires ffmpeg
|
317
|
-
- README updated with details and an example
|
318
|
-
|
319
|
-
## 0.4.6 (12 August 2013)
|
320
|
-
* Fix for incorrect permissioning in gem issue (see [#112][])
|
321
|
-
|
322
|
-
## 0.4.5 (8 July 2013)
|
323
|
-
* disable&remove statsd plugin (as per [#94][])
|
324
|
-
* fix issues with animated gif generation ([#107][])
|
325
|
-
* added new LOLCOMMITS_FORK (or --fork) option to fork the runner capturing ([#109][])
|
326
|
-
|
327
|
-
## 0.4.4 (28 June 2013)
|
328
|
-
* add -g option to produce animated gifs! (thx @hSATAC, [#95][])
|
329
|
-
|
330
|
-
## 0.4.3 (29 March 2013)
|
331
|
-
* bump mini_magick dependency to deal with security alert
|
332
|
-
|
333
|
-
## 0.4.2 (11 March 2013)
|
334
|
-
* fix ruby 2.0 compatibility ([#91][])
|
335
|
-
* gracefully detect upstream issue with git color.ui being set to always ([#50][])
|
336
|
-
* handle external capture devices with special characters in name ([#93][])
|
337
|
-
* fixes to the uploldz plugin ([#92][])
|
338
|
-
|
339
|
-
## 0.4.1 (17 February 2013)
|
340
|
-
* add lolsrv plugin (thx @sebastianmarr!, [#82][])
|
341
|
-
* enable feature to change font (thx @fukayatsu!, [#89][])
|
342
|
-
* correct activesupport gem name in bundle (thx @djbender!, [#90][])
|
343
|
-
* graceful detection of imagemagick not being installed ([#87][])
|
344
|
-
* restructure logging slightly to use Methadone::CLILogging in most places
|
345
|
-
* add a bunch of debugging output, viewable via --debug flag
|
346
|
-
|
347
|
-
## 0.4.0 (13 January 2013)
|
348
|
-
* Switch the main ImageMagick wrapper from RMagick to mini_magick
|
349
|
-
- fix for RMagick not working with ImageMagick 6.8+ and generally
|
350
|
-
being a buggy unmaintained piece of crap
|
351
|
-
- this should also result in less problems with IM version changes
|
352
|
-
- some preliminary test work on using image_sorcery instead too
|
353
|
-
- perhaps finally kill issue [#9][] from continually resurfacing
|
354
|
-
* make sure quotes are properly handled in commit messages
|
355
|
-
* silence warnings generated by twitter gem in MRI 1.8.7
|
356
|
-
|
357
|
-
## 0.3.4 (27 December 2012)
|
358
|
-
* Add uploldz plugin for posting to a remote server (thx @cnvandev)
|
359
|
-
|
360
|
-
## 0.3.3 (26 November 2012)
|
361
|
-
* BUG: prevent repeated firing of lolcommits capture during a git rebase.
|
362
|
-
|
363
|
-
## 0.3.2 (3 October 2012)
|
364
|
-
* Twitter posting support via the `twitter` plugin! (thx @coyboyrushforth!)
|
365
|
-
|
366
|
-
## 0.3.1 (5 August 2012)
|
367
|
-
* fix regression with linux capture introduced in previous version
|
368
|
-
|
369
|
-
## 0.3.0 (3 August 2012)
|
370
|
-
* fix bug involving git repositories with spaces in the name
|
371
|
-
* internal refactoring for modularity (thanks @kenmazaika!), should be easier
|
372
|
-
to add new plugin features to lolcommits now.
|
373
|
-
* add some extremely basic anonymous usage tracking (if this bugs you, you
|
374
|
-
can disable via disabling the `statsd` plugin).
|
375
|
-
|
376
|
-
## 0.2.0 (6 July 2012)
|
377
|
-
* improved build system and testing with cucumber/methadone
|
378
|
-
- goal is to get into a better framework to start doing major feature work
|
379
|
-
- this should lead to increased reliability across systems as we refactor
|
380
|
-
* writing tests (please help!)
|
381
|
-
* fix issues with packaged files not being readable after a sudo gem install
|
382
|
-
|
383
|
-
## 0.1.5 (25 June 2012)
|
384
|
-
* fix tranzlate on ruby1.8
|
385
|
-
|
386
|
-
## 0.1.4 (28 May 2012)
|
387
|
-
* set device on mac via --device (or LOLCOMMITS_DEVICE env variable) --
|
388
|
-
thanks @pioz (pull [#51][])
|
389
|
-
|
390
|
-
## 0.1.3 (18 May 2012)
|
391
|
-
* add LGPLv3 license
|
392
|
-
* add option to translate your commit message to lolspeak! (thx
|
393
|
-
to @DanielleSucher!). To enable, set `LOLCOMMITS_TRANZLATE=1`.
|
394
|
-
* fix issue with older versions of IM crashing on interline spacing (pull [#31][] via @german)
|
395
|
-
* fix issue with git repos with no hooks directory (pull [#43][] via @mkmaster)
|
396
|
-
* fix missing dash in capture -c
|
397
|
-
|
398
|
-
## 0.1.2 (22 April 2012)
|
399
|
-
* provide licensing info for CommandCam (Windows)
|
400
|
-
* bundle imagesnap as well to remove a dependency on Mac OS X
|
401
|
-
|
402
|
-
## 0.1.1 (21 April 2012)
|
403
|
-
* Windows compatibility! Thanks to @Prydonious.
|
404
|
-
|
405
|
-
## 0.1.0 (19 April 2012)
|
406
|
-
* Linux compatibility! Thanks to @madjar, @cscorely, and @Prydonius.
|
407
|
-
|
408
|
-
## 0.0.3 (16 April 2012)
|
409
|
-
* use only first line for multi-line commit msgs (pull req [#21][])
|
410
|
-
* clean up some command line options
|
411
|
-
|
412
|
-
## 0.0.2 (2 April 2012)
|
413
|
-
* add --delay option to delay image capture (thx JohanB), can be
|
414
|
-
persistently set via LOLCOMMITS_DELAY environment variable.
|
415
|
-
* add --last command to view most recent lolcommit for a repo
|
416
|
-
* add --browse command to open the lolcommit images directory for a particular repo
|
417
|
-
|
418
|
-
## 0.0.1 (29 March 2012)
|
419
|
-
* initial release as a gem package, major refactoring for this
|
420
|
-
* refactored to remove git-hooks package dependency, now installs stub hook
|
421
|
-
directly into each git repo
|
422
|
-
* wordwrap commit_msg manually, to switch to use imagemagick annotate
|
423
|
-
instead of compositing multiply image Caption objects (this seems to be more
|
424
|
-
reliable to not glitch.)
|
425
|
-
|
426
|
-
[Semver]: http://semver.org
|
427
|
-
[Unreleased]: https://github.com/lolcommits/lolcommits/compare/v0.17.3...HEAD
|
428
|
-
[0.17.3]: https://github.com/lolcommits/lolcommits/compare/v0.17.2...v0.17.3
|
429
|
-
[0.17.2]: https://github.com/lolcommits/lolcommits/compare/v0.17.1...v0.17.2
|
430
|
-
[0.17.1]: https://github.com/lolcommits/lolcommits/compare/v0.17.0...v0.17.1
|
431
|
-
[0.17.0]: https://github.com/lolcommits/lolcommits/compare/v0.16.5...v0.17.0
|
432
|
-
[0.16.5]: https://github.com/lolcommits/lolcommits/compare/v0.16.4...v0.16.5
|
433
|
-
[0.16.4]: https://github.com/lolcommits/lolcommits/compare/v0.16.3...v0.16.4
|
434
|
-
[0.16.3]: https://github.com/lolcommits/lolcommits/compare/v0.16.2...v0.16.3
|
435
|
-
[0.16.2]: https://github.com/lolcommits/lolcommits/compare/v0.16.1...v0.16.2
|
436
|
-
[0.16.1]: https://github.com/lolcommits/lolcommits/compare/v0.16.0...v0.16.1
|
437
|
-
[0.16.0]: https://github.com/lolcommits/lolcommits/compare/v0.15.1...v0.16.0
|
438
|
-
[0.15.1]: https://github.com/lolcommits/lolcommits/compare/v0.15.0...v0.15.1
|
439
|
-
[0.15.0]: https://github.com/lolcommits/lolcommits/compare/v0.14.1...v0.15.0
|
440
|
-
[0.14.2]: https://github.com/lolcommits/lolcommits/compare/v0.14.1...v0.14.2
|
441
|
-
[0.14.1]: https://github.com/lolcommits/lolcommits/compare/v0.14.0...v0.14.1
|
442
|
-
[0.14.0]: https://github.com/lolcommits/lolcommits/compare/v0.13.1...v0.14.0
|
443
|
-
[0.13.1]: https://github.com/lolcommits/lolcommits/compare/v0.13.0...v0.13.1
|
444
|
-
[0.13.0]: https://github.com/lolcommits/lolcommits/compare/v0.12.1...v0.13.0
|
445
|
-
[0.12.1]: https://github.com/lolcommits/lolcommits/compare/v0.12.0...v0.12.1
|
446
|
-
[0.12.0]: https://github.com/lolcommits/lolcommits/compare/v0.11.0...v0.12.0
|
447
|
-
[0.11.0]: https://github.com/lolcommits/lolcommits/compare/v0.10.0...v0.11.0
|
448
|
-
[0.10.0]: https://github.com/lolcommits/lolcommits/compare/v0.9.8...v0.10.0
|