Skip to content

Commit

Permalink
Version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ucnv committed Apr 7, 2014
1 parent 64626a6 commit 335c754
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 11 deletions.
24 changes: 17 additions & 7 deletions ChangeLog → ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,50 @@
== 0.1.3 / 2011-08-19
### 0.1.4 / 2014-04-10

* Added an enumerator style on AviGlitch::Base#glitch and
AviGlitch::Frames#each
* Added AviGlitch::Base#remove_all_keyframes!
* Renamed #clear_keyframes! to #mutate_keyframes_into_deltaframes!
* Improved the processing speed in some measure.
* Some minor fixes.

### 0.1.3 / 2011-08-19

* Added has_keyframe? method to AviGlitch::Base
* Added a --fake option to datamosh cli.

== 0.1.2 / 2011-04-10
### 0.1.2 / 2011-04-10

* Fix to be able to handle data with offsets from 0 of the file.
* Added clear_keyframes! method to AviGlitch::Frames and AviGlitch::Base.
* Changed to be able to access frame's meta data.
* Changed datamosh command to handle wildcard char.

== 0.1.1 / 2010-09-09
### 0.1.1 / 2010-09-09

* Fixed a bug with windows.
* Some tiny fixes.

== 0.1.0 / 2010-07-09
### 0.1.0 / 2010-07-09

* Minor version up.
* Fixed bugs with Ruby 1.8.7.
* Fixed the synchronization problem with datamosh cli.

== 0.0.3 / 2010-07-07
### 0.0.3 / 2010-07-07

* Changed AviGlitch::Frames allowing to slice and concatenate frames
(like Array).
* Changed datamosh cli to accept multiple files.

== 0.0.2 / 2010-05-17
### 0.0.2 / 2010-05-17

* Removed AviGlitch#new. Use AviGlitch#open instead of #new.
* Added warning for a large file.
* Changed datamosh command interface.
* Changed the library file layout.
* And tiny internal changes.

== 0.0.1 / 2009-08-01
### 0.0.1 / 2009-08-01

* initial release

7 changes: 7 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@ require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
rdoc.main = "README.md"
rdoc.rdoc_dir = 'rdoc'
rdoc.rdoc_files.include(%w{LICENSE *.md lib/**/*.rb})
end
11 changes: 8 additions & 3 deletions aviglitch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
spec.version = AviGlitch::VERSION
spec.authors = ["ucnv"]
spec.email = ["[email protected]"]
spec.description = %q{AviGlitch to destroys your AVI files.
spec.description = %q{AviGlitch destroys your AVI files.
This library provides ways to manipulate data in each AVI frames.
It can easily generate keyframes-removed video known as "datamoshing".
}
Expand All @@ -21,7 +21,12 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.has_rdoc = true
spec.extra_rdoc_files = ["README.md", "LICENSE"]
spec.rdoc_options << "-m" << "README.md"

spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", ">= 2.0.0"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 2.0"
spec.add_development_dependency "rdoc", "~> 4.0"
end
2 changes: 1 addition & 1 deletion lib/aviglitch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#
module AviGlitch

VERSION = '0.1.3'
VERSION = '0.1.4'

BUFFER_SIZE = 2 ** 24

Expand Down

0 comments on commit 335c754

Please sign in to comment.