Skip to content

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ucnv committed Sep 12, 2021
1 parent 8c00892 commit 4dc15b7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.2.0 / 2021-09-13

* Support for AVI2.0 formatted files. Now this library can handle files larger than 1GB.
* Added methods to Frames, including #index, #rindex, #first_of, and #last_of
* Removed warnings for the file size getting large.
* Added the class AviGlitch::Avi which manages binary RIFF-AVI data.
* A lot of internal changes.

### 0.1.6 / 2021-08-21

* Removed obsolete dependencies.
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ For more practical usages, please check <https://github.com/ucnv/aviglitch-utils
gem install aviglitch
```

## Known issues

- This library doesn't support AVI2 format spec. This means that it will not work as expected for files larger than 1GB.

## License

This library is distributed under the terms and conditions of the [MIT license](LICENSE).
6 changes: 2 additions & 4 deletions lib/aviglitch.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
require 'tempfile'
require 'fileutils'
require 'readline'
require 'pathname'
require 'stringio'
require 'aviglitch/base'
require 'aviglitch/avi'
require 'aviglitch/base'
require 'aviglitch/frame'
require 'aviglitch/frames'

Expand Down Expand Up @@ -32,7 +30,7 @@
#
module AviGlitch

VERSION = '0.1.6'
VERSION = '0.2.0'

BUFFER_SIZE = 2 ** 24

Expand Down

0 comments on commit 4dc15b7

Please sign in to comment.